labels_pull_requests
2 rows where pull_requests_id = 18879796
This data as json, CSV (advanced)
| Link | labels_id | pull_requests_id |
|---|---|---|
| 58766099,18879796 | API design 58766099 | Implementation of Dataset.apply method 18879796 |
| 114009979,18879796 | topic-pandas-like 114009979 | Implementation of Dataset.apply method 18879796 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [labels_pull_requests] (
[labels_id] INTEGER REFERENCES [labels]([id]),
[pull_requests_id] INTEGER REFERENCES [pull_requests]([id]),
PRIMARY KEY ([labels_id], [pull_requests_id])
);
CREATE INDEX [idx_labels_pull_requests_pull_requests_id]
ON [labels_pull_requests] ([pull_requests_id]);
CREATE INDEX [idx_labels_pull_requests_labels_id]
ON [labels_pull_requests] ([labels_id]);