0% found this document useful (0 votes)
29 views

Query

This SQL code snippet contains two select statements querying data from an employee table. The first statement selects first name, last name, hire date, and salary for employees whose last name is not Michaels. The second statement selects first name and last name for employees whose last name is not Mic.

Uploaded by

Priyank Paliwal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views

Query

This SQL code snippet contains two select statements querying data from an employee table. The first statement selects first name, last name, hire date, and salary for employees whose last name is not Michaels. The second statement selects first name and last name for employees whose last name is not Mic.

Uploaded by

Priyank Paliwal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

--dececcfev

select first_name, last_name, hire_date, salary


from employee /*
thyh
*/
where last_name != 'Michaels';

select first_name, last_name,


from employee /*
thyh
*/
where last_name != 'Mic';

You might also like