Skip to content

Commit 31df95c

Browse files
committed
Updated with more queries
1 parent 9167ae1 commit 31df95c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,16 @@ select * from employee where salary > 3000 and salary < 4000;
282282
select * from employee where salary between 3000 and 4000;
283283
```
284284

285+
#### Null
286+
```sql
287+
select * from employee where salary is NULL;
288+
```
289+
290+
#### Not null
291+
```sql
292+
select * from employee where salary is NOT NULL;
293+
```
294+
285295
### ORDER BY Clause
286296
```sql
287297
select * from employee ORDER BY salary DESC;

0 commit comments

Comments
 (0)