Ctr

Tweeter Feed

We still haven't implemented the most important page on our social media site, "Tweeter". Users can follow one another. We need a feed on our home page that shows a list of recent tweets from users you follow.

Following is a many-to-many relationship, so we'll store that in a junction table called follows which references tweeters.


tweeters
column_name type
id
INTEGER
username
VARCHAR
email
VARCHAR
registered_at
TIMESTAMPTZ

follows
column_name type reference
follower_id
INTEGER
tweeters.id
followed_id
INTEGER
tweeters.id
created_at
TIMESTAMPTZ
NULL

The junction table stores who (follower_id) is following whom (followed_id).

Remember that the tweets are in tweets.


tweets
column_name type reference
id
INTEGER
NULL
body
TEXT
NULL
user_id
INTEGER
tweeters.id
created_at
TIMESTAMPTZ
NULL

For this challenge, get all the tweets from tweeters that user enrico.durgan1 follows, as well as the usernames for who authored those tweets and when those tweets were created.

© 2022 Andrew Carlson. All rights reserved.

body
TEXT
created_at
TIMESTAMPTZ
username
VARCHAR
1
If we input the monitor, we can get to the IB transmitter through the primary HDD transmitter!
2018-07-26 05:28:38.075+00
annabelle74
2
Try to input the SQL port, maybe it will back up the solid state bandwidth!
2021-05-01 22:18:55.039+00
dax1
3
parsing the monitor won't do anything, we need to index the primary SMS transmitter!
2021-11-10 01:39:21.523+00
deonte_murray45
4
You can't input the circuit without hacking the back-end CSS matrix!
2021-11-13 01:05:58.795+00
deonte_murray45
5
generating the protocol won't do anything, we need to back up the virtual USB hard drive!
2021-12-20 11:41:28.716+00
deonte_murray45
5 rows

You haven't solved this challenge yet!
Are you sure you want to reveal the answer?