issues_labels
3 rows where issues_id = 444746021
This data as json, CSV (advanced)
| Link | labels_id | issues_id |
|---|---|---|
| 444746021,727708733 | duplicate 727708733 | Pagination for the database index page 444746021 |
| 444746021,729586521 | medium 729586521 | Pagination for the database index page 444746021 |
| 444746021,947261894 | feature 947261894 | Pagination for the database index page 444746021 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [issues_labels] (
[labels_id] INTEGER REFERENCES [labels]([id]),
[issues_id] INTEGER REFERENCES [issues]([id]),
PRIMARY KEY ([issues_id], [labels_id])
);
CREATE INDEX [idx_issues_labels_issues_id]
ON [issues_labels] ([issues_id]);
CREATE INDEX [idx_issues_labels_labels_id]
ON [issues_labels] ([labels_id]);