Which of the following order is valid and yields correct results in SQL?
Which of the following order is valid and yields correct results in SQL? Correct Answer Select, from, where, order by
SELECT * FROM TABLE_NAME WHERE conditions ORDER BY column_name ASC|DESC; This is the correct syntax for a basic SQL statement with ORDER BY clause. Hence the order should be Select, from, where, order by.
মোঃ আরিফুল ইসলাম
Feb 20, 2025