也许我们常常会遇到某一列由重复值,但我要需要只选出一条这样的记录该怎么办,以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)
2 where not exists
3 (select * from titles where pub_id = t.pub_id and title_id < t.title_id)