示例查询,
SELECT a.driverID, a.dCarID, a.dDeviceID, b.carRegiNum FROM driverProfile a, carProfile b WHERE a.dManagerID = 7 AND b.carID=a.dCarID
查询在 MySQL 上运行良好。 driverProfile 和 carProfile 是两个单独的表。如果您需要更多说明,请发表评论。我被困在这里。
感谢帮助。谢谢。
原始查询(分为几行,以便我们可以读取它[提示])
SELECT a.driverID, a.dCarID, a.dDeviceID, b.carRegiNum
FROM driverProfile a, carProfile b
WHERE a.dManagerID = 7 AND b.carID=a.dCarID
第 1 步,联接语法(修复它!
超过 25 年前,重新定义了连接的 SQL 最佳实践,我们停止在表名之间使用逗号。停下它...请!反正你不能在 Knex 做.js....所以最好习惯它。首先修复联接语法:
SELECT a.driverID, a.dCarID, a.dDeviceID, b.carRegiNum
FROM driverProfile a
INNER JOIN carProfile b ON b.carID=a.dCarID
WHERE a.dManagerID = 7
步骤 2,别名(非)
Knex 似乎也不容易做别名,所以用表名替换:
SELECT driverProfile.driverID, driverProfile.dCarID, driverProfile.dDeviceID, carProfile.carRegiNum
FROM driverProfile
INNER JOIN carProfile ON carProfile.carID=driverProfile.dCarID
WHERE driverProfile.dManagerID = 7
第 3 步,"Knexisfy"查询
knex.select(['driverProfile.driverID', 'driverProfile.dCarID', 'driverProfile.dDeviceID', 'carProfile.carRegiNum' ])
.from('driverProfile')
.innerJoin('carProfile','carProfile.carID','driverProfile.dCarID')
.where('driverProfile.dManagerID',7)
.then(function(output){
//Deal with the output data here
});
- http://knexjs.org/#Builder-select
- http://knexjs.org/#Builder-from
- http://knexjs.org/#Builder-innerJoin
- http://knexjs.org/#Builder-where
- http://knexjs.org/#Interfaces-then
SELECT
a.driverID, a.dCarID, a.dDeviceID, b.carRegiNum
FROM
driverProfile a,
carProfile b
WHERE
a.dManagerID = 7 AND b.carID=a.dCarID
使用 knex 0.14.0:
knex({ a: 'driverProfile', b: 'carProfile' })
.select('a.driverID', 'a.dCarID', 'a.dDeviceID', 'b.carRegiNum')
.where('a.dManagerID', 7)
.where('b.carID', knex.raw('??', ['a.dCarID']))
生成 (https://runkit.com/embed/b5wbl1e04u0v):
select
`a`.`driverID`, `a`.`dCarID`, `a`.`dDeviceID`, `b`.`carRegiNum`
from
`driverProfile` as `a`, `carProfile` as `b`
where
`a`.`dManagerID` = ? and `b`.`carID` = `a`.`dCarID`