数据库 Like 用法

查找列名等于某一字符串:

select * from table where column like ‘%string%’

 

查找列名不等于某一字符串

select * from table where column not like ‘%string%’

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐