I am doing a pseudo-ORM for a personal project, and I'm compiling a list of compatibility checks for the 20+ different SQL dialects out there.
Currently, I am doing research on whether a dialect supports the NULLS LAST
flag, i.e. when sorting a table, have null come out as the last item like 1, 2, 3, 4, null
instead of null, 1, 2, 3, 4
.
I have results for languages like DashDB/MySQL/MSSQL, etc (yes - they offer NULL LAST
) however, the following dialects, I was unable to find the null-last-ability:
Denodo
MemSQL
Spark
VectorWise
XtremeData
A simple "yes" or "no" will suffice in your answer, however, if you could also write the query down on how to perform the NULL LAST
operation, that would be great too!