Tables Previous topic Chapter index Next topic

SISTEMA

 

Description

(There is no description for table SISTEMA)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CODIGO

 

CHAR(20)

 

 

 

 

VALOR

 

CHAR(20)

 

 

 

Triggers

(There are no triggers for table SISTEMA)

 

Indices

Index

Fields

Active

Unique

Order

PK_SISTEMA

CODIGO

ASC

 

References

(There are no references for table SISTEMA)

 

Referenced By

(There are no tables referenced by table SISTEMA)

 

Definition

CREATE TABLE SISTEMA (
    CODIGO  CHAR(20) NOT NULL,
    VALOR   CHAR(20)
);


ALTER TABLE SISTEMA ADD CONSTRAINT PK_SISTEMA PRIMARY KEY (CODIGO);

 

     Previous topic Chapter index Next topic