mysql 批量查询

mysql 批量查询,第1张

select id, name from users where id in (1, 2, 3, 4) // 按id查

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 ('陈杰','陈','王洁','王兵')


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6125003.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-15
下一篇 2023-03-15

发表评论

登录后才能评论

评论列表(0条)

保存