Tables Previous topic Chapter index Next topic

PUC

 

Description

(There is no description for table PUC)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CODIGO

 

CHAR(30)

 

 

 

 

NOMBRE

 

CHAR(80)

 

 

 

Triggers

(There are no triggers for table PUC)

 

Indices

Index

Fields

Active

Unique

Order

PK_PUC

CODIGO

ASC

 

References

(There are no references for table PUC)

 

Referenced By

(There are no tables referenced by table PUC)

 

Definition

CREATE TABLE PUC (
    CODIGO  CHAR(30) NOT NULL,
    NOMBRE  CHAR(80) NOT NULL
);


ALTER TABLE PUC ADD CONSTRAINT PK_PUC PRIMARY KEY (CODIGO);

 

     Previous topic Chapter index Next topic