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.
嘿,我正在 phpMyAdmin 中编写一个存储过程。我创建了一个来搜索数据库:
SELECT * FROM cars WHERE name LIKE CONCAT ('%', search ,'%');
这里的问题是:当我运行它时,它只返回 1 行,但是当我输入搜索字符串时它应该至少返回 3。我也用点('%'.search.'%')尝试了这部分('%', search ,'%');,但这给了我一个 SQL 语法错误。这里有什么问题?我在 phpMyAdmin 中运行此过程。
('%', search ,'%');