SQL 视图中查询出两条相同的数据,但是我只想让它查询出一条,改怎么实现?

如题所述

第1个回答  2010-12-03
用 distinct
select distinct 重复字段 ,* from table本回答被提问者采纳
第2个回答  2010-12-03
selet top 1 * from View
第3个回答  2010-12-03
select distinct * from 表
第4个回答  2010-12-03
count(列名) where 值
相似回答