使用nodejs sequelize进行mysql的数据库查询,只会只用它查询一张表,如果想要同时查询两张表达到如下效果
MYSQLSELECT * FROM A,B WHERE A.name = B.name;
MYSQL
SELECT * FROM A,B WHERE A.name = B.name;
ringa_lee
参考这个http://www.it165.net/pro/html/201508/50341.html
定义表关联关系,参见:http://docs.sequelizejs.com/en/latest/docs/associations/关联查询,参见:http://docs.sequelizejs.com/en/latest/docs/querying/#relations-associations
历史版本文档v2.0 http://docs.sequelizejs.com/en/2.0/v1.7 http://docs.sequelizejs.com/en/1.7.0/
参考这个
http://www.it165.net/pro/html/201508/50341.html
官方目前最新版本v3.13.0
定义表关联关系,参见:http://docs.sequelizejs.com/en/latest/docs/associations/
关联查询,参见:http://docs.sequelizejs.com/en/latest/docs/querying/#relations-associations
历史版本文档
v2.0 http://docs.sequelizejs.com/en/2.0/
v1.7 http://docs.sequelizejs.com/en/1.7.0/