Specifying Default Values 1 : Default Value « Table Index « SQL / MySQL

Home
SQL / MySQL
1.Aggregate Functions
2.Backup Load
3.Command MySQL
4.Cursor
5.Data Type
6.Database
7.Date Time
8.Engine
9.Event
10.Flow Control
11.FullText Search
12.Function
13.Geometric
14.I18N
15.Insert Delete Update
16.Join
17.Key
18.Math
19.Procedure Function
20.Regular Expression
21.Select Clause
22.String
23.Table Index
24.Transaction
25.Trigger
26.User Permission
27.View
28.Where Clause
29.XML
SQL / MySQL » Table Index » Default Value 
Specifying Default Values 1
   
/*
mysql> DROP TABLE Employee;
Query OK, 0 rows affected (0.01 sec)

mysql> CREATE TABLE Employee (
    ->    Name    VARCHAR(50) NOT NULL,
    ->    Phone VARCHAR(15) DEFAULT 'Unknown Phone' NOT NULL);
Query OK, 0 rows affected (0.06 sec)

mysql> Describe Employee;
+-------+-------------+------+-----+---------------+-------+
| Field | Type        | Null | Key | Default       | Extra |
+-------+-------------+------+-----+---------------+-------+
| Name  | varchar(50) |      |     |               |       |
| Phone | varchar(15) |      |     | Unknown Phone |       |
+-------+-------------+------+-----+---------------+-------+
2 rows in set (0.00 sec)

mysql> INSERT INTO Employee (Name, Phone) VALUES ('Joe Wang', '666 2323');
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO Employee (Name) VALUES ('Joe Wang');
Query OK, 1 row affected (0.01 sec)

mysql> INSERT INTO Employee (Name, Phone) VALUES ('Joe Wang', NULL);
ERROR 1048 (23000): Column 'Phone' cannot be null
mysql> select * from Friday;
ERROR 1146 (42S02): Table 't.friday' doesn't exist

*/  
DROP TABLE Employee;

CREATE TABLE Employee (
   Name    VARCHAR(50NOT NULL, 
   Phone VARCHAR(15DEFAULT 'Unknown Phone' NOT NULL);

Describe Employee;

INSERT INTO Employee (Name, PhoneVALUES ('Joe Wang', '666 2323');
INSERT INTO Employee (NameVALUES ('Joe Wang');
INSERT INTO Employee (Name, PhoneVALUES ('Joe Wang', NULL);

select from Friday;
           
         
    
    
  
Related examples in the same category
1.Table with default value
2.Change default value
3.Check default
4.Defining Default Values
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.