怎么在SQL中查询某列的数据全部相同?

2024年11月18日 06:25
有5个网友回答
网友(1):

你这个需求是最简单的
select * from table where name = 'abc' and sex = '0'
就能满足你的要求

网友(2):

select *
from tab t1
where exists(Select 1 from tab where name = t1.name and sex = t1.sex and id <> t1.id)

网友(3):

select count(*)-count(distinct 某列) rom tables;
为零则相同

网友(4):

select * from 表名 where name='abc' and sex='0'
就这样就可以实现了

网友(5):

同一楼