php 4个表模糊查询union all,sql查询两张表的并集union和union all

使用 union all 和 union

1.新建两张表:student、teacher

//学生表

create table student(

id int primary key,

name varchar(40)

);

//老师表

create table teacher(

id int primary key,

name varchar(40)

);

2.分别给两张表加入一条记录

insert into student(id,name) values(1,'student1');

insert into teacher(id,name) values(2,'teacher1');

3.查询并集:

方式一(不去重复):

select * from student

union all

select * from teacher;

方式二(去掉重复):

select * from student

union

select * from teacher;

带where子句的:

select * from student

where id = 1

union all

select * from teacher;

加字段区分记录是数据哪个表的:

select a.*, '1' as belongf from student a

union all

select b.*, '0' as belongf from teacher b;

加order by子句:

select * from

(

select a.*, '1' as belongf from student a

union all

select b.*, '0' as belongf from teacher b

) t

order by belongf desc,id desc;

查并集的总记录数:

select count(1) as mycount from (

select a.*, '1' as belongf from student a

union all

select b.*, '0' as belongf from teacher b

) d;

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值