--去掉重复的查询记录:
select distinct(a.a) from table_name a;
--查询排序的字段 有NULL值时,可以控制NULL的记录是排在首位还是末尾:
--排在首位
select * from table_name order by column_name NULLS first;
--排在末尾
select * from table_name order by column_name NULLS last;
本文共 265 字,大约阅读时间需要 1 分钟。
--去掉重复的查询记录:
select distinct(a.a) from table_name a;
--查询排序的字段 有NULL值时,可以控制NULL的记录是排在首位还是末尾:
--排在首位
select * from table_name order by column_name NULLS first;
--排在末尾
select * from table_name order by column_name NULLS last;
转载于:https://blog.51cto.com/tangcq/1230393