Computer Science, asked by abc8892, 3 months ago


Q1. Consider the following table "EMP" and answer the following queries:
Queries are in the photograph given

Attachments:

Answers

Answered by 2017snehaindulkar
0

Answer:

select * from EMP

where age <=40

select * from EMP

where sex = 'F';

select department, charges from EMP

where name like 's℅';

select department

from EMP;

select * from EMP

where sex='F' and department='orthopedic';

Similar questions