Created
April 27, 2019 15:01
-
-
Save YhorbyMatias/cbbca55dad90bd60d3e19333f4aad3f6 to your computer and use it in GitHub Desktop.
sql script
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
CREATE TABLE AzureTweets ( | |
id int PRIMARY KEY IDENTITY, | |
createdDate datetime DEFAULT(getdate()), | |
tweettext varchar(512) SPARSE NULL, | |
sentiment Float NULL, | |
author VARCHAR (512) , | |
location VARCHAR (512) , | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment