Skip to content

Instantly share code, notes, and snippets.

@kiddojazz
Created June 27, 2023 08:10
Show Gist options
  • Save kiddojazz/76bdb551354b7a0a6d26854c805981b9 to your computer and use it in GitHub Desktop.
Save kiddojazz/76bdb551354b7a0a6d26854c805981b9 to your computer and use it in GitHub Desktop.
Create table customer_order_window(
Customer_id Varchar(50) primary key unique,
customer_name varchar(50),
segment varchar(50),
age int,
country varchar(50),
city varchar(50),
state_ varchar(50),
postal_code bigint,
region varchar(50),
order_num int,
sales_total numeric,
quantity_total int,
profit_total numeric
); 
Select * from customer_order_window;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment