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.