I have the SQL query that I now need to rewrite as a sequelize.js query in node.js.
SELECT historyTable1.* FROM table1 historyTable1
WHERE NOT EXISTS (
SELECT * FROM table1 historyTable2
WHERE historyTable2.id=historyTable1.id AND
historyTable2.date>historyTable1.date
)
Format of data in table1:
id date amount documentNo paperID
1 2015/10/15 500 1234 34
1 2015/10/16 100 1332 33
2 2015/10/13 200 1302 21
2 2015/10/12 400 1332 33
3 2015/11/23 500 1332 43
I should get the output as ( get a column for an id with the latest date ):
id date amount documentNo paperID
1 2015/10/16 100 1332 33
2 2015/10/13 200 1302 21
3 2015/11/23 500 1332 43
not quite sure how this query needs to be structured to get the same results with sequelize.
From this issue#2787:
We know that sequelize generally have really lousy support for doing non-include joins. Your where not exists can be done by a
sequelize.literal
where.So, the solution is:
Execution result:
Check the database: