Is every data type in ANSI SQL sortable?

46 Views Asked by At

Can I use an ORDER BY clause with any SQL data type?

For example, will the query

SELECT Column1
FROM TableName
ORDER BY Column1

return results, no matter the data type of Column1, grouping columns excluded?

0

There are 0 best solutions below