Computer Science
Which operator tests a column for the absence of data (i.e., NULL value) ?
- EXISTS operator
- NOT operator
- IS operator
- None of these
SQL Queries
1 Like
Answer
IS operator
Reason — The NULL value in a column can be searched in a table using the IS
operator.
Answered By
1 Like
Related Questions
Which operator performs pattern matching ?
- BETWEEN operator
- LIKE operator
- EXISTS operator
- None of these
Consider the following query
SELECT name FROM class WHERE subject LIKE ' ............... Computer Science' ;
Which one of the following has to be added into the blank space to select the subject which has Computer Science as its ending string ?
- _
- ||
- \%
The pattern '_ _ _' matches any string of …………… three characters. '_ _ _%' matches any string of …………… three characters.
- Atleast, Exactly
- Exactly, Atleast
- Atleast, All
- All, Exactly
By default, ORDER BY clause lists the results in …………… order.
- Descending
- Any
- Same
- Ascending