如何使用knex编写以下查询?
select 'Admin' as user_type from table
我尝试了.select("'Admin' as user_type")
和.select("Admin as user_type")
和.select("<tilde>Admin<tilde> as user_type")
,但这些似乎都不起作用。
knex.raw有效,但是还有其他方法吗?
答案 0 :(得分:0)
以下是正确的语法。
knex("table").select("Admin as user_type")
如果您已经包含了如上所述的表名,请尝试还将以下子句添加到语句中,以在运行时记录生成的SQL代码和SQL错误结果。那应该为您提供更多帮助。
.on('query-error', function(ex, obj) {
console.log("KNEX query-error ex:", ex, "obj:", obj);
})
祝你好运!
答案 1 :(得分:0)