What is a CLAUSE in terms of SQL?
Tue Nov 28 2023 17:18:09 GMT+0000 (Coordinated Universal Time)
Saved by
@nistha_jnn
Answer: CLAUSE is an optional statement in SQL that defines a condition to present data. For example,
select * from employee WHERE emp_id = 2012;
Here, WHERE is the clause that identifies the row to be obtained. Some other clauses in SQL are GROUP BY, HAVING, and ORDER BY.
content_copyCOPY
Comments