0% found this document useful (0 votes)
19 views2 pages

SQL Data Insertion Tutorial

The document provides SQL commands for inserting data into an 'employee' table. It includes examples of five employees with their respective details such as name, position, department, hire date, and salary. The course is created by Satish Dhawale and is part of a training program on data handling.

Uploaded by

itmanarif
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views2 pages

SQL Data Insertion Tutorial

The document provides SQL commands for inserting data into an 'employee' table. It includes examples of five employees with their respective details such as name, position, department, hire date, and salary. The course is created by Satish Dhawale and is part of a training program on data handling.

Uploaded by

itmanarif
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Day – 4 :

Inserting data into Table

Course created by Satish Dhawale | www.skillcourse.in


Command to Insert Data into Table
INSERT INTO employee (name, position, department, hire_date, salary) VALUES
('Amit Sharma', 'Data Analyst', 'Data Science', '2022-05-15', 65000.00),
('Priya Desai', 'Software Engineer', 'IT', '2021-09-20', 75000.00),
('Rajesh Kumar', 'HR Manager', 'Human Resources', '2019-03-10', 82000.00),
('Sneha Patel', 'Marketing Specialist', 'Marketing', '2020-11-25', 58000.00),
('Vikram Singh', 'Sales Executive', 'Sales', '2023-02-12', 62000.00);

You might also like