question_id
int64
24.2k
80.3k
table_id
stringlengths
8
14
question
stringlengths
12
244
sql
stringlengths
33
482
80,320
2-13063126-1
What is the total number of silver medals for countries of rank 14, with less than 1 total medals?
SELECT SUM("Silver") FROM "2-13063126-1" WHERE "Rank" = '14' AND "Total" < 1.0;
80,321
2-12865696-19
How many tackles for the player with over 0 fumble recovries and 0 forced fumbles?
SELECT COUNT("Total") FROM "2-12865696-19" WHERE "Fumble rec" > 0.0 AND "Fumble force" = 0.0;
80,322
2-12865696-19
How many forced fumbles for jim laney with under 2 solo tackles?
SELECT COUNT("Fumble force") FROM "2-12865696-19" WHERE "Solo" < 2.0 AND "Player" = 'jim laney';
80,323
2-12865696-19
What is the high total for players with over 15 solo tackles?
SELECT MAX("Total") FROM "2-12865696-19" WHERE "Solo" > 15.0;
80,324
2-12865696-19
How many fumble recoveries for scott gajos with 0 forced fubmles, 0 sacks, and under 2 solo tackles?
SELECT SUM("Fumble rec") FROM "2-12865696-19" WHERE "Sacks" = '0' AND "Fumble force" = 0.0 AND "Player" = 'scott gajos' AND "Solo" < 2.0;
80,325
2-12200756-16
Who is the Opponent playing at 20:00 GMT at Camp Nou?
SELECT "Opponent" FROM "2-12200756-16" WHERE "Time" = '20:00 GMT' AND "Ground" = 'Camp Nou';
80,326
2-12200756-16
What time was the match played with a score of 3-2?
SELECT "Time" FROM "2-12200756-16" WHERE "Score" = '3-2';
80,327
2-12200756-16
On which ground did the team play Aston Villa?
SELECT "Ground" FROM "2-12200756-16" WHERE "Opponent" = 'Aston Villa';
80,328
2-12200756-16
What kind of competition was it at San Siro at 18:30 GMT?
SELECT "Competition" FROM "2-12200756-16" WHERE "Ground" = 'San Siro' AND "Time" = '18:30 GMT';
80,329
2-12214488-1
What is the total number of decile for the redwood school locality?
SELECT COUNT("Decile") FROM "2-12214488-1" WHERE "Name" = 'redwood school';
80,330
2-12650456-2
Which report includes a Circuit of Tripoli?
SELECT "Report" FROM "2-12650456-2" WHERE "Circuit" = 'Tripoli';