File size: 2,543 Bytes
02edc38 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | /*
{
"qid": "038",
"task_type": "ambig",
"has_intended_resolution": true,
"language": "SQLite",
"db": "github_repos",
"question": "Show all programming languages and their total usage in GITHUB_REPOS_LANGUAGES.",
"gold_ambiguity_points": [
{
"id": "A",
"phrase": "total usage",
"type": "finite",
"ambiguity_type": "semantic_computation",
"interpretations": [
"total number of repositories",
"total number of bytes"
],
"intended_interpretation_idx": 0
}
],
"gold_intended_query_id": "GQRY-A.0",
"extra_info": {}
}
*/
----- START OF GOLD QUERY `GQRY-A.0` -----
/*
{
"id": "GQRY-A.0",
"parameter_names": [],
"parameter_values": {},
"other_exec_results": [],
"required_columns": null,
"required_sorted": false,
"extra_info": {
"ambiguity_resolution": {
"[A] total usage": "total number of repositories"
}
}
}
*/
WITH language_repos AS (
SELECT repo_name,
json_extract(j.value, '$.name') AS language,
json_extract(j.value, '$.bytes') AS bytes
FROM GITHUB_REPOS_LANGUAGES,
json_each(GITHUB_REPOS_LANGUAGES.language) j
)
SELECT language, COUNT(DISTINCT repo_name) AS repo_count
FROM language_repos
GROUP BY language
ORDER BY repo_count DESC;
/* EXEC RESULT
language repo_count
Shell 23
Python 17
HTML 15
JavaScript 13
Makefile 11
... TRUNCATED ...
Cap'n Proto 1
Assembly 1
AppleScript 1
ASP.NET 1
ANTLR 1
*/
----- END OF GOLD QUERY -----
----- START OF GOLD QUERY `GQRY-A.1` -----
/*
{
"id": "GQRY-A.1",
"parameter_names": [],
"parameter_values": {},
"other_exec_results": [],
"required_columns": null,
"required_sorted": false,
"extra_info": {
"ambiguity_resolution": {
"[A] total usage": "total number of bytes"
}
}
}
*/
WITH language_repos AS (
SELECT repo_name,
json_extract(j.value, '$.name') AS language,
json_extract(j.value, '$.bytes') AS bytes
FROM GITHUB_REPOS_LANGUAGES,
json_each(GITHUB_REPOS_LANGUAGES.language) j
)
SELECT language, SUM(bytes) AS total_bytes
FROM language_repos
GROUP BY language
ORDER BY total_bytes DESC;
/* EXEC RESULT
language total_bytes
Java 362286468
C++ 125714549
Dart 51466905
C 49161436
Swift 41460716
... TRUNCATED ...
Red 396
SourcePawn 222
Stylus 206
Procfile 110
Smalltalk 4
*/
----- END OF GOLD QUERY ----- |