0
這裏是SQL:我如何能在兩列使用sequelize.fn( 'IFNULL')從不同的表
SELECT IFNULL(A.price, B.price)
FROM table1 B
INNER JOIN (
SELECT price
,product_id
FROM table2
WHERE user_id = xxx
) A
ON A.product_id = B.product_id
我怎麼能得到相同的結果與sequelize.findAll()