til_tags
Data license: All Rights Reserved · Data source: krisyotam.com · About: Kris Yotam
2 rows where til_id = 105
This data as json, CSV (advanced)
| id ▼ | til_id | tag |
|---|---|---|
| 201 | March 5, 2025 105 | til |
| 202 | March 5, 2025 105 | Programming |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE til_tags (
id INTEGER PRIMARY KEY AUTOINCREMENT,
til_id INTEGER NOT NULL,
tag TEXT NOT NULL,
FOREIGN KEY (til_id) REFERENCES til(id) ON DELETE CASCADE,
UNIQUE(til_id, tag)
);