在knex js(postgres)的SELECT子句中使用字符串

时间:2016-05-27 00:27:29

标签: postgresql knex.js

您好我想在KnexJS上为SELECT子句包含一个字符串值。它在Postgresql上运行良好,但我不确定如何将该查询转换为Knex语法。

这是Postgresql:

select date, 'UNFINISHED' from task_history
where store_id=1 and date=20160527

这是Knex:

await db.table('task_history')
.count('*')
.select('date', knex.raw("UNFINISHED"))
.where({ 
     store_id: request.params.storeid,
     finish_time: null 
}) 
.whereBetween('date', [request.params.sdate, request.params.edate])                    
.groupBy('date')

Knex one给我一个错误,说没有名为UNFINISHED的列。 “UNFINISHED”是一个字符串值,我想用查询结果返回。

我尝试使用knex.raw(),如下面提到的第一个解决方案,但不知何故,我无法使用knex.raw()。也许那是因为'等待'?我不确定。

更新:.select('date',db.raw(“'UNFINISHED'”))只丢失一个引号。

1 个答案:

答案 0 :(得分:5)

对于文字字符串,请使用knex.raw()

db.table('task_history')
.select('date', db.raw("UNFINISHED"))
.where({store_id:1, date:20160527})