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