Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
453 views
in Technique[技术] by (71.8m points)

mysql - SQL multiply row by each element in an array

I have some items in mysql table and I want to multiply the calories field from each row by each element in an array e.g for array 1,2,2, the first row is multiplied by 1, second row is multiplied by 2, third row is multiplied by 2.

Example table:

id | name | calories 
---+------+---------
 1   rice     10
 2   bread    20
 3   apple    15

So the output would become:

id | name | calories 
---+------+---------
 1   rice     10
 2   bread    40
 3   apple    30

I then want to get the total sum of the calories. How should I write the SQL statement in node.js? req.body.amount is the array of values that I want to multiply each row of calories by.

let sum = [req.body.amount, req.body.name];
let sqlquery = "SELECT SUM(? * calories) AS calories FROM food_item WHERE name IN (?)";
question from:https://stackoverflow.com/questions/65877708/sql-multiply-row-by-each-element-in-an-array

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Use the table's id as index for the array.

SET @row_number = 0; 
Select t.* , t.calories * factors.factor result
from (
 SELECT 
    (@row_number:=@row_number + 1) AS num,
    T1.*
    from test T1) t
 join (
  select f.* from (
  Select 1 as id, 1 as factor
  union Select 2, 2
  Union Select 3,2
  ) f ) factors
   on t.num = factors.id
    Order by t.id;

see db fiddle

Using a json array:

SET @row_number = -1;
Select t.* ,
json_extract('{"R": [1,2,2]}' ,
             Concat('$.R[',t.num,']') ) jf,
t.calories * 
json_extract('{"R": [1,2,2]}' ,
             Concat('$.R[',t.num,']') ) result
from (
 SELECT 
    (@row_number:=@row_number + 1) AS num,
    T1.*
    from test T1) t
order by t.id;

Db fiddle


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...