DBMS Lab6 190
DBMS Lab6 190
DBMS LAB-6
2200290110190
EXP:-1
How to use aggregate functions in sql?
-- Create the Employees table
CREATE TABLE Employees (
EmployeeID INT PRIMARY KEY,
Name VARCHAR(50),
Department VARCHAR(50),
Salary DECIMAL(10, 2),
HireDate DATE
);