Tables Previous topic Chapter index Next topic

TABLAS

 

Description

(There is no description for table TABLAS)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CAMPO

 

CHAR(31)

 

 

 

TABLA

 

CHAR(31)

 

 

 

 

ETIQUETA

 

CHAR(31)

 

 

 

Triggers

(There are no triggers for table TABLAS)

 

Indices

Index

Fields

Active

Unique

Order

PK_TABLAS

CAMPO, TABLA

ASC

 

References

(There are no references for table TABLAS)

 

Referenced By

(There are no tables referenced by table TABLAS)

 

Definition

CREATE TABLE TABLAS (
    CAMPO     CHAR(31) NOT NULL,
    TABLA     CHAR(31) NOT NULL,
    ETIQUETA  CHAR(31)
);


ALTER TABLE TABLAS ADD CONSTRAINT PK_TABLAS PRIMARY KEY (CAMPO, TABLA);

 

     Previous topic Chapter index Next topic