Tables Previous topic Chapter index Next topic

BUSQUEDAS

 

Description

(There is no description for table BUSQUEDAS)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

TABLA

 

CHAR(31)

 

 

 

CAMPO

 

CHAR(31)

 

 

 

Triggers

(There are no triggers for table BUSQUEDAS)

 

Indices

Index

Fields

Active

Unique

Order

PK_BUSQUEDAS

TABLA, CAMPO

ASC

 

References

(There are no references for table BUSQUEDAS)

 

Referenced By

(There are no tables referenced by table BUSQUEDAS)

 

Definition

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


ALTER TABLE BUSQUEDAS ADD CONSTRAINT PK_BUSQUEDAS PRIMARY KEY (TABLA, CAMPO);

 

     Previous topic Chapter index Next topic