SQL Assignment
SQL Assignment
202202238
Create Query Codes:
SQL Code for Creating tables:
CREATE TABLE Employees (
EmployeeID INT PRIMARY KEY,
FirstName VARCHAR(50),
LastName VARCHAR(50),
Email VARCHAR(100),
DepartmentID INT,
SupervisorID INT,
HireDate DATE
);
Insert Queries:
SQL code for inserting data into employees table
INSERT INTO Employees (EmployeeID, FirstName, LastName, Email, DepartmentID,
SupervisorID, HireDate)
VALUES
(1, 'John', 'Doe', 'john.doe@example.com', 1, NULL, '2020-01-15'),
(2, 'Jane', 'Smith', 'jane.smith@example.com', 2, 1, '2019-05-20'),
(3, 'David', 'Johnson', 'david.johnson@example.com', 1, 1, '2018-09-10'),
(4, 'Emily', 'Brown', 'emily.brown@example.com', 2, 3, '2021-03-02'),
(5, 'Michael', 'Davis', 'michael.davis@example.com', 3, 1, '2022-07-11'),
(6, 'Sarah', 'Wilson', 'sarah.wilson@example.com', 1, 1, '2022-02-14'),
SQL Shoeb Ahmed D Faras
202202238
(7, 'James', 'Anderson', 'james.anderson@example.com', 2, 1, '2023-01-05'),
(8, 'Laura', 'Thompson', 'laura.thompson@example.com', 1, 3, '2023-02-18'),
(9, 'Robert', 'Walker', 'robert.walker@example.com', 3, 1, '2022-09-30'),
(10, 'Olivia', 'Harris', 'olivia.harris@example.com', 2, 1, '2021-06-12'),
(11, 'Thomas', 'Clark', 'thomas.clark@example.com', 1, 3, '2023-04-22'),
(12, 'Jessica', 'Martinez', 'jessica.martinez@example.com', 2, 1, '2023-03-10');
b) Retrieve the department IDs and department names from the Departments table:
SELECT DepartmentID, DepartmentName
FROM Departments;
c) Retrieve the employee IDs and hire dates of employees hired in or after 2022:
SELECT EmployeeID, HireDate
FROM Employees
WHERE HireDate >= '2022-01-01';
d) Retrieve the employee IDs, salaries, and start dates from the Salaries table for
employees with a salary greater than 55000:
SELECT EmployeeID, Salary, StartDate
FROM Salaries
WHERE Salary > 55000;
e) Retrieve the employee IDs, log dates, and start times from the Timelogs table for logs
recorded on January 11, 2023:
SELECT EmployeeID, LogDate, StartTime
FROM Timelogs
WHERE LogDate = '2023-01-11';
f) Retrieve the employee IDs and email addresses of employees with a supervisor ID of 1:
SELECT EmployeeID, Email
FROM Employees
WHERE SupervisorID = 1;
g) Retrieve the department IDs and department names from the Departments table in
descending order of department names:
SELECT DepartmentID, DepartmentName
FROM Departments
ORDER BY DepartmentName DESC;
h) Retrieve the employee IDs and full names (concatenation of first name and last name)
from the Employees table:
SELECT EmployeeID, FirstName, LastName
FROM Employees;
P) Retrieve the department IDs and the maximum salary in each department:
SELECT DepartmentID, MAX(Salary) AS MaxSalary
FROM Departments
GROUP BY Salaries;
Q) Retrieve the employee IDs and full names of employees who have an email address
containing ‘example.com’:
SELECT EmployeeID, FirstName, LastName
FROM Employees
WHERE Email LIKE '%example.com%';
SQL Shoeb Ahmed D Faras
202202238
R) Retrieve the department IDs and department names for departments with more than 3
employees:
SELECT DepartmentID, DepartmentName
FROM Departments
WHERE DepartmentID IN (
SELECT DepartmentID
FROM Employees
GROUP BY DepartmentID
HAVING COUNT(*) > 3
);
S) Retrieve the employee IDs and the difference in days between their hire dates and the
current date:
SELECT EmployeeID, DATEDIFF(CURDATE(), HireDate) AS DaysSinceHire
FROM Employees;
T) Retrieve the employee IDs and the number of log entries for each employee in the
Timelogs table:
SELECT EmployeeID, COUNT(*) AS LogEntryCount
FROM Timelogs
GROUP BY EmployeeID;