Setting CHECK Constraints: character by character : Constraint « 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 » Constraint 
Setting CHECK Constraints: character by character
 
/*
mysql> Drop TABLE Employee;
Query OK, 0 rows affected (0.00 sec)

mysql> CREATE TABLE Employee (
    ->    Name    VARCHAR(50) PRIMARY KEY NOT NULL,
    ->    PhoneNo VARCHAR(15) DEFAULT 'Unknown Phone',
    ->    SSN     VARCHAR(15) NOT NULL,
    ->    CHECK (SSN LIKE '[0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9][0-9][0-9]'));
Query OK, 0 rows affected (0.07 sec)

mysql> Describe Employee;
+---------+-------------+------+-----+---------------+-------+
| Field   | Type        | Null | Key | Default       | Extra |
+---------+-------------+------+-----+---------------+-------+
| Name    | varchar(50) |      | PRI |               |       |
| PhoneNo | varchar(15) | YES  |     | Unknown Phone |       |
| SSN     | varchar(15) |      |     |               |       |
+---------+-------------+------+-----+---------------+-------+
3 rows in set (0.01 sec)

mysql> INSERT INTO Employee (Name, Phone, SSN) VALUES ('Joe Wang', '666 2323', 22
2-22-2222);
ERROR 1054 (42S22): Unknown column 'Phone' in 'field list'
mysql> INSERT INTO Employee (Name, SSN) VALUES ('John Doe', 22-a2-2222);
ERROR 1054 (42S22): Unknown column 'a2' in 'field list'
mysql> INSERT INTO Employee (Name, Phone) VALUES ('Joe Wang', NULL);
ERROR 1054 (42S22): Unknown column 'Phone' in 'field list'
mysql> Select * from Employee;
Empty set (0.00 sec)


*/
Drop TABLE Employee;


CREATE TABLE Employee (
   Name    VARCHAR(50PRIMARY KEY NOT NULL, 
   PhoneNo VARCHAR(15DEFAULT 'Unknown Phone',
   SSN     VARCHAR(15NOT NULL,
   CHECK (SSN LIKE '[0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9][0-9][0-9]'));

Describe Employee;

INSERT INTO Employee (Name, Phone, SSNVALUES ('Joe Wang', '666 2323', 222-22-2222);
INSERT INTO Employee (Name, SSNVALUES ('John Doe', 22-a2-2222);
INSERT INTO Employee (Name, PhoneVALUES ('Joe Wang', NULL);

Select * from Employee;


           
         
  
Related examples in the same category
1.Setting CHECK Constraints: age between
2.Setting CHECK Constraints
3.Drop constraint by name
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.