following

0 rows where follower_id = 17027157

View and edit SQL

0 records

CREATE TABLE [following] (
   [followed_id] INTEGER REFERENCES [users]([id]),
   [follower_id] INTEGER REFERENCES [users]([id]),
   [first_seen] TEXT,
   PRIMARY KEY ([followed_id], [follower_id])
);
CREATE INDEX [idx_following_followed_id]
    ON [following] ([followed_id]);
CREATE INDEX [idx_following_follower_id]
    ON [following] ([follower_id]);
Powered by Datasette · Query took 8.857ms · About: simonw/jsk-fellows-on-twitter