RESTRICT update and delete : Foreign Key « Key « 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 » Key » Foreign Key 
RESTRICT update and delete
     
mysql>
mysql>
mysql>
mysql> CREATE TABLE EmployeeS(
    ->          EmployeeNO       INTEGER      NOT NULL,
    ->          NAME           CHAR(15)     NOT NULL,
    ->          INITIALS       CHAR(3)      NOT NULL,
    ->          BIRTH_DATE     DATE                 ,
    ->          SEX            CHAR(1)      NOT NULL,
    ->          JOINED         SMALLINT     NOT NULL,
    ->          STREET         VARCHAR(30)  NOT NULL,
    ->          HOUSENO        CHAR(4)              ,
    ->          POSTCODE       CHAR(6)              ,
    ->          TOWN           VARCHAR(30)  NOT NULL,
    ->          PHONENO        CHAR(13)             ,
    ->          LEAGUENO       CHAR(4)              ,
    ->          PRIMARY KEY    (EmployeeNO)           );
mysql>
mysql> CREATE   TABLE PENALTIES
    ->         (PAYMENTNO     INTEGER NOT NULL,
    ->          EmployeeNO      INTEGER NOT NULL,
    ->          PAYMENT_DATE  DATE NOT NULL,
    ->          AMOUNT        DECIMAL(7,2NOT NULL,
    ->          PRIMARY KEY  (PAYMENTNO),
    ->          FOREIGN KEY  (EmployeeNOREFERENCES EmployeeS (EmployeeNO)
    ->             ON UPDATE  RESTRICT
    ->             ON DELETE  RESTRICT);
Query OK, rows affected (0.00 sec)

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

   
    
    
    
    
  
Related examples in the same category
1.Define foreign key
2.Add Foreign Key Rules
3.Use a FOREIGN KEY constraint to define the foreign key
4.Add the foreign key by using the following
5.Reference foreign key
6.Two foreign keys
7.On delete set null
8.Cascade delete
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.