mysql in 有关问题
程序员文章站
2022-04-30 08:10:38
...
mysql in 问题
数据库里有如下数据:
person表
id name
1 zhangsan
2 lisi
以上查询只能得到 1,2的数据,如下
id name
1 zhangsan
2 lisi
我想得到重复的2的数据,如下,该怎么做啊谢谢
id name
1 zhangsan
2 lisi
2 lisi
2 lisi
2 lisi
------解决方案--------------------
select * from person where id =1
union all
select * from person where id =2
union all
select * from person where id =2
union all
select * from person where id =2
union all
select * from person where id =2
数据库里有如下数据:
person表
id name
1 zhangsan
2 lisi
- SQL code
select * from person where id in (1,2,2,2,2);
以上查询只能得到 1,2的数据,如下
id name
1 zhangsan
2 lisi
我想得到重复的2的数据,如下,该怎么做啊谢谢
id name
1 zhangsan
2 lisi
2 lisi
2 lisi
2 lisi
------解决方案--------------------
select * from person where id =1
union all
select * from person where id =2
union all
select * from person where id =2
union all
select * from person where id =2
union all
select * from person where id =2
相关文章
相关视频
推荐阅读
-
MySQL5.7完全卸载步骤详解
-
概述MySQL统计信息
-
mysql 5.7以上版本安装配置方法图文教程(mysql 5.7.12mysql 5.7.13mysql 5.7.14)
-
MySQL常见内存不足启动失败的完美解决方法
-
随机生成八位优惠码并保存至Mysql数据库
-
Mysql5.7中使用group concat函数数据被截断的问题完美解决方法
-
Mysql5.7.17 winx64.zip解压缩版安装配置图文教程
-
MySQL SQL语句分析与查询优化详解
-
Windows 64 位 mysql 5.7以上版本包解压中没有data目录和my-default.ini及服务无法启动的快速解决办法(问题小结)
-
个人所得税app常见的五大问题及解决方法介绍