Untitled

mail@pastecode.io avatar
unknown
plain_text
4 months ago
654 B
1
Indexable
INSERT INTO employees (employee_id, first_name, last_name, email, phone_number, hire_date, job_id, salary, manager_id, department_id)
VALUES 
(101, 'John', 'Doe', 'john.doe@example.com', '555-1234', '2023-01-15', 'IT_PROG', 6000, 100, 10),
(102, 'Jane', 'Smith', 'jane.smith@example.com', '555-5678', '2023-02-20', 'HR_REP', 5000, 101, 20),
(103, 'Alice', 'Johnson', 'alice.johnson@example.com', '555-8765', '2023-03-10', 'AC_MGR', 12000, 101, 30),
(104, 'Bob', 'Brown', 'bob.brown@example.com', '555-4321', '2023-04-05', 'SA_REP', 7000, 103, 50),
(105, 'Charlie', 'Davis', 'charlie.davis@example.com', '555-6789', '2023-05-15', 'MK_MAN', 9000, 104, 40);
Leave a Comment