Simple INSERT clause : Insert « Insert Delete Update « SQL / MySQL






Simple INSERT clause

  
/*
mysql> Drop table Inventory;

mysql> CREATE TABLE Inventory
    -> (
    ->    ID SMALLINT NOT NULL PRIMARY KEY,
    ->    InStock SMALLINT NOT NULL,
    ->    OnOrder SMALLINT NOT NULL,
    ->    Reserved SMALLINT NOT NULL
    -> );
Query OK, 0 rows affected (0.06 sec)

mysql> INSERT INTO Inventory VALUES (101, 10, 15, 4),
    ->                              (102, 1, 9, 3),
    ->                              (103, 5, 2, 13);
Query OK, 3 rows affected (0.01 sec)
Records: 3  Duplicates: 0  Warnings: 0

mysql> select * from Inventory;
+-----+---------+---------+----------+
| ID  | InStock | OnOrder | Reserved |
+-----+---------+---------+----------+
| 101 |      10 |      15 |        4 |
| 102 |       1 |       9 |        3 |
| 103 |       5 |       2 |       13 |
+-----+---------+---------+----------+
3 rows in set (0.01 sec)


*/

Drop table Inventory;

CREATE TABLE Inventory
(
   ID SMALLINT NOT NULL PRIMARY KEY,
   InStock SMALLINT NOT NULL,
   OnOrder SMALLINT NOT NULL,
   Reserved SMALLINT NOT NULL
);


INSERT INTO Inventory VALUES (101, 10, 15, 4), 
                             (102, 1, 9, 3), 
                             (103, 5, 2, 13);

select * from Inventory;


           
         
    
  








Related examples in the same category

1.Calculation in INSERT clause
2.Adding Multiple Rows to a Table
3.Calculation in INSERT command
4.Use INSERT LOW_PRIORITY command
5.Insert three rows together
6.Using INSERT DELAYED
7.Insert statement and date calculation
8.INSERT ON DUPLICATE KEY UPDATE
9.Table join and insert
10.INSERT IGNORE statement
11.Insert statement without column names
12.Using one insert statement to add more than one rows
13.Insert null value
14.Get the last insert id
15.Insert record to mysql.db
16.Data Changed by Field Syntax When 123.4567 Is Inserted
17.How to create an INSERT statement.
18.In INSERT statement, the columns names are specified and only the values for those columns are included
19.Insert values into multiple rows.
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