0% found this document useful (0 votes)
28 views1 page

Select Employee - Empname, Department - Deptname From Employee, Department

The first query selects the employee name and department name from the employee and department tables where the employee commission is not null and the department location is not Karachi. The second query selects the name and date of birth from the student table where the date of birth is after January 9, 2008.

Uploaded by

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

Select Employee - Empname, Department - Deptname From Employee, Department

The first query selects the employee name and department name from the employee and department tables where the employee commission is not null and the department location is not Karachi. The second query selects the name and date of birth from the student table where the date of birth is after January 9, 2008.

Uploaded by

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

Select employee.empname, department.

deptname from employee,department


where employee.Comm IS NOT NULL AND department.LOC !=Karachi

Select name,DOB from student where DOB>#1/09/2008#

You might also like