示例查询,
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是两个独立的表。 如果您需要更多说明,请发表评论。我被困在这里。
帮助表示赞赏。谢谢。
答案 0 :(得分:2)
原始查询(分为行,以便我们可以阅读[提示])
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
});
答案 1 :(得分:0)
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`