Tables Previous topic Chapter index Next topic

LIQUIDACIONES

 

Description

(There is no description for table LIQUIDACIONES)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CODIGO

 

CHAR(10)

 

 

 

 

NOMBRE

 

CHAR(80)

 

 

 

Triggers

(There are no triggers for table LIQUIDACIONES)

 

Indices

Index

Fields

Active

Unique

Order

PK_LIQUIDACIONES

CODIGO

ASC

 

References

(There are no references for table LIQUIDACIONES)

 

Referenced By

Table

Foreign Key

Fields

FK Field

Delete Rule

Update Rule

GRUPONOMINA

FK_GRUPONOMINA_3

CODLIQUIDACION

CODIGO

NO ACTION

CASCADE

NOMINAS

FK_NOMINAS_1

CODLIQUIDACION

CODIGO

NO ACTION

CASCADE

 

Definition

CREATE TABLE LIQUIDACIONES (
    CODIGO  CHAR(10) NOT NULL,
    NOMBRE  CHAR(80) NOT NULL
);


ALTER TABLE LIQUIDACIONES ADD CONSTRAINT PK_LIQUIDACIONES PRIMARY KEY (CODIGO);

 

     Previous topic Chapter index Next topic