如图创建以上表格,在使用模糊查询时,报错
代码如下
SELECT * FROM student
where 姓名 LIKE
可%
;出现以下报错
SELECT * FROM student
where 姓名 LIKE
可%
1054 - Unknown column '可%' in 'where clause'
时间: 0s
请问问题出现在哪里
可%
;可%
1054 - Unknown column '可%' in 'where clause'
时间: 0s
请问问题出现在哪里
SELECT * FROM student
where 姓名 LIKE '可%'
加 ' ' 这个就行