Familiarize |
Learn |
Test |
|||
Play Scatter |
Play Space Race |
||||
Combine with other sets |
Login to add to Favorites |
Print: Term List | Flashcards |
Editing not allowed |
Export |
Deleting not allowed |
| With group: None | |
| HTML link to set: | Tiny link: |
| Term | Definition |
|---|---|
| CREATE TABLE table_name (column_name1 PRIMARY KEY AUTOINCREMENT,column_name2 NOT NULL,) | to define an auto-increment primary key |
| CREATE TABLE table_name (column_name1 PRIMARY KEY AUTOINCREMENT (intial value, increment),column_name2 NOT NULL,) | to define an auto-increment primary key with different initial value than 1 and increment greater than 1 |
| INSERT INTO Persons (column_name1, column_name2)VALUES ('value1','value2') | to insert a new record into a table with auto-increment |
| Terms | 3 |
| Creator | jtwilliams00 |
| Created | March 30, 2009 |
| Groups | None |
| Subject | SQL |
| Access | Anyone |
| Edit | Creator Only |