Answered step by step
Verified Expert Solution
Question
1 Approved Answer
A bad user is one who never tweeted or retweeted. Write a query to find the usernames of bad users. Try using Not Exists. Tables
A bad user is one who never tweeted or retweeted. Write a query to find the usernames of bad users. Try using Not Exists.
Tables Schema as Below:
users
columnName dataType
id int
username varchar
email varchar
remembertoken varchar
createdat datetime
updatedat datetime
passworddigest varchar
tweets
columnName dataType
id int
content varchar
createdat datetime
updatedat datetime
UserTweetRelation
columnName dataType
id int
createdat datetime
retweet boolean
userid varchar
tweetid varchar
relationships
columnName dataType
id int
createdat datetime
updatedat datetime
followerid int
followedid int
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started