Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 nodejs 0.10.12 和 node-postgre (pg 模块) 2.2.0
我在使用LIKE运算符的地方有如下查询
LIKE
var query = client.query('SELECT t_name FROM type WHERE t_name LIKE $1 ',[typetolook])
如果我Mu在搜索表单中写入,即使我的数据库包含单词,我也会在控制台中看到零结果Museum。
Mu
Museum
我错过了什么吗?LIKE运营商有问题吗?
我该如何解决?
谢谢
我认为您%的查询中缺少 a 。
%
client.query("SELECT t_name FROM type WHERE t_name LIKE $1", [typetolook + '%']);