数据库接口 送查询 where like
发布于 7 年前 作者 kongguiying 2162 次浏览 来自 问答

var res = await mysql("book").where({ id: 1 })

这是:select * from book where id=1


如果需要 select * from book where name like '宋%'


类是的这句:var res = await mysql("book").where({ id: 1 })

应该如何写!!!

 谢谢 .....

1 回复

这个内部是使用Knex.js连接数据库的。

可以写成这样:

var res = await mysql(’book‘).where(‘name‘,  ‘like’,  ‘宋%’ )

回到顶部