Filtering Data with WHERE Clause

Published July 26, 2025 By Sai Sree Ram Gundepudi

Examples

SELECT * FROM employees WHERE salary > 50000;
SELECT * FROM employees WHERE department = 'HR';

Multiple Conditions

SELECT * FROM employees WHERE department = 'HR' AND salary > 60000;

Was this solution helpful?

Your feedback helps improve our technical knowledge repository.

Share this article