sql 取出表中不重复的值

比如,有张表A:

a

d

a

s

w

s

w

要取出来的是:a d s w

sql语句:select distinct 字段名  from  A

原文地址:https://www.cnblogs.com/hewenwu/p/3830300.html