command_responses
2 rows where custom_command_id = 7
This data as json, CSV (advanced)
Suggested facets: created_at (date)
| id ▼ | custom_command_id | response_text | created_at |
|---|---|---|---|
| 16 | 7 7 | 你少打一個an | 2025-06-08 03:56:52 |
| 17 | 7 7 | 你多打一個n | 2025-06-08 03:57:05 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE command_responses (
id INTEGER PRIMARY KEY AUTOINCREMENT,
custom_command_id INTEGER NOT NULL,
response_text TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (custom_command_id) REFERENCES custom_commands(id)
);