InterviewSolution
Saved Bookmarks
| 1. |
Explain with an example boolean expression in SQL. |
|
Answer» Boolean expressions return rows (results) when a single value is matched. Boolean expressions commonly used in a WHERE clause are made of operands operated on by SQL operators. For example, > SELECT * FROM EMPLOYEES WHERE AGE = 45; |
|