Tables Previous topic Chapter index Next topic

VIAS

 

Description

(There is no description for table VIAS)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CODIGO

 

CHAR(5)

 

 

 

 

NOMBRE

 

CHAR(80)

 

 

 

Triggers

(There are no triggers for table VIAS)

 

Indices

Index

Fields

Active

Unique

Order

PK_VIAS

CODIGO

ASC

 

References

(There are no references for table VIAS)

 

Referenced By

Table

Foreign Key

Fields

FK Field

Delete Rule

Update Rule

IPS_HOSPITALIZACIONES

FK_IPS_HOSPITALIZACIONES_5

CODVIA

CODIGO

NO ACTION

CASCADE

 

Definition

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


ALTER TABLE VIAS ADD CONSTRAINT PK_VIAS PRIMARY KEY (CODIGO);

 

     Previous topic Chapter index Next topic