stars
3 rows where user = 25287458
This data as json, CSV (advanced)
Suggested facets: starred_at (date)
| Link | user | repo | starred_at |
|---|---|---|---|
| 25287458,206649770 | bryan-crompton 25287458 | google-takeout-to-sqlite 206649770 | 2020-05-08T16:48:23Z |
| 25287458,207052882 | bryan-crompton 25287458 | github-to-sqlite 207052882 | 2020-05-08T16:47:48Z |
| 25287458,248903544 | bryan-crompton 25287458 | hacker-news-to-sqlite 248903544 | 2020-05-08T16:48:58Z |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [stars] (
[user] INTEGER REFERENCES [users]([id]),
[repo] INTEGER REFERENCES [repos]([id]),
[starred_at] TEXT,
PRIMARY KEY ([user], [repo])
);
CREATE INDEX [idx_stars_repo]
ON [stars] ([repo]);
CREATE INDEX [idx_stars_user]
ON [stars] ([user]);