ted_FK» on «Copy» (
«plCode» ASC
);
/ * ======================================== =============
/ * Table: «Issuance» * /
/ * ======================================== ============= table «Issuance»
(
«iNumber» INTEGER not null,
«cNumber» INTEGER not null,
«rNumber» NUMBER (6) not null,
«iIssuance» DATE not null,
«iExpReturn» DATE not null,
«iFactReturn» DATE, SMALLINT, PK_ISSUANCE primary key («iNumber»)
);
/ * ======================================== =============
/ * Index: «takes_FK» * /
/ * ======================================== ============= index «takes_FK» on «Issuance» (
«rNumber» ASC
);
/ * ======================================== =============
/ * Index: «issued_FK» * /
/ * ======================================== ============= index «issued_FK» on «Issuance» (
«cNumber» ASC
);
/ * ======================================== =============
/ * Table: «Place» * /
/ * ======================================== ============= table «Place»
(
«plCode» INTEGER not null,
«plSection» VARCHAR2 (100) not null,
«plRack» INTEGER not null,
«plShelf» INTEGER not null,
«plSector» VARCHAR2 (4) not null, PK_PLACE primary key («plCode»)
);
/ * ======================================== =============
/ * Table: «Reader» * /
/ * ======================================== ============= table «Reader»
(
«rNumber» NUMBER (6) not null,
«rFullName» VARCHAR2 (100) not null,
«rAddress» VARCHAR2 (200) not null,
«rPhone» NUMBER (11) not null,
«rData» DATE not null, PK_READER primary key («rNumber»)
);
/ * ======================================== =============
/ * Table: «Replacement» * /
/ * ======================================== ============= table «Replacement»
(
«repCode» INTEGER not null,
«repDate» DATE not null, PK_REPLACEMENT primary key («repCode»)
);
/ * ======================================== =============
/ * Table: «Section» * /
/ * ======================================== ============= table «Section»
(
«sCode» INTEGER not null,
«sName» VARCHAR2 (100) not null, PK_SECTION primary ke...