What is the method for sorting SQL arrays?
In SQL, sorting an array is typically done using the ORDER BY clause. Here is a simple example:
SELECT column_name
FROM table_name
ORDER BY column_name;
In the example above, the ORDER BY clause is used to sort the column_name column in table_name. You can choose either ascending (default) or descending order. For example, to sort in descending order, you can use the following syntax:
SELECT column_name
FROM table_name
ORDER BY column_name DESC;