--去掉重复的查询记录:

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;