issue_comments
3 rows where issue = 613422636
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
id ▼ | html_url | issue_url | node_id | user | created_at | updated_at | author_association | body | reactions | issue | performed_via_github_app |
---|---|---|---|---|---|---|---|---|---|---|---|
624729459 | https://github.com/simonw/datasette/issues/760#issuecomment-624729459 | https://api.github.com/repos/simonw/datasette/issues/760 | MDEyOklzc3VlQ29tbWVudDYyNDcyOTQ1OQ== | simonw 9599 | 2020-05-06T15:47:44Z | 2020-05-06T15:47:44Z | OWNER | `select * from pragma_table_info(tablename);` is currently disallowed for user-provided queries via a regex restriction - but could help here too. https://github.com/simonw/datasette/blob/d349d57cdf3d577afb62bdf784af342a4d5be660/datasette/utils/__init__.py#L174 | {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} | Way of seeing full schema for a database 613422636 | |
624787678 | https://github.com/simonw/datasette/issues/760#issuecomment-624787678 | https://api.github.com/repos/simonw/datasette/issues/760 | MDEyOklzc3VlQ29tbWVudDYyNDc4NzY3OA== | simonw 9599 | 2020-05-06T17:35:05Z | 2020-05-06T17:35:05Z | OWNER | Potential recipe in https://github.com/simonw/til/blob/master/sqlite/list-all-columns-in-a-database.md | {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} | Way of seeing full schema for a database 613422636 | |
624949809 | https://github.com/simonw/datasette/issues/760#issuecomment-624949809 | https://api.github.com/repos/simonw/datasette/issues/760 | MDEyOklzc3VlQ29tbWVudDYyNDk0OTgwOQ== | simonw 9599 | 2020-05-06T23:49:06Z | 2020-05-06T23:49:06Z | OWNER | ```sql select sqlite_master.name as table_name, table_info.* from sqlite_master join pragma_table_info(sqlite_master.name) as table_info order by sqlite_master.name, table_info.cid ``` https://latest.datasette.io/fixtures?sql=select%0D%0A++sqlite_master.name+as+table_name%2C%0D%0A++table_info.*%0D%0Afrom%0D%0A++sqlite_master%0D%0A++join+pragma_table_info%28sqlite_master.name%29+as+table_info%0D%0Aorder+by%0D%0A++sqlite_master.name%2C%0D%0A++table_info.cid | {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} | Way of seeing full schema for a database 613422636 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [issue_comments] ( [html_url] TEXT, [issue_url] TEXT, [id] INTEGER PRIMARY KEY, [node_id] TEXT, [user] INTEGER REFERENCES [users]([id]), [created_at] TEXT, [updated_at] TEXT, [author_association] TEXT, [body] TEXT, [reactions] TEXT, [issue] INTEGER REFERENCES [issues]([id]) , [performed_via_github_app] TEXT); CREATE INDEX [idx_issue_comments_issue] ON [issue_comments] ([issue]); CREATE INDEX [idx_issue_comments_user] ON [issue_comments] ([user]);