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 |
---|---|---|---|---|
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);
![]() ![]() ![]() |