Add Index and primary key to a table in table creation command : Foreign Keys « Table « MySQL Tutorial






mysql>
mysql> CREATE TABLE myTable
    -> (
    ->    OrderID SMALLINT UNSIGNED NOT NULL,
    ->    ModelID SMALLINT UNSIGNED NOT NULL,
    ->    PRIMARY KEY (OrderID),
    ->    INDEX (ModelID)
    -> );
Query OK, 0 rows affected (0.03 sec)

mysql>
mysql> desc myTable;
+---------+----------------------+------+-----+---------+-------+
| Field   | Type                 | Null | Key | Default | Extra |
+---------+----------------------+------+-----+---------+-------+
| OrderID | smallint(5) unsigned | NO   | PRI |         |       |
| ModelID | smallint(5) unsigned | NO   | MUL |         |       |
+---------+----------------------+------+-----+---------+-------+
2 rows in set (0.00 sec)

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








4.16.Foreign Keys
4.16.1.Using Foreign Keys
4.16.2.Using AUTO_INCREMENT
4.16.3.Implement a many-to-many map
4.16.4.One table with two foreign keys
4.16.5.Alter table to drop primary key and foreign key
4.16.6.Add Index and primary key to a table in table creation command
4.16.7.FOREIGN KEY ON DELETE CASCADE ON UPDATE CASCADE