sql怎样查询不符合条件的sql查询语句如何能把不符合条件的数据也一并查出来

2021-03-09 21:53:07 字数 1398 阅读 2578

1楼:迅风

select * from 表名

bai where id not in (select id from 表名 where 条件)

du选出复合条件的

zhi id, 然后查询所有 id 不是dao 复合条件的 id 那剩下的回就是 不符合的答

2楼:深渊的蚂蚁

select **

,姓名 from 表1 a

where a.**专 not like '123%' and a.** not like '128%'

union all

select **,姓名属 from 表2 bwhere b.** not like '123%' and b.** not like '128%'

union all

select **,姓名 from 表3 cwhere c.** not like '123%' and c.** not like '128%'

3楼:匿名用户

select * from 表1,表2,表3 where ** not like '123%' and ** not like '128%'

sql查询语句如何能把不符合条件的数据也一并查出来

4楼:匿名用户

select * from b left join a on a.条件=b.条件

以多的那张表作为left join 左边的那个,这里也就是b表

5楼:东风冷雪

where是条件判断,只能通过条件筛选。

多的数据不行查出来,除非b中9条数据和a一样。

6楼:

使用left join

select * from b left join a on a.条件=b.条件

b表会全部显示出来,多出的一条,b表内容有数据,a表相应的字段是空(null)

7楼:匿名用户

where a.条件(+)=b.条件

8楼:匿名用户

select * from b left join a on a.条件=b.条件

sql查询满足条件和不满足条件的数量

9楼:荼糜

sql如下

抄select coun(*)

from ddb a

where a.phoneno =

union all

select count(*)

from ddb a

where a.status = 2

希望对你有用。