null not, operators
null not, operators
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> select emp_name from employee4 where salary between 100000 and 125000 order
by emp_name desc;
ERROR 1146 (42S02): Table 'jfs.employee4' doesn't exist
mysql> select emp_name from jfsemployee where salary between 100000 and 125000
order by emp_name desc;
+----------------+
| emp_name |
+----------------+
| Selvaganapathy |
| revathi |
| Ramya |
| Rajkamal |
| Mohammed |
| Karthick |
| dharani |
| Ashutosh |
| Allwin |
+----------------+
9 rows in set (0.01 sec)
mysql> select emp_name, salary from jfsemployee where salary between 100000 and
125000 order by emp_name desc;
+----------------+--------+
| emp_name | salary |
+----------------+--------+
| Selvaganapathy | 120000 |
| revathi | 120000 |
| Ramya | 120000 |
| Rajkamal | 120000 |
| Mohammed | 120000 |
| Karthick | 120000 |
| dharani | 120000 |
| Ashutosh | 120000 |
| Allwin | 120000 |
+----------------+--------+
9 rows in set (0.00 sec)