This file contains hidden or 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
DROP TABLE TempFacts | |
CREATE TABLE TempFacts ( | |
Model NVARCHAR(100) | |
,DATE DATETIME | |
,Engine NVARCHAR(100) | |
,Revenue DECIMAL(18, 6) | |
,Conversions DECIMAL(18, 6) | |
) |