Write SQL statements to create a database with the following schema:
customer(customerID, customerName, customerAddress) order(orderID, orderDate, ) orderItem( , , itemQuantity) item(itemID, itemName)
You may make any assumptions you like about data types.
Test your statements in MySQL and view the resulting tables using SHOW and DESCRIBE. |