
SELECT * – Retrieves all columns from the table.FROM Customers – Indicates that the data should be fetched from the Customers table.WHERE Country = 'India' – Filters the results to include only customers from India.SQL Query:
SELECT *
FROM Customers
WHERE Country = 'India';
Output:

