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