{"datasette": "", "columns": ["first", "second", "third"], "rows": [""], "sql": "with comma_locations as (\r\n select instr(:path, ',') as first_comma,\r\n instr(:path, ',') + instr(substr(:path, instr(:path, ',') + 1), ',') as second_comma\r\n), variables as (\r\n select\r\n substr(:path, 0, first_comma) as first,\r\n substr(:path, first_comma + 1, second_comma - first_comma - 1) as second,\r\n substr(:path, second_comma + 1) as third\r\n from comma_locations\r\n)\r\nselect * from variables", "query_name": null, "database": "fixtures", "table": null, "request": "", "view_name": "table", "1+1": 2}