Sort Customers by Registration Date in Descending Order

●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).
USE SalesInventoryDB;
SELECT *
FROM Customers
ORDER BY RegisteredDate DESC;
Output:

