Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YhorbyMatias/cbbca55dad90bd60d3e19333f4aad3f6 to your computer and use it in GitHub Desktop.
Save YhorbyMatias/cbbca55dad90bd60d3e19333f4aad3f6 to your computer and use it in GitHub Desktop.
sql script
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