order by and where in sql code example
Example 1: order by sql
SELECT * FROM TableName ORDER BY columnName DESC;
SELECT * FROM TableName ORDER BY columnName ASC;
Example 2: sql order by where condition
SELECT ProcductCode AS Id, ProductPrice AS Price
FROM Products WITH (NOLOCK)
WHERE ProductCode IN ('efg', 'abc', 'xyz')
ORDER BY (CASE WHEN ProductCode = 'efg' THEN 1
WHEN ProductCode = 'abc' THEN 2
WHEN ProductCode = 'xyz' THEN 3
ELSE 4
END);
Example 3: order by in sql
ORDER BY: is for sorting result
either in descending or ascending order.