Skip to content

Instantly share code, notes, and snippets.

@emichaux
emichaux / DatabaseCreationScript.sql
Last active December 29, 2015 12:29
shoe project, data insertion and creation
drop table Customers CASCADE CONSTRAINTS;
drop table Orders CASCADE CONSTRAINTS;
drop table Return CASCADE CONSTRAINTS;
drop table Order_items CASCADE CONSTRAINTS;
drop table Promotions CASCADE CONSTRAINTS;
drop table Inventory CASCADE CONSTRAINTS;
drop table Suppliers CASCADE CONSTRAINTS;
drop table Supplier_orders CASCADE CONSTRAINTS;