Instagram
youtube
Facebook
Twitter

Sort Customers by Registration Date in Descending Order

Sort Customers by Registration Date in Descending Order

Query Explanation:

SELECT *: Fetches all columns from the Customers table.

ORDER BY RegisteredDate DESC: Sorts the customers by the RegisteredDate column in descending order (latest registered first).

SQL Query:

USE SalesInventoryDB;

SELECT *  
FROM Customers  
ORDER BY RegisteredDate DESC;

 

Output: