Insert with set statement : Insert : Insert Update Delete MySQL TUTORIALS


MySQL TUTORIALS » Insert Update Delete » Insert »

 

Insert with set statement


mysql>
mysql> CREATE TABLE myTable(
    ->    ID TINYINT UNSIGNED NOT NULL DEFAULT 1,
    ->    Name VARCHAR(50NOT NULL
    -> );
Query OK, rows affected (0.03 sec)

mysql>
mysql>
mysql> INSERT DELAYED INTO myTable SET ID=1, Name='C';
Query OK, row affected (0.02 sec)

mysql>
mysql> select from myTable;
Empty set (0.00 sec)

mysql>
mysql> drop table myTable;
Query OK, rows affected (0.01 sec)



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo Insert Update Delete
» Insert