MySQL UNION SELECT 和 IN 子句在单个查询中
首先,让我们创建一个表
mysql> create table DemoTable1 -> ( -> StudentId int, -> StudentName varchar(20) -> ); Query OK, 0 rows affected (1.24 sec)
使用插入命令在表中插入一些记录 −
mysql> insert into DemoTable1 values(210,'Adam'); Query OK, 1 row affected (0.11 sec)
使用 select 语句显示表中的所有记录 −
mysql> select * from DemoTable1;
这将产生以下输出 −
+-----------+-------------+ | StudentId | StudentName | +-----------+-------------+ | 210 | Adam | +-----------+-------------+ 1 row in set (0.00 sec)
以下是创建第二个表的查询 −
mysql> create table DemoTable2 -> ( -> StudentId int, -> StudentName varchar(20) -> ); Query OK, 0 rows affected (0.69 sec)
使用插入命令在表中插入一些记录 −
mysql> insert into DemoTable2 values(100,'Chris'); Query OK, 1 row affected (0.30 sec)
使用 select 语句显示表中的所有记录 −
mysql> select * from DemoTable2;
这将产生以下输出 −
+-----------+-------------+ | StudentId | StudentName | +-----------+-------------+ | 100 | Chris | +-----------+-------------+ 1 row in set (0.00 sec)
以下是 MySQL UNION SELECT 和 IN 子句的查询 −
mysql> select StudentName from -> ( -> select StudentId,StudentName from DemoTable1 -> UNION -> select StudentId,StudentName from DemoTable2 -> ) tbl -> where StudentId IN(210,100);
这将产生以下输出 −
+-------------+ | StudentName | +-------------+ | Adam | | Chris | +-------------+ 2 rows in set (0.00 sec)
广告