Tables Previous topic Chapter index Next topic

PARAMETROS

 

Description

(There is no description for table PARAMETROS)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CODIGO

 

CHAR(20)

 

 

 

 

NOMBRE

 

CHAR(80)

 

 

 

 

PUNTERO

 

CHAR(31)

 

 

 

Triggers

(There are no triggers for table PARAMETROS)

 

Indices

Index

Fields

Active

Unique

Order

PK_PARAMETROS

CODIGO

ASC

 

References

(There are no references for table PARAMETROS)

 

Referenced By

(There are no tables referenced by table PARAMETROS)

 

Definition

CREATE TABLE PARAMETROS (
    CODIGO   CHAR(20) NOT NULL,
    NOMBRE   CHAR(80) NOT NULL,
    PUNTERO  CHAR(31)
);


ALTER TABLE PARAMETROS ADD CONSTRAINT PK_PARAMETROS PRIMARY KEY (CODIGO);

 

     Previous topic Chapter index Next topic