Description
(There is no description for table FUENTES)
Fields
PK | FK | Field | Domain | Type | NN | Default | Description |
---|---|---|---|---|---|---|---|
|
CODIGO |
|
CHAR(10) |
|
|
||
|
|
NOMBRE |
|
CHAR(100) |
|
|
Triggers
(There are no triggers for table FUENTES)
Indices
Index | Fields | Active | Unique | Order |
---|---|---|---|---|
CODIGO |
ASC |
References
(There are no references for table FUENTES)
Referenced By
Table | Foreign Key | Fields | FK Field | Delete Rule | Update Rule |
---|---|---|---|---|---|
CODFUENTE |
CODIGO |
NO ACTION |
CASCADE |
Definition
CREATE TABLE FUENTES (
CODIGO CHAR(10) NOT NULL,
NOMBRE CHAR(100) NOT NULL
);
ALTER TABLE FUENTES ADD CONSTRAINT PK_FUENTES_1 PRIMARY KEY (CODIGO);
![]() ![]() ![]() |