Untitled

 avatar
unknown
plain_text
2 years ago
495 B
3
Indexable
-- Insert Employee 1
INSERT INTO Employee (Ssn, First_name, Last_name, Birth_of_date, Sex, Salary, Supper_Ssn, Dno)
VALUES ('123456789', 'John', 'Smith', '1990-05-15', 'M', 60000.00, '987654321', 1);

-- Insert Employee 2
INSERT INTO Employee (Ssn, First_name, Last_name, Birth_of_date, Sex, Salary, Supper_Ssn, Dno)
VALUES ('234567890', 'Alice', 'Johnson', '1992-08-22', 'F', 55000.00, '987654321', 2);

-- Continue inserting data for Employees 3 through 10 with similar INSERT INTO statements
Editor is loading...