Tables Previous topic Chapter index Next topic

PLANES

 

Description

(There is no description for table PLANES)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CODIGO

 

CHAR(5)

 

 

 

 

NOMBRE

 

CHAR(80)

 

 

 

Triggers

(There are no triggers for table PLANES)

 

Indices

Index

Fields

Active

Unique

Order

PK_PLANES

CODIGO

ASC

 

References

(There are no references for table PLANES)

 

Referenced By

Table

Foreign Key

Fields

FK Field

Delete Rule

Update Rule

SUBCONTRATOS

FK_SUBCONTRATOS_4

CODPLAN

CODIGO

NO ACTION

CASCADE

 

Definition

CREATE TABLE PLANES (
    CODIGO  CHAR(5) NOT NULL,
    NOMBRE  CHAR(80) NOT NULL
);


ALTER TABLE PLANES ADD CONSTRAINT PK_PLANES PRIMARY KEY (CODIGO);

 

     Previous topic Chapter index Next topic