Search
 
SCRIPT & CODE EXAMPLE
 

SQL

sql insert multiple rows

INSERT INTO MyTable
  ( Column1, Column2, Column3 )
VALUES
  ('John', 123, 'Lloyds Office'), 
  ('Jane', 124, 'Lloyds Office'), 
  ('Billy', 125, 'London Office'),
  ('Miranda', 126, 'Bristol Office');
Comment

how to insert multiple rows in sql

INSERT INTO sales.promotions (
    promotion_name,
    discount,
    start_date,
    expired_date
)
VALUES
    (
        '2019 Summer Promotion',
        0.15,
        '20190601',
        '20190901'
    ),
    (
        '2019 Fall Promotion',
        0.20,
        '20191001',
        '20191101'
    ),
    (
        '2019 Winter Promotion',
        0.25,
        '20191201',
        '20200101'
    );
Code language: SQL (Structured Query Language) (sql)
Comment

sql insert multiple rows from select

INSERT INTO my_table SELECT * FROM source_table;
INSERT INTO my_table (a, b, c) SELECT a, b, c FROM source_table;
INSERT INTO my_table (a, b, c) SELECT a, b, c FROM source_table s
	WHERE s.my_col >= 10;
Comment

sql insert multiple rows from select

  INSERT INTO table2
     (name, email, phone)
     SELECT name, email, phone
     FROM table1;
Comment

sql insert multiple rows

INSERT INTO My_Table (FirstName, LastName)
VALUES
    ('Fred', 'Smith'),
    ('John', 'Smith'),
    ('Michael', 'Smith'),
    ('Robert', 'Smith');
Comment

Insert Multiple Rows at Once in SQL

INSERT INTO Customers(first_name, last_name, age, country)
VALUES
('Harry', 'Potter', 31, 'USA'),
('Chris', 'Hemsworth', 43, 'USA'),
('Tom', 'Holland', 26, 'UK');
Comment

sql insert multiple rows from another table

INSERT INTO customer (first_name, last_name)
SELECT fname, lname
FROM list_of_customers
WHERE active = 1;
Comment

PREVIOUS NEXT
Code Example
Sql :: changing column names in sql query results 
Sql :: sql numeric data type 
Sql :: SQL/update 
Sql :: hibernate show sql xml property 
Sql :: faire la différence entre deux tables sql big query 
Sql :: SQL isnumeric DB2 
Sql :: como hacer un select entre fechas mysql 
Sql :: how to select from mssql 
Sql :: alter session set nls_language french 
Sql :: how to rename column name in sql server using query 
Sql :: mysql get 2nd value in comma separated list 
Sql :: stored procedure data to table 
Sql :: Unable to locate package libmysql-java 
Sql :: sqlite3 visual table schema 
Sql :: how to login to mysql in homestead 
Sql :: Inserting data into different tables at once in oracle sql 
Sql :: delete row mysql 
Sql :: sql union 
Sql :: SQL COMO ALTERA NOME DE TABELA 
Sql :: how to insert same table data using mysql query 
Sql :: mariadb used space 
Sql :: change column in mysql 
Sql :: MySql query execution order: 
Sql :: sql interview questions for testers 
Sql :: sql commands 
Sql :: select into oracle 
Sql :: what are the data types 
Sql :: create table from query mysql 
Sql :: sql delete dastabase 
Sql :: arithmetic expression in sql 
ADD CONTENT
Topic
Content
Source link
Name
6+1 =