reviews_authors
4 rows where author_id = 420
This data as json, CSV (advanced)
| Link | rowid ▼ | review_id | author_id |
|---|---|---|---|
| 6683 | 6683 | <em>Freedom Highway</em> 6683 | Jonathan Bernstein 420 |
| 6966 | 6966 | <em>Boots No. 1: The Official Revival Bootleg</em> 6966 | Jonathan Bernstein 420 |
| 7566 | 7566 | <em>Emotions and Math</em> 7566 | Jonathan Bernstein 420 |
| 8339 | 8339 | <em>It’s Great To Be Alive!</em> 8339 | Jonathan Bernstein 420 |
Advanced export
JSON shape: default, array, newline-delimited
CREATE TABLE reviews_authors ( review_id integer NOT NULL, author_id integer NOT NULL, FOREIGN KEY(review_id) REFERENCES reviews(id), FOREIGN KEY(author_id) REFERENCES authors(id), UNIQUE(review_id,author_id) );