请问我想查询相同表结构的多张表的数据,而且是带有多条件的,应该怎么写SQL语句
3个回答
展开全部
select t.教室 from
(select * from table1
union all
select * from table2
union all
select * from table3
union all
select * from table4) t
where t.课程='xx'
来自:求助得到的回答
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
景联文科技
2024-06-11 广告
2024-06-11 广告
一、什么是数据标注?1. 数据标注定义数据标注是对未经处理的语音、图片、文本、视频等数据进行加工处理, 并转换为机器可识别信息的过程。原始数据一般通过数据采集获得, 随后的数据标注相当于对数据进行加工, 然后输送到人工智能算法和模型里完成调...
点击进入详情页
本回答由景联文科技提供
展开全部
select t.教室
from (
select 教室,课程 from A
union all
select 教室,课程 from B
union all
select 教室,课程 from C
union all
select 教室,课程 from D
) t
where t.课程=‘AA’
from (
select 教室,课程 from A
union all
select 教室,课程 from B
union all
select 教室,课程 from C
union all
select 教室,课程 from D
) t
where t.课程=‘AA’
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select *
from (
select * from A where ...
union all
select * from B where ...
union all
select * from C where ...
union all
select * from D where ...
) t
where 条件....
from (
select * from A where ...
union all
select * from B where ...
union all
select * from C where ...
union all
select * from D where ...
) t
where 条件....
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询