| [ | |
| { | |
| "db_id": "browser_web", | |
| "query": "SELECT count(*) FROM browser WHERE market_share >= 5", | |
| "query_toks": [ | |
| "SELECT", | |
| "count", | |
| "(", | |
| "*", | |
| ")", | |
| "FROM", | |
| "browser", | |
| "WHERE", | |
| "market_share", | |
| ">", | |
| "=", | |
| "5" | |
| ], | |
| "query_toks_no_value": [ | |
| "select", | |
| "count", | |
| "(", | |
| "*", | |
| ")", | |
| "from", | |
| "browser", | |
| "where", | |
| "market_share", | |
| ">", | |
| "=", | |
| "value" | |
| ], | |
| "question": "Combien existe-t-il de navigateurs principaux dont la part de marché est d'au moins 5?", | |
| "sql": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 1 | |
| ] | |
| ], | |
| "conds": [] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 3, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 0, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [ | |
| [ | |
| false, | |
| 5, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 8, | |
| false | |
| ], | |
| null | |
| ], | |
| 5.0, | |
| null | |
| ] | |
| ], | |
| "groupBy": [], | |
| "having": [], | |
| "orderBy": [], | |
| "limit": null, | |
| "intersect": null, | |
| "union": null, | |
| "except": null | |
| } | |
| }, | |
| { | |
| "db_id": "browser_web", | |
| "query": "SELECT name FROM browser ORDER BY market_share DESC", | |
| "query_toks": [ | |
| "SELECT", | |
| "name", | |
| "FROM", | |
| "browser", | |
| "ORDER", | |
| "BY", | |
| "market_share", | |
| "DESC" | |
| ], | |
| "query_toks_no_value": [ | |
| "select", | |
| "name", | |
| "from", | |
| "browser", | |
| "order", | |
| "by", | |
| "market_share", | |
| "desc" | |
| ], | |
| "question": "Répertoriez le nom des navigateurs par ordre décroissant de part de marché.", | |
| "sql": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 1 | |
| ] | |
| ], | |
| "conds": [] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 7, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [], | |
| "groupBy": [], | |
| "having": [], | |
| "orderBy": [ | |
| "desc", | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 8, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ], | |
| "limit": null, | |
| "intersect": null, | |
| "union": null, | |
| "except": null | |
| } | |
| }, | |
| { | |
| "db_id": "browser_web", | |
| "query": "SELECT id , name , market_share FROM browser", | |
| "query_toks": [ | |
| "SELECT", | |
| "id", | |
| ",", | |
| "name", | |
| ",", | |
| "market_share", | |
| "FROM", | |
| "browser" | |
| ], | |
| "query_toks_no_value": [ | |
| "select", | |
| "id", | |
| ",", | |
| "name", | |
| ",", | |
| "market_share", | |
| "from", | |
| "browser" | |
| ], | |
| "question": "Répertoriez les identifiants, les noms et les parts de marché de tous les navigateurs.", | |
| "sql": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 1 | |
| ] | |
| ], | |
| "conds": [] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 6, | |
| false | |
| ], | |
| null | |
| ] | |
| ], | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 7, | |
| false | |
| ], | |
| null | |
| ] | |
| ], | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 8, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [], | |
| "groupBy": [], | |
| "having": [], | |
| "orderBy": [], | |
| "limit": null, | |
| "intersect": null, | |
| "union": null, | |
| "except": null | |
| } | |
| }, | |
| { | |
| "db_id": "browser_web", | |
| "query": "SELECT max(market_share) , min(market_share) , avg(market_share) FROM browser", | |
| "query_toks": [ | |
| "SELECT", | |
| "max", | |
| "(", | |
| "market_share", | |
| ")", | |
| ",", | |
| "min", | |
| "(", | |
| "market_share", | |
| ")", | |
| ",", | |
| "avg", | |
| "(", | |
| "market_share", | |
| ")", | |
| "FROM", | |
| "browser" | |
| ], | |
| "query_toks_no_value": [ | |
| "select", | |
| "max", | |
| "(", | |
| "market_share", | |
| ")", | |
| ",", | |
| "min", | |
| "(", | |
| "market_share", | |
| ")", | |
| ",", | |
| "avg", | |
| "(", | |
| "market_share", | |
| ")", | |
| "from", | |
| "browser" | |
| ], | |
| "question": "Quelle est la part de marché maximale, minimale et moyenne des navigateurs répertoriés?", | |
| "sql": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 1 | |
| ] | |
| ], | |
| "conds": [] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 1, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 8, | |
| false | |
| ], | |
| null | |
| ] | |
| ], | |
| [ | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 8, | |
| false | |
| ], | |
| null | |
| ] | |
| ], | |
| [ | |
| 5, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 8, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [], | |
| "groupBy": [], | |
| "having": [], | |
| "orderBy": [], | |
| "limit": null, | |
| "intersect": null, | |
| "union": null, | |
| "except": null | |
| } | |
| }, | |
| { | |
| "db_id": "browser_web", | |
| "query": "SELECT id , market_share FROM browser WHERE name = 'Safari'", | |
| "query_toks": [ | |
| "SELECT", | |
| "id", | |
| ",", | |
| "market_share", | |
| "FROM", | |
| "browser", | |
| "WHERE", | |
| "name", | |
| "=", | |
| "'Safari", | |
| "'" | |
| ], | |
| "query_toks_no_value": [ | |
| "select", | |
| "id", | |
| ",", | |
| "market_share", | |
| "from", | |
| "browser", | |
| "where", | |
| "name", | |
| "=", | |
| "value" | |
| ], | |
| "question": "Quelle est l'ID et la part de marché du navigateur \"Safari\"?", | |
| "sql": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 1 | |
| ] | |
| ], | |
| "conds": [] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 6, | |
| false | |
| ], | |
| null | |
| ] | |
| ], | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 8, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [ | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 7, | |
| false | |
| ], | |
| null | |
| ], | |
| "\"Safari\"", | |
| null | |
| ] | |
| ], | |
| "groupBy": [], | |
| "having": [], | |
| "orderBy": [], | |
| "limit": null, | |
| "intersect": null, | |
| "union": null, | |
| "except": null | |
| } | |
| }, | |
| { | |
| "db_id": "browser_web", | |
| "query": "SELECT name , operating_system FROM web_client_accelerator WHERE CONNECTION != 'Broadband'", | |
| "query_toks": [ | |
| "SELECT", | |
| "name", | |
| ",", | |
| "operating_system", | |
| "FROM", | |
| "web_client_accelerator", | |
| "WHERE", | |
| "CONNECTION", | |
| "!", | |
| "=", | |
| "'Broadband", | |
| "'" | |
| ], | |
| "query_toks_no_value": [ | |
| "select", | |
| "name", | |
| ",", | |
| "operating_system", | |
| "from", | |
| "web_client_accelerator", | |
| "where", | |
| "connection", | |
| "!", | |
| "=", | |
| "value" | |
| ], | |
| "question": "Quels sont le nom et le système d'exploitation des accélérateurs de clients Web qui ne fonctionnent pas uniquement avec une connexion de type \"Broadband\"?", | |
| "sql": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 0 | |
| ] | |
| ], | |
| "conds": [] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 2, | |
| false | |
| ], | |
| null | |
| ] | |
| ], | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 3, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [ | |
| [ | |
| false, | |
| 7, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 5, | |
| false | |
| ], | |
| null | |
| ], | |
| "\"Broadband\"", | |
| null | |
| ] | |
| ], | |
| "groupBy": [], | |
| "having": [], | |
| "orderBy": [], | |
| "limit": null, | |
| "intersect": null, | |
| "union": null, | |
| "except": null | |
| } | |
| }, | |
| { | |
| "db_id": "browser_web", | |
| "query": "SELECT T1.name FROM browser AS T1 JOIN accelerator_compatible_browser AS T2 ON T1.id = T2.browser_id JOIN web_client_accelerator AS T3 ON T2.accelerator_id = T3.id WHERE T3.name = 'CProxy' AND T2.compatible_since_year > 1998", | |
| "query_toks": [ | |
| "SELECT", | |
| "T1.name", | |
| "FROM", | |
| "browser", | |
| "AS", | |
| "T1", | |
| "JOIN", | |
| "accelerator_compatible_browser", | |
| "AS", | |
| "T2", | |
| "ON", | |
| "T1.id", | |
| "=", | |
| "T2.browser_id", | |
| "JOIN", | |
| "web_client_accelerator", | |
| "AS", | |
| "T3", | |
| "ON", | |
| "T2.accelerator_id", | |
| "=", | |
| "T3.id", | |
| "WHERE", | |
| "T3.name", | |
| "=", | |
| "'CProxy", | |
| "'", | |
| "AND", | |
| "T2.compatible_since_year", | |
| ">", | |
| "1998" | |
| ], | |
| "query_toks_no_value": [ | |
| "select", | |
| "t1", | |
| ".", | |
| "name", | |
| "from", | |
| "browser", | |
| "as", | |
| "t1", | |
| "join", | |
| "accelerator_compatible_browser", | |
| "as", | |
| "t2", | |
| "on", | |
| "t1", | |
| ".", | |
| "id", | |
| "=", | |
| "t2", | |
| ".", | |
| "browser_id", | |
| "join", | |
| "web_client_accelerator", | |
| "as", | |
| "t3", | |
| "on", | |
| "t2", | |
| ".", | |
| "accelerator_id", | |
| "=", | |
| "t3", | |
| ".", | |
| "id", | |
| "where", | |
| "t3", | |
| ".", | |
| "name", | |
| "=", | |
| "value", | |
| "and", | |
| "t2", | |
| ".", | |
| "compatible_since_year", | |
| ">", | |
| "value" | |
| ], | |
| "question": "Quel est le nom du navigateur devenu compatible avec l'accélérateur 'CProxy' après 1998?", | |
| "sql": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 1 | |
| ], | |
| [ | |
| "table_unit", | |
| 2 | |
| ], | |
| [ | |
| "table_unit", | |
| 0 | |
| ] | |
| ], | |
| "conds": [ | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 6, | |
| false | |
| ], | |
| null | |
| ], | |
| [ | |
| 0, | |
| 10, | |
| false | |
| ], | |
| null | |
| ], | |
| "and", | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 9, | |
| false | |
| ], | |
| null | |
| ], | |
| [ | |
| 0, | |
| 1, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 7, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [ | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 2, | |
| false | |
| ], | |
| null | |
| ], | |
| "\"CProxy\"", | |
| null | |
| ], | |
| "and", | |
| [ | |
| false, | |
| 3, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 11, | |
| false | |
| ], | |
| null | |
| ], | |
| 1998.0, | |
| null | |
| ] | |
| ], | |
| "groupBy": [], | |
| "having": [], | |
| "orderBy": [], | |
| "limit": null, | |
| "intersect": null, | |
| "union": null, | |
| "except": null | |
| } | |
| }, | |
| { | |
| "db_id": "browser_web", | |
| "query": "SELECT T1.id , T1.Name FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id GROUP BY T1.id HAVING count(*) >= 2", | |
| "query_toks": [ | |
| "SELECT", | |
| "T1.id", | |
| ",", | |
| "T1.Name", | |
| "FROM", | |
| "web_client_accelerator", | |
| "AS", | |
| "T1", | |
| "JOIN", | |
| "accelerator_compatible_browser", | |
| "AS", | |
| "T2", | |
| "ON", | |
| "T2.accelerator_id", | |
| "=", | |
| "T1.id", | |
| "GROUP", | |
| "BY", | |
| "T1.id", | |
| "HAVING", | |
| "count", | |
| "(", | |
| "*", | |
| ")", | |
| ">", | |
| "=", | |
| "2" | |
| ], | |
| "query_toks_no_value": [ | |
| "select", | |
| "t1", | |
| ".", | |
| "id", | |
| ",", | |
| "t1", | |
| ".", | |
| "name", | |
| "from", | |
| "web_client_accelerator", | |
| "as", | |
| "t1", | |
| "join", | |
| "accelerator_compatible_browser", | |
| "as", | |
| "t2", | |
| "on", | |
| "t2", | |
| ".", | |
| "accelerator_id", | |
| "=", | |
| "t1", | |
| ".", | |
| "id", | |
| "group", | |
| "by", | |
| "t1", | |
| ".", | |
| "id", | |
| "having", | |
| "count", | |
| "(", | |
| "*", | |
| ")", | |
| ">", | |
| "=", | |
| "value" | |
| ], | |
| "question": "Quels sont les identifiants et les noms des accélérateurs Web compatibles avec au moins deux navigateurs?", | |
| "sql": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 0 | |
| ], | |
| [ | |
| "table_unit", | |
| 2 | |
| ] | |
| ], | |
| "conds": [ | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 9, | |
| false | |
| ], | |
| null | |
| ], | |
| [ | |
| 0, | |
| 1, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 1, | |
| false | |
| ], | |
| null | |
| ] | |
| ], | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 2, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [], | |
| "groupBy": [ | |
| [ | |
| 0, | |
| 1, | |
| false | |
| ] | |
| ], | |
| "having": [ | |
| [ | |
| false, | |
| 5, | |
| [ | |
| 0, | |
| [ | |
| 3, | |
| 0, | |
| false | |
| ], | |
| null | |
| ], | |
| 2.0, | |
| null | |
| ] | |
| ], | |
| "orderBy": [], | |
| "limit": null, | |
| "intersect": null, | |
| "union": null, | |
| "except": null | |
| } | |
| }, | |
| { | |
| "db_id": "browser_web", | |
| "query": "SELECT T1.id , T1.name FROM browser AS T1 JOIN accelerator_compatible_browser AS T2 ON T1.id = T2.browser_id GROUP BY T1.id ORDER BY count(*) DESC LIMIT 1", | |
| "query_toks": [ | |
| "SELECT", | |
| "T1.id", | |
| ",", | |
| "T1.name", | |
| "FROM", | |
| "browser", | |
| "AS", | |
| "T1", | |
| "JOIN", | |
| "accelerator_compatible_browser", | |
| "AS", | |
| "T2", | |
| "ON", | |
| "T1.id", | |
| "=", | |
| "T2.browser_id", | |
| "GROUP", | |
| "BY", | |
| "T1.id", | |
| "ORDER", | |
| "BY", | |
| "count", | |
| "(", | |
| "*", | |
| ")", | |
| "DESC", | |
| "LIMIT", | |
| "1" | |
| ], | |
| "query_toks_no_value": [ | |
| "select", | |
| "t1", | |
| ".", | |
| "id", | |
| ",", | |
| "t1", | |
| ".", | |
| "name", | |
| "from", | |
| "browser", | |
| "as", | |
| "t1", | |
| "join", | |
| "accelerator_compatible_browser", | |
| "as", | |
| "t2", | |
| "on", | |
| "t1", | |
| ".", | |
| "id", | |
| "=", | |
| "t2", | |
| ".", | |
| "browser_id", | |
| "group", | |
| "by", | |
| "t1", | |
| ".", | |
| "id", | |
| "order", | |
| "by", | |
| "count", | |
| "(", | |
| "*", | |
| ")", | |
| "desc", | |
| "limit", | |
| "value" | |
| ], | |
| "question": "Quel est l'identifiant et le nom du navigateur compatible avec la plupart des accélérateurs Web?", | |
| "sql": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 1 | |
| ], | |
| [ | |
| "table_unit", | |
| 2 | |
| ] | |
| ], | |
| "conds": [ | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 6, | |
| false | |
| ], | |
| null | |
| ], | |
| [ | |
| 0, | |
| 10, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 6, | |
| false | |
| ], | |
| null | |
| ] | |
| ], | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 7, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [], | |
| "groupBy": [ | |
| [ | |
| 0, | |
| 6, | |
| false | |
| ] | |
| ], | |
| "having": [], | |
| "orderBy": [ | |
| "desc", | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 3, | |
| 0, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ], | |
| "limit": 1, | |
| "intersect": null, | |
| "union": null, | |
| "except": null | |
| } | |
| }, | |
| { | |
| "db_id": "browser_web", | |
| "query": "SELECT T1.compatible_since_year FROM accelerator_compatible_browser AS T1 JOIN browser AS T2 ON T1.browser_id = T2.id JOIN web_client_accelerator AS T3 ON T1.accelerator_id = T3.id WHERE T3.name = 'CACHEbox' AND T2.name = 'Internet Explorer'", | |
| "query_toks": [ | |
| "SELECT", | |
| "T1.compatible_since_year", | |
| "FROM", | |
| "accelerator_compatible_browser", | |
| "AS", | |
| "T1", | |
| "JOIN", | |
| "browser", | |
| "AS", | |
| "T2", | |
| "ON", | |
| "T1.browser_id", | |
| "=", | |
| "T2.id", | |
| "JOIN", | |
| "web_client_accelerator", | |
| "AS", | |
| "T3", | |
| "ON", | |
| "T1.accelerator_id", | |
| "=", | |
| "T3.id", | |
| "WHERE", | |
| "T3.name", | |
| "=", | |
| "'CACHEbox", | |
| "'", | |
| "AND", | |
| "T2.name", | |
| "=", | |
| "'Internet", | |
| "Explorer", | |
| "'" | |
| ], | |
| "query_toks_no_value": [ | |
| "select", | |
| "t1", | |
| ".", | |
| "compatible_since_year", | |
| "from", | |
| "accelerator_compatible_browser", | |
| "as", | |
| "t1", | |
| "join", | |
| "browser", | |
| "as", | |
| "t2", | |
| "on", | |
| "t1", | |
| ".", | |
| "browser_id", | |
| "=", | |
| "t2", | |
| ".", | |
| "id", | |
| "join", | |
| "web_client_accelerator", | |
| "as", | |
| "t3", | |
| "on", | |
| "t1", | |
| ".", | |
| "accelerator_id", | |
| "=", | |
| "t3", | |
| ".", | |
| "id", | |
| "where", | |
| "t3", | |
| ".", | |
| "name", | |
| "=", | |
| "value", | |
| "and", | |
| "t2", | |
| ".", | |
| "name", | |
| "=", | |
| "value" | |
| ], | |
| "question": "Quand l'accélérateur Web \"CACHEbox\" et le navigateur \"Internet Explorer\" sont-ils devenus compatibles?", | |
| "sql": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 2 | |
| ], | |
| [ | |
| "table_unit", | |
| 1 | |
| ], | |
| [ | |
| "table_unit", | |
| 0 | |
| ] | |
| ], | |
| "conds": [ | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 10, | |
| false | |
| ], | |
| null | |
| ], | |
| [ | |
| 0, | |
| 6, | |
| false | |
| ], | |
| null | |
| ], | |
| "and", | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 9, | |
| false | |
| ], | |
| null | |
| ], | |
| [ | |
| 0, | |
| 1, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 11, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [ | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 2, | |
| false | |
| ], | |
| null | |
| ], | |
| "\"CACHEbox\"", | |
| null | |
| ], | |
| "and", | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 7, | |
| false | |
| ], | |
| null | |
| ], | |
| "\"Internet Explorer\"", | |
| null | |
| ] | |
| ], | |
| "groupBy": [], | |
| "having": [], | |
| "orderBy": [], | |
| "limit": null, | |
| "intersect": null, | |
| "union": null, | |
| "except": null | |
| } | |
| }, | |
| { | |
| "db_id": "browser_web", | |
| "query": "SELECT count(DISTINCT client) FROM web_client_accelerator", | |
| "query_toks": [ | |
| "SELECT", | |
| "count", | |
| "(", | |
| "DISTINCT", | |
| "client", | |
| ")", | |
| "FROM", | |
| "web_client_accelerator" | |
| ], | |
| "query_toks_no_value": [ | |
| "select", | |
| "count", | |
| "(", | |
| "distinct", | |
| "client", | |
| ")", | |
| "from", | |
| "web_client_accelerator" | |
| ], | |
| "question": "Combien de types de clients différents sont pris en charge par les accélérateurs de clients Web?", | |
| "sql": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 0 | |
| ] | |
| ], | |
| "conds": [] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 3, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 4, | |
| true | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [], | |
| "groupBy": [], | |
| "having": [], | |
| "orderBy": [], | |
| "limit": null, | |
| "intersect": null, | |
| "union": null, | |
| "except": null | |
| } | |
| }, | |
| { | |
| "db_id": "browser_web", | |
| "query": "SELECT count(*) FROM web_client_accelerator WHERE id NOT IN ( SELECT accelerator_id FROM accelerator_compatible_browser );", | |
| "query_toks": [ | |
| "SELECT", | |
| "count", | |
| "(", | |
| "*", | |
| ")", | |
| "FROM", | |
| "web_client_accelerator", | |
| "WHERE", | |
| "id", | |
| "NOT", | |
| "IN", | |
| "(", | |
| "SELECT", | |
| "accelerator_id", | |
| "FROM", | |
| "accelerator_compatible_browser", | |
| ")", | |
| ";" | |
| ], | |
| "query_toks_no_value": [ | |
| "select", | |
| "count", | |
| "(", | |
| "*", | |
| ")", | |
| "from", | |
| "web_client_accelerator", | |
| "where", | |
| "id", | |
| "not", | |
| "in", | |
| "(", | |
| "select", | |
| "accelerator_id", | |
| "from", | |
| "accelerator_compatible_browser", | |
| ")" | |
| ], | |
| "question": "Combien d'accélérateurs ne sont pas compatibles avec les navigateurs répertoriés?", | |
| "sql": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 0 | |
| ] | |
| ], | |
| "conds": [] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 3, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 0, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [ | |
| [ | |
| true, | |
| 8, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 1, | |
| false | |
| ], | |
| null | |
| ], | |
| { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 2 | |
| ] | |
| ], | |
| "conds": [] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 9, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [], | |
| "groupBy": [], | |
| "having": [], | |
| "orderBy": [], | |
| "limit": null, | |
| "intersect": null, | |
| "union": null, | |
| "except": null | |
| }, | |
| null | |
| ] | |
| ], | |
| "groupBy": [], | |
| "having": [], | |
| "orderBy": [], | |
| "limit": null, | |
| "intersect": null, | |
| "union": null, | |
| "except": null | |
| } | |
| }, | |
| { | |
| "db_id": "browser_web", | |
| "query": "SELECT DISTINCT T1.name FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id JOIN browser AS T3 ON T2.browser_id = T3.id WHERE T3.market_share > 15;", | |
| "query_toks": [ | |
| "SELECT", | |
| "DISTINCT", | |
| "T1.name", | |
| "FROM", | |
| "web_client_accelerator", | |
| "AS", | |
| "T1", | |
| "JOIN", | |
| "accelerator_compatible_browser", | |
| "AS", | |
| "T2", | |
| "ON", | |
| "T2.accelerator_id", | |
| "=", | |
| "T1.id", | |
| "JOIN", | |
| "browser", | |
| "AS", | |
| "T3", | |
| "ON", | |
| "T2.browser_id", | |
| "=", | |
| "T3.id", | |
| "WHERE", | |
| "T3.market_share", | |
| ">", | |
| "15", | |
| ";" | |
| ], | |
| "query_toks_no_value": [ | |
| "select", | |
| "distinct", | |
| "t1", | |
| ".", | |
| "name", | |
| "from", | |
| "web_client_accelerator", | |
| "as", | |
| "t1", | |
| "join", | |
| "accelerator_compatible_browser", | |
| "as", | |
| "t2", | |
| "on", | |
| "t2", | |
| ".", | |
| "accelerator_id", | |
| "=", | |
| "t1", | |
| ".", | |
| "id", | |
| "join", | |
| "browser", | |
| "as", | |
| "t3", | |
| "on", | |
| "t2", | |
| ".", | |
| "browser_id", | |
| "=", | |
| "t3", | |
| ".", | |
| "id", | |
| "where", | |
| "t3", | |
| ".", | |
| "market_share", | |
| ">", | |
| "value" | |
| ], | |
| "question": "Quels noms d'accélérateurs distincts sont compatibles avec les navigateurs dont la part de marché est supérieure à 15?", | |
| "sql": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 0 | |
| ], | |
| [ | |
| "table_unit", | |
| 2 | |
| ], | |
| [ | |
| "table_unit", | |
| 1 | |
| ] | |
| ], | |
| "conds": [ | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 9, | |
| false | |
| ], | |
| null | |
| ], | |
| [ | |
| 0, | |
| 1, | |
| false | |
| ], | |
| null | |
| ], | |
| "and", | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 10, | |
| false | |
| ], | |
| null | |
| ], | |
| [ | |
| 0, | |
| 6, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| }, | |
| "select": [ | |
| true, | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 2, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [ | |
| [ | |
| false, | |
| 3, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 8, | |
| false | |
| ], | |
| null | |
| ], | |
| 15.0, | |
| null | |
| ] | |
| ], | |
| "groupBy": [], | |
| "having": [], | |
| "orderBy": [], | |
| "limit": null, | |
| "intersect": null, | |
| "union": null, | |
| "except": null | |
| } | |
| }, | |
| { | |
| "db_id": "browser_web", | |
| "query": "SELECT T3.name FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id JOIN browser AS T3 ON T2.browser_id = T3.id WHERE T1.name = 'CACHEbox' INTERSECT SELECT T3.name FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id JOIN browser AS T3 ON T2.browser_id = T3.id WHERE T1.name = 'Fasterfox'", | |
| "query_toks": [ | |
| "SELECT", | |
| "T3.name", | |
| "FROM", | |
| "web_client_accelerator", | |
| "AS", | |
| "T1", | |
| "JOIN", | |
| "accelerator_compatible_browser", | |
| "AS", | |
| "T2", | |
| "ON", | |
| "T2.accelerator_id", | |
| "=", | |
| "T1.id", | |
| "JOIN", | |
| "browser", | |
| "AS", | |
| "T3", | |
| "ON", | |
| "T2.browser_id", | |
| "=", | |
| "T3.id", | |
| "WHERE", | |
| "T1.name", | |
| "=", | |
| "'CACHEbox", | |
| "'", | |
| "INTERSECT", | |
| "SELECT", | |
| "T3.name", | |
| "FROM", | |
| "web_client_accelerator", | |
| "AS", | |
| "T1", | |
| "JOIN", | |
| "accelerator_compatible_browser", | |
| "AS", | |
| "T2", | |
| "ON", | |
| "T2.accelerator_id", | |
| "=", | |
| "T1.id", | |
| "JOIN", | |
| "browser", | |
| "AS", | |
| "T3", | |
| "ON", | |
| "T2.browser_id", | |
| "=", | |
| "T3.id", | |
| "WHERE", | |
| "T1.name", | |
| "=", | |
| "'Fasterfox", | |
| "'" | |
| ], | |
| "query_toks_no_value": [ | |
| "select", | |
| "t3", | |
| ".", | |
| "name", | |
| "from", | |
| "web_client_accelerator", | |
| "as", | |
| "t1", | |
| "join", | |
| "accelerator_compatible_browser", | |
| "as", | |
| "t2", | |
| "on", | |
| "t2", | |
| ".", | |
| "accelerator_id", | |
| "=", | |
| "t1", | |
| ".", | |
| "id", | |
| "join", | |
| "browser", | |
| "as", | |
| "t3", | |
| "on", | |
| "t2", | |
| ".", | |
| "browser_id", | |
| "=", | |
| "t3", | |
| ".", | |
| "id", | |
| "where", | |
| "t1", | |
| ".", | |
| "name", | |
| "=", | |
| "value", | |
| "intersect", | |
| "select", | |
| "t3", | |
| ".", | |
| "name", | |
| "from", | |
| "web_client_accelerator", | |
| "as", | |
| "t1", | |
| "join", | |
| "accelerator_compatible_browser", | |
| "as", | |
| "t2", | |
| "on", | |
| "t2", | |
| ".", | |
| "accelerator_id", | |
| "=", | |
| "t1", | |
| ".", | |
| "id", | |
| "join", | |
| "browser", | |
| "as", | |
| "t3", | |
| "on", | |
| "t2", | |
| ".", | |
| "browser_id", | |
| "=", | |
| "t3", | |
| ".", | |
| "id", | |
| "where", | |
| "t1", | |
| ".", | |
| "name", | |
| "=", | |
| "value" | |
| ], | |
| "question": "Répertoriez les noms des navigateurs compatibles avec \"CACHEbox\" et \"Fasterfox\".", | |
| "sql": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 0 | |
| ], | |
| [ | |
| "table_unit", | |
| 2 | |
| ], | |
| [ | |
| "table_unit", | |
| 1 | |
| ] | |
| ], | |
| "conds": [ | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 9, | |
| false | |
| ], | |
| null | |
| ], | |
| [ | |
| 0, | |
| 1, | |
| false | |
| ], | |
| null | |
| ], | |
| "and", | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 10, | |
| false | |
| ], | |
| null | |
| ], | |
| [ | |
| 0, | |
| 6, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 7, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [ | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 2, | |
| false | |
| ], | |
| null | |
| ], | |
| "\"CACHEbox\"", | |
| null | |
| ] | |
| ], | |
| "groupBy": [], | |
| "having": [], | |
| "orderBy": [], | |
| "limit": null, | |
| "intersect": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 0 | |
| ], | |
| [ | |
| "table_unit", | |
| 2 | |
| ], | |
| [ | |
| "table_unit", | |
| 1 | |
| ] | |
| ], | |
| "conds": [ | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 9, | |
| false | |
| ], | |
| null | |
| ], | |
| [ | |
| 0, | |
| 1, | |
| false | |
| ], | |
| null | |
| ], | |
| "and", | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 10, | |
| false | |
| ], | |
| null | |
| ], | |
| [ | |
| 0, | |
| 6, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 7, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [ | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 2, | |
| false | |
| ], | |
| null | |
| ], | |
| "\"Fasterfox\"", | |
| null | |
| ] | |
| ], | |
| "groupBy": [], | |
| "having": [], | |
| "orderBy": [], | |
| "limit": null, | |
| "intersect": null, | |
| "union": null, | |
| "except": null | |
| }, | |
| "union": null, | |
| "except": null | |
| } | |
| }, | |
| { | |
| "db_id": "browser_web", | |
| "query": "SELECT name , operating_system FROM web_client_accelerator EXCEPT SELECT T1.name , T1.operating_system FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id JOIN browser AS T3 ON T2.browser_id = T3.id WHERE T3.name = 'Opera'", | |
| "query_toks": [ | |
| "SELECT", | |
| "name", | |
| ",", | |
| "operating_system", | |
| "FROM", | |
| "web_client_accelerator", | |
| "EXCEPT", | |
| "SELECT", | |
| "T1.name", | |
| ",", | |
| "T1.operating_system", | |
| "FROM", | |
| "web_client_accelerator", | |
| "AS", | |
| "T1", | |
| "JOIN", | |
| "accelerator_compatible_browser", | |
| "AS", | |
| "T2", | |
| "ON", | |
| "T2.accelerator_id", | |
| "=", | |
| "T1.id", | |
| "JOIN", | |
| "browser", | |
| "AS", | |
| "T3", | |
| "ON", | |
| "T2.browser_id", | |
| "=", | |
| "T3.id", | |
| "WHERE", | |
| "T3.name", | |
| "=", | |
| "'Opera", | |
| "'" | |
| ], | |
| "query_toks_no_value": [ | |
| "select", | |
| "name", | |
| ",", | |
| "operating_system", | |
| "from", | |
| "web_client_accelerator", | |
| "except", | |
| "select", | |
| "t1", | |
| ".", | |
| "name", | |
| ",", | |
| "t1", | |
| ".", | |
| "operating_system", | |
| "from", | |
| "web_client_accelerator", | |
| "as", | |
| "t1", | |
| "join", | |
| "accelerator_compatible_browser", | |
| "as", | |
| "t2", | |
| "on", | |
| "t2", | |
| ".", | |
| "accelerator_id", | |
| "=", | |
| "t1", | |
| ".", | |
| "id", | |
| "join", | |
| "browser", | |
| "as", | |
| "t3", | |
| "on", | |
| "t2", | |
| ".", | |
| "browser_id", | |
| "=", | |
| "t3", | |
| ".", | |
| "id", | |
| "where", | |
| "t3", | |
| ".", | |
| "name", | |
| "=", | |
| "value" | |
| ], | |
| "question": "Affichez les noms des accélérateurs et les systèmes d'exploitation pris en charge qui ne sont pas compatibles avec le navigateur nommé \"Opera\".", | |
| "sql": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 0 | |
| ] | |
| ], | |
| "conds": [] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 2, | |
| false | |
| ], | |
| null | |
| ] | |
| ], | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 3, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [], | |
| "groupBy": [], | |
| "having": [], | |
| "orderBy": [], | |
| "limit": null, | |
| "intersect": null, | |
| "union": null, | |
| "except": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 0 | |
| ], | |
| [ | |
| "table_unit", | |
| 2 | |
| ], | |
| [ | |
| "table_unit", | |
| 1 | |
| ] | |
| ], | |
| "conds": [ | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 9, | |
| false | |
| ], | |
| null | |
| ], | |
| [ | |
| 0, | |
| 1, | |
| false | |
| ], | |
| null | |
| ], | |
| "and", | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 10, | |
| false | |
| ], | |
| null | |
| ], | |
| [ | |
| 0, | |
| 6, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 2, | |
| false | |
| ], | |
| null | |
| ] | |
| ], | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 3, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [ | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 7, | |
| false | |
| ], | |
| null | |
| ], | |
| "\"Opera\"", | |
| null | |
| ] | |
| ], | |
| "groupBy": [], | |
| "having": [], | |
| "orderBy": [], | |
| "limit": null, | |
| "intersect": null, | |
| "union": null, | |
| "except": null | |
| } | |
| } | |
| }, | |
| { | |
| "db_id": "browser_web", | |
| "query": "SELECT name FROM web_client_accelerator WHERE name LIKE \"%Opera%\"", | |
| "query_toks": [ | |
| "SELECT", | |
| "name", | |
| "FROM", | |
| "web_client_accelerator", | |
| "WHERE", | |
| "name", | |
| "LIKE", | |
| "``", | |
| "%", | |
| "Opera", | |
| "%", | |
| "''" | |
| ], | |
| "query_toks_no_value": [ | |
| "select", | |
| "name", | |
| "from", | |
| "web_client_accelerator", | |
| "where", | |
| "name", | |
| "like", | |
| "value" | |
| ], | |
| "question": "Quel nom d'accélérateur contient la sous-chaîne \"Opera\"?", | |
| "sql": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 0 | |
| ] | |
| ], | |
| "conds": [] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 2, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [ | |
| [ | |
| false, | |
| 9, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 2, | |
| false | |
| ], | |
| null | |
| ], | |
| "\"%Opera%\"", | |
| null | |
| ] | |
| ], | |
| "groupBy": [], | |
| "having": [], | |
| "orderBy": [], | |
| "limit": null, | |
| "intersect": null, | |
| "union": null, | |
| "except": null | |
| } | |
| }, | |
| { | |
| "db_id": "browser_web", | |
| "query": "SELECT Operating_system , count(*) FROM web_client_accelerator GROUP BY Operating_system", | |
| "query_toks": [ | |
| "SELECT", | |
| "Operating_system", | |
| ",", | |
| "count", | |
| "(", | |
| "*", | |
| ")", | |
| "FROM", | |
| "web_client_accelerator", | |
| "GROUP", | |
| "BY", | |
| "Operating_system" | |
| ], | |
| "query_toks_no_value": [ | |
| "select", | |
| "operating_system", | |
| ",", | |
| "count", | |
| "(", | |
| "*", | |
| ")", | |
| "from", | |
| "web_client_accelerator", | |
| "group", | |
| "by", | |
| "operating_system" | |
| ], | |
| "question": "Trouvez le nombre d'accélérateurs Web utilisés pour chaque système d'exploitation.", | |
| "sql": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 0 | |
| ] | |
| ], | |
| "conds": [] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 3, | |
| false | |
| ], | |
| null | |
| ] | |
| ], | |
| [ | |
| 3, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 0, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [], | |
| "groupBy": [ | |
| [ | |
| 0, | |
| 3, | |
| false | |
| ] | |
| ], | |
| "having": [], | |
| "orderBy": [], | |
| "limit": null, | |
| "intersect": null, | |
| "union": null, | |
| "except": null | |
| } | |
| }, | |
| { | |
| "db_id": "browser_web", | |
| "query": "SELECT T2.name , T3.name FROM accelerator_compatible_browser AS T1 JOIN browser AS T2 ON T1.browser_id = T2.id JOIN web_client_accelerator AS T3 ON T1.accelerator_id = T3.id ORDER BY T1.compatible_since_year DESC", | |
| "query_toks": [ | |
| "SELECT", | |
| "T2.name", | |
| ",", | |
| "T3.name", | |
| "FROM", | |
| "accelerator_compatible_browser", | |
| "AS", | |
| "T1", | |
| "JOIN", | |
| "browser", | |
| "AS", | |
| "T2", | |
| "ON", | |
| "T1.browser_id", | |
| "=", | |
| "T2.id", | |
| "JOIN", | |
| "web_client_accelerator", | |
| "AS", | |
| "T3", | |
| "ON", | |
| "T1.accelerator_id", | |
| "=", | |
| "T3.id", | |
| "ORDER", | |
| "BY", | |
| "T1.compatible_since_year", | |
| "DESC" | |
| ], | |
| "query_toks_no_value": [ | |
| "select", | |
| "t2", | |
| ".", | |
| "name", | |
| ",", | |
| "t3", | |
| ".", | |
| "name", | |
| "from", | |
| "accelerator_compatible_browser", | |
| "as", | |
| "t1", | |
| "join", | |
| "browser", | |
| "as", | |
| "t2", | |
| "on", | |
| "t1", | |
| ".", | |
| "browser_id", | |
| "=", | |
| "t2", | |
| ".", | |
| "id", | |
| "join", | |
| "web_client_accelerator", | |
| "as", | |
| "t3", | |
| "on", | |
| "t1", | |
| ".", | |
| "accelerator_id", | |
| "=", | |
| "t3", | |
| ".", | |
| "id", | |
| "order", | |
| "by", | |
| "t1", | |
| ".", | |
| "compatible_since_year", | |
| "desc" | |
| ], | |
| "question": "donnez-moi les noms de tous les navigateurs et accélérateurs compatibles dans l'ordre décroissant de l'année compatible", | |
| "sql": { | |
| "from": { | |
| "table_units": [ | |
| [ | |
| "table_unit", | |
| 2 | |
| ], | |
| [ | |
| "table_unit", | |
| 1 | |
| ], | |
| [ | |
| "table_unit", | |
| 0 | |
| ] | |
| ], | |
| "conds": [ | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 10, | |
| false | |
| ], | |
| null | |
| ], | |
| [ | |
| 0, | |
| 6, | |
| false | |
| ], | |
| null | |
| ], | |
| "and", | |
| [ | |
| false, | |
| 2, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 9, | |
| false | |
| ], | |
| null | |
| ], | |
| [ | |
| 0, | |
| 1, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| }, | |
| "select": [ | |
| false, | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 7, | |
| false | |
| ], | |
| null | |
| ] | |
| ], | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 2, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ] | |
| ], | |
| "where": [], | |
| "groupBy": [], | |
| "having": [], | |
| "orderBy": [ | |
| "desc", | |
| [ | |
| [ | |
| 0, | |
| [ | |
| 0, | |
| 11, | |
| false | |
| ], | |
| null | |
| ] | |
| ] | |
| ], | |
| "limit": null, | |
| "intersect": null, | |
| "union": null, | |
| "except": null | |
| } | |
| } | |
| ] |