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