DISTINCT 的使用(50分)

  • 主题发起人 主题发起人 cool_cool
  • 开始时间 开始时间
C

cool_cool

Unregistered / Unconfirmed
GUEST, unregistred user!
怎样使用DISTINCT使重复记录只显示第一条记录?
 
select distinct field from tablename
 
to huchunguo
这样只能显示该表的一个字段,如何显示多个字段
 
接受答案了.
 
Select distinct field1, field2,... from tablename
 
后退
顶部