80.1k views
5 votes
A conditional expression is normally expressed within the ___?___ or HAVING clauses of a SQL statement. (SELECT, ORDER BY, PARSE, WHERE)

User Billiout
by
5.3k points

1 Answer

2 votes

Answer:

WHERE

Step-by-step explanation:

WHERE or HAVING clause of sql statements are used to filter the records based on some filter condition. where is used with regular select statement.

Having is used in case of grouping data. when you want to check some condition on groups of data then you can go for HAVING.it is used with group by clause

User ATrubka
by
6.3k points