Contact us
LISTING 3: Demonstrate Performance Issues
  
CREATE TABLE order_tab
    (order_no INTEGER NOT NULL,
    order_date DATETIME,
    shipping_date DATETIME,
    description CHAR(128))
CREATE TABLE position
    (position_no INTEGER NOT NULL,
    order_no INTEGER,
    description CHAR(200))