Skip to content

Instantly share code, notes, and snippets.

@dimitrisdovinos
Last active April 1, 2019 13:19
Show Gist options
  • Save dimitrisdovinos/da79b0c87f529265a7e6035cc5c91305 to your computer and use it in GitHub Desktop.
Save dimitrisdovinos/da79b0c87f529265a7e6035cc5c91305 to your computer and use it in GitHub Desktop.
create temporary table
create temp table t_data
(
customer varchar,
customer_first_name varchar,
customer_last_name varchar,
item_name varchar,
total_spent decimal,
item_qty integer
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment