Tables Previous topic Chapter index Next topic

ENCUESTAS

 

Description

(There is no description for table ENCUESTAS)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CODIGO

 

CHAR(10)

 

 

 

 

NOMBRE

 

CHAR(200)

 

 

 

 

ACTIVA

 

CHAR(1)

'S'

 

 

Triggers

(There are no triggers for table ENCUESTAS)

 

Indices

Index

Fields

Active

Unique

Order

PK_ENCUESTAS

CODIGO

ASC

 

References

(There are no references for table ENCUESTAS)

 

Referenced By

Table

Foreign Key

Fields

FK Field

Delete Rule

Update Rule

PREGUNTAS

FK_PREGUNTAS_1

CODENCUESTA

CODIGO

NO ACTION

CASCADE

 

Definition

CREATE TABLE ENCUESTAS (
    CODIGO  CHAR(10) NOT NULL,
    NOMBRE  CHAR(200),
    ACTIVA  CHAR(1) DEFAULT 'S'
);


ALTER TABLE ENCUESTAS ADD CONSTRAINT PK_ENCUESTAS PRIMARY KEY (CODIGO);

 

     Previous topic Chapter index Next topic