show dbs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use a different database name | |
create database dgadiraju_retail_db_orc; | |
use dgadiraju_retail_db_orc; | |
create table orders ( | |
order_id int, | |
order_date string, | |
order_customer_id int, | |
order_status string |