怎样才能得到想要的数据呢?(50分)

  • 主题发起人 主题发起人 dongdongbook
  • 开始时间 开始时间
D

dongdongbook

Unregistered / Unconfirmed
GUEST, unregistred user!
现在我有一个表,要读取某一个子段的值,但是这字段的值可能相同,
但我读出的数据不能有相同的值,那该怎么办呢?如:子段ID1的值为
1,3,4,2,3,4,5。读出来是1,2,3,4,5。
 
select distinct * from 表
…………
然后就可以了
 
select distinct 字段 from 表
…………
然后就可以了
 
select distinct * from yourtable!!!

distinct是最重要的
 
select distinct * from 表名 order by ID1 asc
 
select distinct 字段名 from 表名
 
以上都是对的
用distinct
 
还不结束?
 
来晚了, :(
不过可加排序: order by
 
distinct 是关键
select distinct id1 from yourtable

就这么简单
 
不过用了distinct之后,则不能更新其输出,而且该输出
也不会反映其它用户所作的一系列更改。
 
多人接受答案了。
 
后退
顶部