Tables Previous topic Chapter index Next topic

FINES

 

Description

(There is no description for table FINES)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CODIGO

 

CHAR(5)

 

 

 

 

NOMBRE

 

INTEGER

 

 

 

Triggers

(There are no triggers for table FINES)

 

Indices

Index

Fields

Active

Unique

Order

PK_FINES

CODIGO

ASC

 

References

(There are no references for table FINES)

 

Referenced By

Table

Foreign Key

Fields

FK Field

Delete Rule

Update Rule

IPS_CONSULTAS

FK_IPS_CONSULTAS_5

CODFIN

CODIGO

NO ACTION

CASCADE

 

Definition

CREATE TABLE FINES (
    CODIGO  CHAR(5) NOT NULL,
    NOMBRE  INTEGER NOT NULL
);


ALTER TABLE FINES ADD CONSTRAINT PK_FINES PRIMARY KEY (CODIGO);

 

     Previous topic Chapter index Next topic