Upload sql.json
Browse files
sql.json
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[
|
2 |
+
{
|
3 |
+
"instruction": "Name the home team for carlton away team",
|
4 |
+
"input": "CREATE TABLE table_name_77 (home_team VARCHAR, away_team VARCHAR)",
|
5 |
+
"response": "SELECT home_team FROM table_name_77 WHERE away_team = 'carlton'"
|
6 |
+
},
|
7 |
+
{
|
8 |
+
"instruction": "What will the population of Asia be when Latin America/Caribbean is 783 (7.5%)?",
|
9 |
+
"input": "CREATE TABLE table_22767 (\"Year\" real, \"World\" real, \"Asia\" text, \"Africa\" text, \"Europe\" text, \"Latin America/Caribbean\" text, \"Northern America\" text, \"Oceania\" text)",
|
10 |
+
"response": "SELECT \"Asia\" FROM table_22767 WHERE \"Latin America/Caribbean\" = '783 (7.5%)'"
|
11 |
+
}
|
12 |
+
]
|