We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents da1ce06 + 31df95c commit 7445496Copy full SHA for 7445496
README.md
@@ -282,6 +282,21 @@ select * from employee where salary > 3000 and salary < 4000;
282
select * from employee where salary between 3000 and 4000;
283
```
284
285
+#### Null
286
+```sql
287
+select * from employee where salary is NULL;
288
+```
289
+
290
+#### Not null
291
292
+select * from employee where salary is NOT NULL;
293
294
295
+### ORDER BY Clause
296
297
+select * from employee ORDER BY salary DESC;
298
299
300
#### Like Operator
301
```sql
302
select * from employee where name like '%Jo%'; -- Similar to *Jo* in regrex
0 commit comments