crackyourinterview.com


To improves our performance please Like Share Subscribe(Will boost us)

Methods to Insert multiple rows at one time in sql
Question Posted on 18 Nov 2016Home >> DataBase >> SQL Query >> Methods to Insert multiple rows at one time in sql

Below are the 3 main methods which helps in inserting multiple records in sql table table at one time.

(1)Simple Insert method
INSERT INTO TableName VALUES ("Ram", 1, "crackyourinterview.com");
INSERT INTO TableName VALUES ("Shyam”, 2, "Interviewqsn.com");
INSERT INTO TableName VALUES ("Sachin", 3, "kharchabachao.com");
INSERT INTO TableName VALUES ("Anil”, 123, "crackyourinterview.com");

(2)Another method to insert values shortcut
insert into TableName (Name,Id,WebsiteName) values (‘Ram’, 1,’crackyourinterview.com’),
("Shyam”, 2, "Interviewqsn.com"),
("Sachin", 3, "kharchabachao.com"),
("Anil”, 123, "crackyourinterview.com");

(3)Third Method here we used INSERT with SELECT UNION ALL:
INSERT INTO TableName (Name,Id,WebsiteName)
SELECT ‘Ram’ ,1,’Crackyourinterview.com’
UNION ALL
SELECT ‘Shyam’, 2, ‘Interviewqsn.com’
UNION ALL
SELECT ‘Sachin’, 3, ‘kharchabachao.com’
0
0



.


Most Visited Questions:-

Deep Learning Questions Answers
Below are the different Deep Leaning Questions and answer a More...

Continuous Integration Questions Answers
Below are the 20 odd questions for CI or Continuous Integra More...

Derived relationships in Association Rule Mining are represented in the form of __________.
Derived relationships in Association Rule Mining are repres More...

What is Gulpjs and some multiple choice questions on Gulp
Gulpjs is an open source whihc helps in building Javascript More...

Microservices Architecture Questions Answers
Below are the different questions on Microservices Architec More...




Other Important Questions

How to get the table count in last used query from cache by sending tablename?

Write a SQL query to print 1 to 100 in sql server?

Sql Interview Latest Query questions asked on 30 dec 2020

nth highest number from table

some good sql query






@2014-2022 Crackyourinterview (All rights reserved)
Privacy Policy - Disclaimer - Sitemap