Column Modifiers : Column Modifiers : Table MySQL TUTORIALS


MySQL TUTORIALS » Table » Column Modifiers »

 

Column Modifiers


Modifier Name Applicable Types
AUTO_INCREMENT All INT Types
BINARY CHAR, VARCHAR
DEFAULT All, except BLOB, TEXT
NOT NULL All Types
NULL All Types
PRIMARY KEY All Types
UNIQUE All Types
UNSIGNED Numeric Types
ZEROFILL Numeric Types


The BINARY modifier causes the values to treated as binary strings, making them case sensitive.

The DEFAULT modifier specifies the default value.

The MySQL default value is NULL for all types except ENUM.

For ENUM, MySQL uses the first value of the enumerated list as the default.

For SET types, MySQL uses the empty string for the default.

To specify a DEFAULT value, use the following syntax:

mysql>
mysql> CREATE TABLE Test(State char(2NOT NULL DEFAULT "KY");
Query OK, rows affected (0.02 sec)

mysql>
mysql> insert into Test (statevalue (default);
Query OK, row affected (0.02 sec)

mysql>
mysql> select from Test;
+-------+
| State |
+-------+
| KY    |
+-------+
row in set (0.00 sec)

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

mysql>
mysql>

The NULL and NOT NULL modifiers specify nullable column.

The PRIMARY KEY is actually an index that must contain unique values.

The UNIQUE modifier enforces that all data within the declared column must be unique.




Leave a Comment / Note


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

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo Table
» Column Modifiers