detakarang commited on
Commit
323b1c5
1 Parent(s): 8d3bf6c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -6
README.md CHANGED
@@ -40,13 +40,13 @@ If you have any edits you'd like to see in a version 2 of this dataset, let me k
40
  Random sample:
41
  ```json
42
  {
43
- "question": "Please show the themes of competitions with host cities having populations larger than 1000.",
44
- "context": "CREATE TABLE city (City_ID VARCHAR, Population INTEGER); CREATE TABLE farm_competition (Theme VARCHAR, Host_city_ID VARCHAR)",
45
- "answer": "SELECT T2.Theme FROM city AS T1 JOIN farm_competition AS T2 ON T1.City_ID = T2.Host_city_ID WHERE T1.Population > 1000"
46
  },
47
  {
48
- "question": "Please show the different statuses of cities and the average population of cities with each status.",
49
- "context": "CREATE TABLE city (Status VARCHAR, Population INTEGER)",
50
- "answer": "SELECT Status, AVG(Population) FROM city GROUP BY Status"
51
  },
52
  ```
 
40
  Random sample:
41
  ```json
42
  {
43
+ "question": "Berapa banyak kepala departemen yang lebih tua dari 56 tahun?",
44
+ "context": "CREATE TABLE head (age INTEGER)",
45
+ "answer": "SELECT COUNT(*) FROM head WHERE age > 56"
46
  },
47
  {
48
+ "question": "Sebutkan nama, lahir negara bagian mana dan usia kepala departemen yang dipesan berdasarkan usia.",
49
+ "context": "CREATE TABLE head (name VARCHAR, born_state VARCHAR, age VARCHAR)",
50
+ "answer": "SELECT name, born_state, age FROM head ORDER BY age"
51
  },
52
  ```