1

我有以下查询:

SELECT * FROM `alerts` WHERE `title` LIKE `%template%` 

这应该返回至少 3 个标题包含“模板”一词的结果,但我收到以下错误:-

1054 - 'where 子句'中的未知列'%template%'

据我所知,它的语法正确并调用了正确的列名。我错过了什么?

4

1 回答 1

5

%template%对:使用单引号

SELECT * FROM `alerts` WHERE `title` LIKE '%template%' 
于 2012-06-07T22:42:30.750 回答