Tables Previous topic Chapter index Next topic

CIE10

 

Description

(There is no description for table CIE10)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CODIGO

 

CHAR(5)

 

 

 

 

NOMBRE

 

CHAR(160)

 

 

 

Triggers

(There are no triggers for table CIE10)

 

Indices

Index

Fields

Active

Unique

Order

PK_CIE10

CODIGO

ASC

 

References

(There are no references for table CIE10)

 

Referenced By

Table

Foreign Key

Fields

FK Field

Delete Rule

Update Rule

DIAGNOSTICOS

FK_DIAGNOSTICOS_1

CODCIE10

CODIGO

NO ACTION

CASCADE

 

Definition

CREATE TABLE CIE10 (
    CODIGO  CHAR(5) NOT NULL,
    NOMBRE  CHAR(160) NOT NULL
);


ALTER TABLE CIE10 ADD CONSTRAINT PK_CIE10 PRIMARY KEY (CODIGO);

 

     Previous topic Chapter index Next topic