Computer Science, asked by b24036, 24 days ago

Write a query in SQL to list the employees whose ID not starting with digit 68?

Answers

Answered by gyaneshwarsingh882
0

Answer:

Explanation:

SQL employee Database: Exercise-111 with Solution

[An editor is available at the bottom of the page to write and execute the scripts.]

111. Write a query in SQL to list the employees whose ID not starting with digit 68.

Sample table: employeesmp_id | emp_name | job_name  | manager_id | hire_date  | salary  | commission | dep_id

--------+----------+-----------+------------+------------+---------+------------+--------

 68319 | KAYLING  | PRESIDENT |            | 1991-11-18 | 6000.00 |            |   1001

 66928 | BLAZE    | MANAGER   |      68319 | 1991-05-01 | 2750.00 |            |   3001

 67832 | CLARE    | MANAGER   |      68319 | 1991-06-09 | 2550.00 |            |   1001

 65646 | JONAS    | MANAGER   |      68319 | 1991-04-02 | 2957.00 |            |   2001

 67858 | SCARLET  | ANALYST   |      65646 | 1997-04-19 | 3100.00 |            |   2001

 69062 | FRANK    | ANALYST   |      65646 | 1991-12-03 | 3100.00 |            |   2001

 63679 | SANDRINE | CLERK     |      69062 | 1990-12-18 |  900.00 |            |   2001

 64989 | ADELYN   | SALESMAN  |      66928 | 1991-02-20 | 1700.00 |  

Similar questions