SQL: Queries Based On Following Tables

Thursday 23 February 2012

Table Name:Location
Column_Name Data_Type Constraints
Location_ID int Primary Key
Regional_Group varchar(25) Not Null


Table Name:Department
Column_Name Data_Type Constraints
Department_ID int Primary Key
Name varchar(25) Not Null
Location_ID int Foreign Key(Location:Location_ID)


Table Name:Job
Column_Name Data_Type Constraints
Job_ID int Primary Key
Function varchar(25) Not Null


Table Name:Employee
Column_Name Data_Type Constraints
Employee_ID int Primary Key
Last_Name varchar(25) Not Null
First_Name varchar(25) Not Null
Middle_Name varchar(25) Not Null
Job_ID varchar(25) Foreign Key(Job:Job_ID)
Manager_ID int Foreign Key(Employee:Employee_ID)
Hire_Date smalldatetime Not Null
Salary int Not Null
Comm varchar(25) Not Null
Department_ID int Foreign Key(Department:Department_ID)

Queries based on the above tables Ans Comming Soon:
If You know Then U Can Comment Below The Answers.....

Simple Queries:

  1. List all the employee details
  2. List all the department details
  3. List all job details
  4. List all the locations
  5. List out first name,last name,salary, commission for all employees
  6. List out employee_id,last name,department id for all  employees and rename employee id as “ID  of the employee”, last name as “Name of the employee”, department id as  “department  ID”
  7. List out the employees anuual salary with their names only.


Where Conditions:

  1. List the details about “SMITH”
  2. List out the employees who are working in department 20
  3. List out the employees who are earning salary between 3000 and 4500
  4. List out the employees who are working in department 10 or 20
  5. Find out the employees who are not working in department 10 or 30
  6. List out the employees whose name starts with “S”
  7. List out the employees whose name start with “S” and end with “H”
  8. List out the employees whose name length is 4 and start with “S”
  9. List out the employees who are working in department 10 and draw the salaries more than 3500
  10. list out the employees who are not receiving commission.

Order By Clause:

  1. List out the employee id, last name in ascending order based on the employee id.
  2. List out the employee id, name in descending order based on salary column
  3. list out the employee details according to their last_name in ascending order and salaries in descending order
  4. list out the employee details according to their last_name in ascending order and then on department_id in descending order.


Group By & Having Clause:

  1. How many employees who are working in different departments wise in the organization
  2. List out the department wise maximum salary, minimum salary, average salary of the employees
  3. List out the job wise maximum salary, minimum salary, average salaries of the employees.
  4. List out the no.of employees joined in every month in ascending order.
  5. List out the no.of employees for each month and year, in the ascending order based on the year, month.
  6. List out the department id having atleast four employees.
  7. How many employees in January month.
  8. How many employees who are joined in January or September month.
  9. How many employees who are joined in 1985.
  10. How many employees joined each month in 1985.
  11. How many employees who are joined in March 1985.
  12. Which is the department id, having greater than or equal to 3 employees joined in April 1985.


Sub-Queries

  1. Display the employee who got the maximum salary.
  2. Display the employees who are working in Sales department
  3. Display the employees who are working as “Clerk”.
  4. Display the employees who are working in “New York”
  5. Find out no.of employees working in “Sales” department.
  6. Update the employees salaries, who are working as Clerk on the basis of 10%.
  7. Delete the employees who are working in accounting department.
  8. Display the second highest salary drawing employee details.
  9. Display the Nth highest salary drawing employee details


Sub-Query operators: (ALL,ANY,SOME,EXISTS)

  1. List out the employees who earn more than every employee in department 30.
  2. List out the employees who earn more than the lowest salary in department 30.
  3. Find out whose department has not employees.
  4. Find out which department does not have any employees.


Co-Related Sub Queries:

47.Find out the employees who earn greater than the average salary for their department.

Joins

Simple join

48.List our employees with their department names
49.Display employees with their designations (jobs)
50.Display the employees with their department name and regional groups.
51.How many employees who are working in different departments and display with department name.
52.How many employees who are working in sales department.
53.Which is the department having greater than or equal to 5 employees and display the department names in ascending order.
54.How many jobs in the organization with designations.
55.How many employees working in “New York”.

Non – Equi Join:

56.Display employee details with salary grades.
57.List out the no. of employees on grade wise.
58.Display the employ salary grades and no. of employees between 2000 to 5000 range of salary.


Self Join:

59.Display the employee details with their manager names.
60.Display the employee details who earn more than their managers salaries.
61.Show the no. of employees working under every manager.

Outer Join:

61.Display employee details with all departments.
62.Display all employees in sales or operation departments.


Set Operators:

63.List out the distinct jobs in Sales and Accounting Departments.
64.List out the ALL jobs in Sales and Accounting Departments.
65.List out the common jobs in Research and Accounting Departments in ascending order.

0 comments:

Post a Comment