From January to June 2021 (inclusive), find the US states wh…

From January to June 2021 (inclusive), find the US states whose accumulated number of fully vaccinations is higher than the accumulated number of first dose vaccinations in Florida. Your answer should be sorted by the accumulated number of fully vaccinations in those states in descending order. Hint: the accumulated number only includes those occurred within that time window. No need to consider those occurred before the time window.

Quiz part 1 Suppose you have a twitter database, given the s…

Quiz part 1 Suppose you have a twitter database, given the schema (underlined attributes are primary keys):  UserInfo(userID, username, displayName, location, joinDatetime)UserGraph(userID, followerID)Tweet(tweetID, userID, publishTime, tweet) The database tables have the following semantics:1. UserInfo contains user information, including ID of the user, username, displayed name, user location, and the date and time when the user joined twitter.2. UserGraph contains the directed edges from twitter users to their followers.3. Tweet contains all the tweets every user has published, including ID of the tweet, ID of the user, publishing time and the tweet text. Answer the Question 1 and 2 based on this database.