Which SQL clause is used to filter records based on a specified condition?
- GROUP BY
- ORDER BY
- SELECT
- WHERE
The WHERE clause is used in SQL to filter records based on specified conditions. It allows for conditional retrieval of data from a table, helping in narrowing down the results to meet specific criteria. Other clauses like ORDER BY and GROUP BY are used for sorting and grouping results, respectively.
Loading...
Related Quiz
- What is the primary purpose of a firewall in network security?
- In Agile development, user stories are typically written in the format of "As a ___________, I want to ___________, so that ___________."
- Which web framework uses virtual DOM for efficient rendering?
- How do you comment out a single line of code in JavaScript?
- The _________ operation in a linked list is used to remove the last node.