怎么在mysql里查询指定字符
发布网友
发布时间:2022-04-26 19:10
我来回答
共2个回答
懂视网
时间:2022-05-03 06:40
模糊查询
LIKE ‘%\\%‘
【mysql】搜索带字符
标签:mys mysq mysql 模糊查询 ima inf http 模糊 alt
热心网友
时间:2022-05-03 03:48
查询里指定字符有多种方式,不知具体是指的哪一种?下面举几个例子供您参考:
-- 指定字符常量作为输出字段
select sid,case score when >=60 then '及格'
else '不及格' end as 是否及格 from sc;
-- 将地址里的'东三区',替换成'西二区'
update t1 set add=replace(add,'东三区','西二区');
-- 列出姓张的同学资料
select * from students where sname like '张%';