Tables Previous topic Chapter index Next topic

TEMAS

 

Description

(There is no description for table TEMAS)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CODIGO

 

CHAR(20)

 

 

 

 

NOMBRE

 

CHAR(80)

 

 

 

Triggers

(There are no triggers for table TEMAS)

 

Indices

Index

Fields

Active

Unique

Order

PK_TEMAS

CODIGO

ASC

 

References

(There are no references for table TEMAS)

 

Referenced By

Table

Foreign Key

Fields

FK Field

Delete Rule

Update Rule

SOLUCIONES

FK_SOLUCIONES_1

CODTEMA

CODIGO

NO ACTION

CASCADE

 

Definition

CREATE TABLE TEMAS (
    CODIGO  CHAR(20) NOT NULL,
    NOMBRE  CHAR(80) NOT NULL
);


ALTER TABLE TEMAS ADD CONSTRAINT PK_TEMAS PRIMARY KEY (CODIGO);

 

     Previous topic Chapter index Next topic