Use INSERT LOW_PRIORITY command : Insert « Insert Delete Update « SQL / MySQL






Use INSERT LOW_PRIORITY command

  
/*
mysql> Drop table CDs;
Query OK, 0 rows affected (0.00 sec)

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.07 sec)

mysql> INSERT LOW_PRIORITY INTO CDs
    -> (CDName, Copyright, NumberDisks, NumberInStock, NumberOnReserve, NumberAvailable, CDType)
    -> VALUES
    -> ('Rain', 1995, DEFAULT, 13, 2, NumberInStock - NumberOnReserve, 'Classical');
Query OK, 1 row affected (0.00 sec)

mysql> select * from CDs;
+------+--------+-----------+-------------+---------------+-----------------+-----------------+-----------+---------------------+
| CDID | CDName | Copyright | NumberDisks | NumberInStock | NumberOnReserve | NumberAvailable | CDType    | RowAdded            |
+------+--------+-----------+-------------+---------------+-----------------+-----------------+-----------+---------------------+
|    1 | Rain   |      1995 |           1 |            13 |               2 |           11 | Classical | 2005-10-09 09:19:46 |
+------+--------+-----------+-------------+---------------+-----------------+-----------------+-----------+---------------------+
1 row in set (0.00 sec)
*/

Drop table CDs;


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
);


INSERT LOW_PRIORITY INTO CDs 
(CDName, Copyright, NumberDisks, NumberInStock, NumberOnReserve, NumberAvailable, CDType)
VALUES 
('Rain', 1995, DEFAULT, 13, 2, NumberInStock - NumberOnReserve, 'Classical');


select * from CDs;
           
         
    
  








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.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