August 2017
Intermediate to advanced
468 pages
12h 5m
English
Since we didn't previously save the tweet scores at all, we will need to create a new SQL table.
Let's explore the following steps to create the TweetTextScore table:
CREATE TABLE TweetTextScore ( ID INT IDENTITY(1,1) PRIMARY KEY, [Date] DATETIME NOT NULL DEFAULT GETUTCDATE(), Username VARCHAR(255) NOT NULL, TweetText VARCHAR(255) NOT NULL, TextSentimentScore FLOAT NOT NULL );