blogroll_tags
Data license: All Rights Reserved · Data source: krisyotam.com · About: Kris Yotam
8 rows where blogroll_id = 38
This data as json, CSV (advanced)
| id ▼ | blogroll_id | tag |
|---|---|---|
| 304 | Kevin Norman 38 | home lab |
| 305 | Kevin Norman 38 | embedded systems |
| 306 | Kevin Norman 38 | linux |
| 307 | Kevin Norman 38 | networking |
| 308 | Kevin Norman 38 | personal |
| 309 | Kevin Norman 38 | technology |
| 310 | Kevin Norman 38 | guides |
| 311 | Kevin Norman 38 | iot |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE blogroll_tags (
id INTEGER PRIMARY KEY AUTOINCREMENT,
blogroll_id INTEGER NOT NULL,
tag TEXT NOT NULL,
FOREIGN KEY (blogroll_id) REFERENCES blogroll(id) ON DELETE CASCADE,
UNIQUE(blogroll_id, tag)
);