create table table1
(aid int not null auto_increment,
title varchar(20),
tag varchar(10),
primary key(aid))
engine=innodb default charset=utf8;
create table table2
(bid int not null auto_increment,
title varchar(20),
tag varchar(10),
primary key(bid))
engine=innodb default charset=utf8;
insert into table1(aid, title, tag) values(1, 'article1', 'MySQL'); insert into table1(aid, title, tag) values(2, 'article2', 'PHP'); insert into table1(aid, title, tag) values(3, 'article3', 'CPP'); insert into table2(bid, title, tag) values(1, 'article1', 'MySQL'); insert into table2(bid, title, tag) values(2, 'article2', 'CPP'); insert into table2(bid, title, tag) values(3, 'article3', 'C');
SELECT column,... FROM table1 UNION [ALL] SELECT column,... FROM table2 ...
(select * from table1) union (select * from table2);
+-----+----------+-------+ | aid | title | tag | +-----+----------+-------+ | 1 | article1 | MySQL | | 2 | article2 | PHP | | 3 | article3 | CPP | | 2 | article2 | CPP | | 3 | article3 | C | +-----+----------+-------+
| 1 | article1 | MySQL |
(select * from table1) union all (select * from table2);
+-----+----------+-------+ | aid | title | tag | +-----+----------+-------+ | 1 | article1 | MySQL | | 2 | article2 | PHP | | 3 | article3 | CPP | | 1 | article1 | MySQL | | 2 | article2 | CPP | | 3 | article3 | C | +-----+----------+-------+
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有