Tables Previous topic Chapter index Next topic

MAQUINAS

 

Description

(There is no description for table MAQUINAS)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CODIGO

 

CHAR(20)

 

 

 

 

NOMBRE

 

CHAR(80)

 

 

 

 

NOTA

 

CHAR(400)

 

 

 

Triggers

(There are no triggers for table MAQUINAS)

 

Indices

Index

Fields

Active

Unique

Order

PK_MAQUINAS

CODIGO

ASC

 

References

(There are no references for table MAQUINAS)

 

Referenced By

Table

Foreign Key

Fields

FK Field

Delete Rule

Update Rule

ORDENES

FK_ORDENES_2

CODMAQUINA

CODIGO

NO ACTION

CASCADE

 

Definition

CREATE TABLE MAQUINAS (
    CODIGO  CHAR(20) NOT NULL,
    NOMBRE  CHAR(80),
    NOTA    CHAR(400)
);


ALTER TABLE MAQUINAS ADD CONSTRAINT PK_MAQUINAS PRIMARY KEY (CODIGO);

 

     Previous topic Chapter index Next topic