Instagram
youtube
Facebook
Twitter

Select All Records with a Specific Condition in SQL

Select All Records with a Specific Condition in SQL?

Query Explanation:
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: