reviews_authors
4 rows where author_id = 210
This data as json, CSV (advanced)
| Link | rowid ▼ | review_id | author_id |
|---|---|---|---|
| 1258 | 1258 | <em>I Want the Door to Open</em> 1258 | Jack Riedy 210 |
| 1395 | 1395 | <em>Only Up</em> 1395 | Jack Riedy 210 |
| 1504 | 1504 | <em>Signals in My Head</em> 1504 | Jack Riedy 210 |
| 1908 | 1908 | <em>Notes With Attachments</em> 1908 | Jack Riedy 210 |
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) );