Tables Previous topic Chapter index Next topic

AFILIACIONES

 

Description

(There is no description for table AFILIACIONES)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CODIGO

 

CHAR(15)

 

 

 

 

NOMBRE

 

CHAR(80)

 

 

 

Triggers

(There are no triggers for table AFILIACIONES)

 

Indices

Index

Fields

Active

Unique

Order

PK_AFILIACIONES

CODIGO

ASC

 

References

(There are no references for table AFILIACIONES)

 

Referenced By

Table

Foreign Key

Fields

FK Field

Delete Rule

Update Rule

AFILIADOS

FK_AFILIADOS_1

CODAFILIACION

CODIGO

NO ACTION

CASCADE

ESQTARIFARIO

FK_ESQTARIFARIO_2

CODAFILIACION

CODIGO

NO ACTION

CASCADE

 

Definition

CREATE TABLE AFILIACIONES (
    CODIGO  CHAR(15) NOT NULL,
    NOMBRE  CHAR(80) NOT NULL
);


ALTER TABLE AFILIACIONES ADD CONSTRAINT PK_AFILIACIONES PRIMARY KEY (CODIGO);

 

     Previous topic Chapter index Next topic