选出表中某个字段唯一数据~

也许我们常常会遇到某一列由重复值,但我要需要只选出一条这样的记录该怎么办,以PUBS数据库为例
1 select * from titles as t
2 where not exists
3 (select * from titles where pub_id = t.pub_id and title_id < t.title_id)
原文地址:https://www.cnblogs.com/cxy521/p/1048327.html