Question: Write a Sql query to retrieve the usernames of the users who have tweeted on Twitter, ordered by the earliest tweet creation time, and limited

Write a Sql query to retrieve the usernames of the users who have tweeted on Twitter, ordered by the earliest tweet creation time, and limited to the first five users?
Tables Schema as Below:
USERS
columnName dataType
id INT AUTO INCREMENT
username VARCHAR(50) unique
email VARCHAR(50) unique
remember_token VARCHAR(50)
created_at DATETIME
updated_at DATETIME
password_digest VARCHAR(50)
primary key (id)
TWEETS
columnName dataType
id INT
content VARCHAR(50)
created_at DATE
updated_at DATE
primary key (id)
UserTweetRelation
columnName dataType
id INT
created_at DATE
retweet VARCHAR(50)
user_id INT
tweet_id INT
primary key (id)
Input

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!