Last active
April 1, 2019 13:19
-
-
Save dimitrisdovinos/da79b0c87f529265a7e6035cc5c91305 to your computer and use it in GitHub Desktop.
create temporary table
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
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