Description
(There is no description for table FUNCIONES)
Fields
PK | FK | Field | Domain | Type | NN | Default | Description |
---|---|---|---|---|---|---|---|
|
CODIGO |
|
CHAR(20) |
|
|
||
|
|
NOMBRE |
|
CHAR(80) |
|
|
|
|
|
FORMULA |
|
BLOB SUB_TYPE 1 SEGMENT SIZE 80 |
|
|
|
|
|
ORDEN |
|
INTEGER |
0 |
|
|
|
|
DESCRIPCION |
|
CHAR(400) |
|
|
Triggers
(There are no triggers for table FUNCIONES)
Indices
Index | Fields | Active | Unique | Order |
---|---|---|---|---|
CODIGO |
ASC |
References
(There are no references for table FUNCIONES)
Referenced By
(There are no tables referenced by table FUNCIONES)
Definition
CREATE TABLE FUNCIONES (
CODIGO CHAR(20) NOT NULL,
NOMBRE CHAR(80),
FORMULA BLOB SUB_TYPE 1 SEGMENT SIZE 80,
ORDEN INTEGER DEFAULT 0,
DESCRIPCION CHAR(400)
);
ALTER TABLE FUNCIONES ADD CONSTRAINT PK_FUNCIONES PRIMARY KEY (CODIGO);
![]() ![]() ![]() |