Using AUTO_INCREMENT : AUTO_INCREMENT : Data Type SQL / MySQL


SQL / MySQL » Data Type » AUTO_INCREMENT »

 

Using AUTO_INCREMENT



/*
mysql> SELECT * FROM Employee;
+----+-------+
| id | name  |
+----+-------+
|  1 | Joe   |
|  2 | Yin   |
|  3 | peng  |
|  4 | Lava  |
|  5 | White |
|  6 | Ola   |
+----+-------+
6 rows in set (0.02 sec)

*/  
/* AUTO_INCREMENT : used to generate a unique identity for new rows:
  */
Drop table Employee;

CREATE TABLE Employee (
             id MEDIUMINT NOT NULL AUTO_INCREMENT,
             name CHAR(30NOT NULL,
             PRIMARY KEY (id)
             );
             
INSERT INTO Employee (nameVALUES ('Joe'),
                                  ('Yin'),
                                  ('peng'),
                                  ('Lava'),
                                  ('White'),
                                  ('Ola');
SELECT FROM Employee;


           
       



Leave a Comment / Note


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

Follow Navioo On Twitter

SQL / MySQL

 Navioo Data Type
» AUTO_INCREMENT