Insert values into multiple rows. : Insert « Insert Delete Update « SQL / MySQL






Insert values into multiple rows.

      
mysql>
mysql> CREATE TABLE CDs
    -> (
    ->     CDID SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
    ->     CDName VARCHAR(50) NOT NULL,
    ->     Copyright YEAR,
    ->     NumberDisks TINYINT UNSIGNED NOT NULL DEFAULT 1,
    ->     NumberInStock TINYINT UNSIGNED,
    ->     NumberOnReserve TINYINT UNSIGNED NOT NULL,
    ->     NumberAvailable TINYINT UNSIGNED NOT NULL,
    ->     CDType VARCHAR(20),
    ->     RowAdded TIMESTAMP
    -> );
Query OK, 0 rows affected (0.01 sec)

mysql>
mysql> INSERT INTO CDs (CDName, Copyright, NumberDisks, NumberInStock, NumberOnReserve, NumberAvailable, CDType) VALUES

    -> ('Mule Variations', 1999, 1, 9, 0,NumberInStock-NumberOnReserve, 'Blues'),
    -> ('The Bonnie Raitt Collection', 1990, 1, 14, 2,NumberInStock-NumberOnReserve, 'Popular'),
    -> ('Short Sharp Shocked', 1988, 1, 6, 1,NumberInStock-NumberOnReserve, 'Folk-Rock');
Query OK, 3 rows affected (0.00 sec)
Records: 3  Duplicates: 0  Warnings: 0

mysql>
mysql>
mysql> drop table CDs;
Query OK, 0 rows affected (0.00 sec)

mysql>

   
    
    
    
    
    
  








Related examples in the same category

1.Calculation in INSERT clause
2.Simple INSERT clause
3.Adding Multiple Rows to a Table
4.Calculation in INSERT command
5.Use INSERT LOW_PRIORITY command
6.Insert three rows together
7.Using INSERT DELAYED
8.Insert statement and date calculation
9.INSERT ON DUPLICATE KEY UPDATE
10.Table join and insert
11.INSERT IGNORE statement
12.Insert statement without column names
13.Using one insert statement to add more than one rows
14.Insert null value
15.Get the last insert id
16.Insert record to mysql.db
17.Data Changed by Field Syntax When 123.4567 Is Inserted
18.How to create an INSERT statement.
19.In INSERT statement, the columns names are specified and only the values for those columns are included
20.Use the SQL statement INSERT to create a record
21.A shortcut INSERT statement to enter the data.
22.Inserting Data within One INSERT Statement
23.Column list in the insert statement