Tables Previous topic Chapter index Next topic

FONDOS

 

Description

(There is no description for table FONDOS)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CODIGO

 

CHAR(10)

 

 

 

 

NOMBRE

 

CHAR(100)

 

 

 

Triggers

(There are no triggers for table FONDOS)

 

Indices

Index

Fields

Active

Unique

Order

PK_FONDOS_1

CODIGO

ASC

 

References

(There are no references for table FONDOS)

 

Referenced By

Table

Foreign Key

Fields

FK Field

Delete Rule

Update Rule

P_DESARROLLO

FK_P_DESARROLLO_2

CODFONDO

CODIGO

NO ACTION

CASCADE

 

Definition

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


ALTER TABLE FONDOS ADD CONSTRAINT PK_FONDOS_1 PRIMARY KEY (CODIGO);

 

     Previous topic Chapter index Next topic