Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

求助:在sequelize里面,如何进行表的嵌套查询?

$
0
0

比如,我有一个表Person,里面有字段Id(主键),以及一个字段Age(为Integer) 我现在有一个Person的Id(假设是42),想找Age小于此Person的所有Person 那么在mysql里面可以用一个语句查询: SELECT * FROM Person WHERE Age < (SELECT Age FROM Person WHERE Id = 42) 那么,这个语句在Sequelize中该怎么实现?


Viewing all articles
Browse latest Browse all 14821

Trending Articles