我正在尝试搜索和显示有文字的记录。
SELECT * FROM question_attempts WHERE `responsesummary`='The compiler would report an error.'
它没有显示记录。 我怎样才能获得有文字的记录?
答案 0 :(得分:3)
使用LIKE
关键字搜索文字。
SELECT * FROM question_attempts WHERE responsesummary LIKE '%The text to search%';
请注意,'%'
是一个名为外卡的特殊字符。
答案 1 :(得分:0)
试一试:
WHERE的响应如'%compiler%'
'编译'或其他词。