Tables Previous topic Chapter index Next topic

CAPITULOS

 

Description

(There is no description for table CAPITULOS)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CODIGO

 

CHAR(10)

 

 

 

 

NOMBRE

 

CHAR(100)

 

 

 

Triggers

(There are no triggers for table CAPITULOS)

 

Indices

Index

Fields

Active

Unique

Order

PK_CAPITULOS

CODIGO

ASC

 

References

(There are no references for table CAPITULOS)

 

Referenced By

Table

Foreign Key

Fields

FK Field

Delete Rule

Update Rule

ASIENTOS

FK_ASIENTOS_2

CODCAPITULO

CODIGO

NO ACTION

CASCADE

 

Definition

CREATE TABLE CAPITULOS (
    CODIGO  CHAR(10) NOT NULL,
    NOMBRE  CHAR(100)
);


ALTER TABLE CAPITULOS ADD CONSTRAINT PK_CAPITULOS PRIMARY KEY (CODIGO);

 

     Previous topic Chapter index Next topic