home / github / issue_comments

Menu
  • Search all tables
  • GraphQL API

issue_comments: 496039267

This data as json

html_url issue_url id node_id user created_at updated_at author_association body reactions issue performed_via_github_app
https://github.com/simonw/datasette/issues/485#issuecomment-496039267 https://api.github.com/repos/simonw/datasette/issues/485 496039267 MDEyOklzc3VlQ29tbWVudDQ5NjAzOTI2Nw== 9599 2019-05-26T23:19:38Z 2019-05-26T23:20:10Z OWNER

Thinking about that union query: I imagine doing this with union could encourage multiple full table scans. Maybe this query would only do one? https://latest.datasette.io/fixtures?sql=select%0D%0A++count+%28distinct+name%29+as+count_distinct_column_1%2C%0D%0A++avg%28length%28name%29%29+as+avg_length_column_1%2C%0D%0A++count%28distinct+address%29+as+count_distinct_column_2%2C%0D%0A++avg%28length%28address%29%29+as+avg_length_column_2%0D%0Afrom+roadside_attractions

select count (distinct name) as count_distinct_column_1, avg(length(name)) as avg_length_column_1, count(distinct address) as count_distinct_column_2, avg(length(address)) as avg_length_column_2 from roadside_attractions

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
447469253  
Powered by Datasette · Queries took 0.932ms · About: github-to-sqlite