Database reference - stores_demo

stores_demo -  tables -  manufact

Description

none

Table properties

namevalue
namemanufact
created5/3/2009 12:00:00 AM
row count9
Maximum size of a single row854 bytes

Columns

columndatatypelengthbytesdefaultnullsPKFKUQcomputedcomment
manu_codechar3 yes  yes       
manu_namechar15 yes         
lead_timeinterval836 yes         

Indexes

namedescriptioncolumncomment
102_7non-clustered indexmanu_code 

Referenced by

name
stock

Foreign key graph

manufactstock

Sample rows

manu_codemanu_namelead_time
SMT  Smith  
ANZ  Anza  
NRG  Norge  
HSK  Husky  
HRO  Hero  
SHM  Shimara   30 
KAR  Karsten   21 
NKL  Nikolus  
PRC  ProCycle  

Code

create table "informix".manufact 
  (
    manu_code char(3),
    manu_name char(15),
    lead_time interval day(3) to day,
    primary key (manu_code) 
  );
revoke all on "informix".manufact from "public" as "informix";






Documentation generated by SqlSpec