select id, name from users where name in ("kay", "meimei") // 按用户名查
查出来有就是存在,没有就是不存在!
1. movie_detail_tab
2. movie_tab
3. movie_detail_tab
1. SUBSTRING_INDEX(str,delim,count)
2. IF()
在MySQL中IF()函数的用法类似于java中的三目运算符
IF(expr1,expr2,expr3),如果expr1的值为true,则返回expr2的值,如果expr1的值为false,则返回expr3的值。
3. CONCAT()
CONCAT(str1,str2,…)
返回结果为连接参数产生的字符串。如有任何一个参数为NULL ,则返回值为 NULL。
Select * From 表1 Where 名字 in ('陈杰','陈','王洁','王兵')Union All
Select * From 表2 Where 名字 in ('陈杰','陈','王洁','王兵')
Union All
Select * From 表3 Where 名字 in ('陈杰','陈','王洁','王兵')
Union All
Select * From 表4 Where 名字 in ('陈杰','陈','王洁','王兵')
Union All
Select * From 表5 Where 名字 in ('陈杰','陈','王洁','王兵')
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)