Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. USE training_retail;
  2.  
  3. DROP TABLE orders;
  4.  
  5. CREATE TABLE orders (
  6. order_id INT COMMENT 'Unique order id',
  7. order_date STRING COMMENT 'Date on which order is placed',
  8. order_customer_id INT COMMENT 'Customer id who placed the order',
  9. order_status STRING COMMENT 'Current status of the order'
  10. ) COMMENT 'Table to save order level details';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement