Like的运用场合主要在模糊查询的时候,一般以查询字符串居多,这里据一些例子来说他的一般用法:-- 查询name字段中包含有 "明" 字的:select*from table1 where name like'%明%';--这里不能使用 * 来代替,一般在使用0个或者任意个字符构成的字符串的时候最好使用 % --只在首或尾 % 和 * 两者都可以使用:select*from table1 where name like'%明';select*from table1 where name like'*明';--如果在头尾同时使用的话,就必须要使用% :select*from table1 where name like'%[a-z]%';--查询name字段中含有数字的:select*from table1 where name like'%[0-9]%';--查询name字段中含有小写字母的:select*from table1 where name like'%[a-z]%';--查询name字段中不含有数字的:select*from table1 where name like'%[!0-9]%';:'
实际生产中遇到的问题:
为了找出日志表中 sqltext字段所有 insert overwrite的语句
刚开始是这样写的:select * from table1 where sqltext like '%insert overwrite%';
后来发现,如果有人手抖在 insert overwrite两个单词间敲了n个空格不是就把这条日志错过了吗?
所以换成了下面的写法(但是这种效率会低)
'select*from table1 where sqltext like'%insert%overwrite%';--补充一点: ?或者_表示单个字符select*from table1 where name like'_gz'/'?gz';
书籍:Machine Learning with Python Cookbook: Practical Solutions from Preprocessing to Deep Learning
作者:Kyle Gallatin,Chris Albon
出版:OReilly Media
书籍下载-《Python机器学习手册:从预处理到深度学习…