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

2024-11-18 06:25:48
推荐回答(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:

同一楼