What if we have not specify ASC or DESC?
Explanation: If we have not specified any sorting with the ORDER BY clause, SQL always uses the ASC as a default sorting order. Lees verder »
Bron: brainly.in
What happens if you don't specify ASC or DESC in an ORDER BY clause defaults to descending order throws an error defaults to ascending order no sorting is performed?
If you do not specify ASC or DESC , the default sorting order is ascending. You can order by multiple columns; the sorting is done by the first column, then by the second column if there are ties, and so on. You can also order by columns that are not selected in the SELECT clause. Lees verder »
Bron: askfilo.com
Gerelateerd aan What if we have not specify ASC or DESC?
- How to use parenthesis in SQL?
- How to convert character to numeric in SQL?
- Can we use a case statement in PLSQL?
- What are the two required clauses for a SELECT statement?
- Is any SQL case sensitive?
- How to convert char to number in PL/SQL?
- How to use if and case together in SQL?
- How to concat first three characters in SQL?