I have a table which has about 7 columns and the first row of all the collums is NULL.. when i do a select statement something like
Select * from tablename order by col0 NULLS FIRST..
It says the NULLS clause is not supported.
If i use simply
Select * from tablename order by col0 ..
By default the Null row is displayed at the last but i created it in the first row..
How to use the select statement such that i get the nulls values first as like i created..
Select * from tablename order by col0 NULLS FIRST..
It says the NULLS clause is not supported.
If i use simply
Select * from tablename order by col0 ..
By default the Null row is displayed at the last but i created it in the first row..
How to use the select statement such that i get the nulls values first as like i created..
Comment