orders database reference



customer
*customer VARCHAR(255)
phone VARCHAR(255)

order
*order INT
date DATE
customer VARCHAR(255)

order_detail
*order INT
*product VARCHAR(255)
quantity INT
price DECIMAL(9,2)

product
*product VARCHAR(255)
price DECIMAL(9,2)


Victoria, Matthew