Tables Previous topic Chapter index Next topic

LIGAS

 

Description

(There is no description for table LIGAS)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CODIGO

 

CHAR(10)

 

 

 

 

NOMBRE

 

CHAR(80)

 

 

 

Triggers

(There are no triggers for table LIGAS)

 

Indices

Index

Fields

Active

Unique

Order

PK_LIGAS

CODIGO

ASC

 

References

(There are no references for table LIGAS)

 

Referenced By

Table

Foreign Key

Fields

FK Field

Delete Rule

Update Rule

TIPOIMPUESTOS

FK_TIPOIMPUESTOS_5

CODLIGA

CODIGO

NO ACTION

CASCADE

TIPORETENCIONES

FK_TIPORETENCIONES_5

CODLIGA

CODIGO

NO ACTION

CASCADE

 

Definition

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


ALTER TABLE LIGAS ADD CONSTRAINT PK_LIGAS PRIMARY KEY (CODIGO);

 

     Previous topic Chapter index Next topic