training_input stringlengths 118 1.06k |
|---|
###context:CREATE TABLE table_24913533_4 (steals VARCHAR, blocks VARCHAR)
###human: What are the numbers of steals associated with players having exactly 3 blocks?
###assistant: SELECT steals FROM table_24913533_4 WHERE blocks = 3 |
###context:CREATE TABLE table_24913533_4 (rebounds VARCHAR, points VARCHAR)
###human: How many numbers of rebounds are associated with exactly 18 points?
###assistant: SELECT COUNT(rebounds) FROM table_24913533_4 WHERE points = 18 |
###context:CREATE TABLE table_24913533_4 (assists INTEGER, player VARCHAR)
###human: What is the maximum number of assists for players named Anastasia Kostaki?
###assistant: SELECT MAX(assists) FROM table_24913533_4 WHERE player = "Anastasia Kostaki" |
###context:CREATE TABLE table_24912693_4 (steals INTEGER, player VARCHAR)
###human: What is Tiffani Johnson's maximum steals?
###assistant: SELECT MAX(steals) FROM table_24912693_4 WHERE player = "Tiffani Johnson" |
###context:CREATE TABLE table_24912693_4 (player VARCHAR, blocks VARCHAR)
###human: Which player has 17 blocks?
###assistant: SELECT player FROM table_24912693_4 WHERE blocks = 17 |
###context:CREATE TABLE table_24912693_4 (field_goals INTEGER, rebounds VARCHAR)
###human: How many field goals does the player with 84 rebounds have?
###assistant: SELECT MIN(field_goals) FROM table_24912693_4 WHERE rebounds = 84 |
###context:CREATE TABLE table_24912693_4 (blocks VARCHAR, minutes VARCHAR)
###human: How many blocks does the player who played 893 minutes have?
###assistant: SELECT blocks FROM table_24912693_4 WHERE minutes = 893 |
###context:CREATE TABLE table_24912693_4 (points VARCHAR, steals VARCHAR)
###human: How many points does the player with 2 steals have?
###assistant: SELECT points FROM table_24912693_4 WHERE steals = 2 |
###context:CREATE TABLE table_24924576_2 (number INTEGER)
###human: Name the most number
###assistant: SELECT MAX(number) FROM table_24924576_2 |
###context:CREATE TABLE table_24924576_2 (titles VARCHAR, result VARCHAR)
###human: Name the titles for tko 11/12
###assistant: SELECT titles FROM table_24924576_2 WHERE result = "TKO 11/12" |
###context:CREATE TABLE table_24919137_2 (venue VARCHAR, result_margin VARCHAR)
###human: Where was the game played when the result/margin was won by 70?
###assistant: SELECT venue FROM table_24919137_2 WHERE result_margin = "WON by 70" |
###context:CREATE TABLE table_24919137_2 (result_margin VARCHAR, broadcaster VARCHAR, venue VARCHAR)
###human: What is the result/margin when fox sports 1 broadcast the game played at mcg?
###assistant: SELECT result_margin FROM table_24919137_2 WHERE broadcaster = "Fox Sports 1" AND venue = "MCG" |
###context:CREATE TABLE table_24919137_2 (broadcaster VARCHAR, opposition VARCHAR)
###human: Which network broadcast the game when the Western Bulldogs played melbourne?
###assistant: SELECT broadcaster FROM table_24919137_2 WHERE opposition = "Melbourne" |
###context:CREATE TABLE table_24919137_2 (venue VARCHAR, score VARCHAR)
###human: Where was the game played when the score was 14.16 (100)-12.12 (84)?
###assistant: SELECT venue FROM table_24919137_2 WHERE score = "14.16 (100)-12.12 (84)" |
###context:CREATE TABLE table_24919137_2 (ladder_position VARCHAR, score VARCHAR)
###human: What was the ladder position when the score was 15.9 (99)–14.6 (90)?
###assistant: SELECT ladder_position FROM table_24919137_2 WHERE score = "15.9 (99)–14.6 (90)" |
###context:CREATE TABLE table_24919137_2 (date VARCHAR, ladder_position VARCHAR, opposition VARCHAR)
###human: On what date was the game played when the Western Bulldogs were in 8th ladder position and hawthorn was the opposing team?
###assistant: SELECT date FROM table_24919137_2 WHERE ladder_position = "8th" ... |
###context:CREATE TABLE table_24935743_2 (school VARCHAR, nickname VARCHAR)
###human: What school is nicknamed the panthers?
###assistant: SELECT school FROM table_24935743_2 WHERE nickname = "Panthers" |
###context:CREATE TABLE table_24935743_2 (location VARCHAR, school VARCHAR)
###human: What school is in Jeromesville?
###assistant: SELECT location FROM table_24935743_2 WHERE school = "Jeromesville" |
###context:CREATE TABLE table_24925945_3 (previous_school VARCHAR, height VARCHAR)
###human: What was the previous school of the ft7in (m) tall player?
###assistant: SELECT previous_school FROM table_24925945_3 WHERE height = "ft7in (m)" |
###context:CREATE TABLE table_24925945_3 (previous_school VARCHAR, _number VARCHAR)
###human: What was the previous school of #22?
###assistant: SELECT previous_school FROM table_24925945_3 WHERE _number = 22 |
###context:CREATE TABLE table_24938621_2 (title VARCHAR, production_code VARCHAR)
###human: What is the title of the episode with production code 3x5402?
###assistant: SELECT title FROM table_24938621_2 WHERE production_code = "3X5402" |
###context:CREATE TABLE table_24938621_2 (title VARCHAR, production_code VARCHAR)
###human: What is the title of the episode with production code 3x5405?
###assistant: SELECT title FROM table_24938621_2 WHERE production_code = "3X5405" |
###context:CREATE TABLE table_24949975_1 (home_team VARCHAR, date VARCHAR)
###human: Who as the home team for game on 5 october 2011?
###assistant: SELECT home_team FROM table_24949975_1 WHERE date = "5 October 2011" |
###context:CREATE TABLE table_24949975_1 (stadium VARCHAR, home_team VARCHAR, result VARCHAR)
###human: What was the stadium for the home team of shamrock rovers and result of 3–0?
###assistant: SELECT stadium FROM table_24949975_1 WHERE home_team = "Shamrock Rovers" AND result = "3–0" |
###context:CREATE TABLE table_24949975_1 (away_team VARCHAR, result VARCHAR, home_team VARCHAR)
###human: What was the away team when the result was 2–1 and home team was the bohemians?
###assistant: SELECT away_team FROM table_24949975_1 WHERE result = "2–1" AND home_team = "Bohemians" |
###context:CREATE TABLE table_24949975_1 (home_team VARCHAR, season VARCHAR, result VARCHAR)
###human: Who was the home team for the 2013 season and the result was 0–0?
###assistant: SELECT home_team FROM table_24949975_1 WHERE season = "2013" AND result = "0–0" |
###context:CREATE TABLE table_24949975_1 (date VARCHAR, stadium VARCHAR, result VARCHAR)
###human: What is the date for the game at the tallaght stadium and result was 0–1?
###assistant: SELECT date FROM table_24949975_1 WHERE stadium = "Tallaght stadium" AND result = "0–1" |
###context:CREATE TABLE table_24951872_2 (opponent VARCHAR, game_site VARCHAR)
###human: What opponents played Waldstadion in a game?
###assistant: SELECT opponent FROM table_24951872_2 WHERE game_site = "Waldstadion" |
###context:CREATE TABLE table_24951872_2 (week INTEGER, attendance VARCHAR)
###human: What was the maximum week that had attendance of 10738?
###assistant: SELECT MAX(week) FROM table_24951872_2 WHERE attendance = 10738 |
###context:CREATE TABLE table_24938621_3 (production_code VARCHAR, written_by VARCHAR)
###human: What is the production code of the episode written by Cathryn Humphris?
###assistant: SELECT production_code FROM table_24938621_3 WHERE written_by = "Cathryn Humphris" |
###context:CREATE TABLE table_24938621_3 (production_code VARCHAR, us_viewers__million_ VARCHAR)
###human: What is the production code of the episode that had 5.43 million viewers?
###assistant: SELECT production_code FROM table_24938621_3 WHERE us_viewers__million_ = "5.43" |
###context:CREATE TABLE table_24938621_3 (production_code VARCHAR, directed_by VARCHAR)
###human: What was the title of the episode directed by Jesse Warn?
###assistant: SELECT production_code FROM table_24938621_3 WHERE directed_by = "Jesse Warn" |
###context:CREATE TABLE table_24938621_3 (no VARCHAR, written_by VARCHAR)
###human: What episode number was written by Gregg Hurwitz?
###assistant: SELECT no FROM table_24938621_3 WHERE written_by = "Gregg Hurwitz" |
###context:CREATE TABLE table_24969173_1 (drying_shrinkage___percentage_ VARCHAR, dry_density__kg_m3_ VARCHAR)
###human: If the dry density is 800, what is the drying shrinkage %?
###assistant: SELECT drying_shrinkage___percentage_ FROM table_24969173_1 WHERE dry_density__kg_m3_ = 800 |
###context:CREATE TABLE table_24961421_1 (series__number VARCHAR, season__number VARCHAR)
###human: What number in the series was episode 7 in the season?
###assistant: SELECT series__number FROM table_24961421_1 WHERE season__number = 7 |
###context:CREATE TABLE table_24961421_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
###human: Who wrote the episode that had 12.15 million viewers?
###assistant: SELECT written_by FROM table_24961421_1 WHERE us_viewers__millions_ = "12.15" |
###context:CREATE TABLE table_24961421_1 (season__number VARCHAR, us_viewers__millions_ VARCHAR)
###human: What number in the season was the episode with 12.23 million viewers?
###assistant: SELECT season__number FROM table_24961421_1 WHERE us_viewers__millions_ = "12.23" |
###context:CREATE TABLE table_24989925_2 (date VARCHAR, game_site VARCHAR)
###human: What is the date of the game at Olympic Stadium?
###assistant: SELECT date FROM table_24989925_2 WHERE game_site = "Olympic Stadium" |
###context:CREATE TABLE table_24989925_2 (week INTEGER)
###human: How many weeks total are there?
###assistant: SELECT MAX(week) FROM table_24989925_2 |
###context:CREATE TABLE table_24989925_2 (team_record VARCHAR, game_site VARCHAR)
###human: What was the team's record when they played at Rheinenergiestadion?
###assistant: SELECT team_record FROM table_24989925_2 WHERE game_site = "RheinEnergieStadion" |
###context:CREATE TABLE table_24990183_6 (Id VARCHAR)
###human: What is the lowest overall number of 09-10 oi 2nd?
###assistant: SELECT MIN(09 AS _10_oi_2nd) FROM table_24990183_6 |
###context:CREATE TABLE table_24990183_4 (Id VARCHAR)
###human: What was the maximum 09-10 i/o best?
###assistant: SELECT MAX(09 AS _10_i_o_best) FROM table_24990183_4 |
###context:CREATE TABLE table_24990183_7 (name VARCHAR, rank VARCHAR)
###human: If the rank is 17, what are the names?
###assistant: SELECT name FROM table_24990183_7 WHERE rank = 17 |
###context:CREATE TABLE table_24990183_7 (ws_points VARCHAR)
###human: If the WS points is 947, what is the 08-09 gp/jgp 2nd ?
###assistant: SELECT 08 AS _09_gp_jgp_2nd FROM table_24990183_7 WHERE ws_points = 947 |
###context:CREATE TABLE table_24998088_1 (points VARCHAR, position VARCHAR)
###human: How many points did he have when he has in the 34th position?
###assistant: SELECT points FROM table_24998088_1 WHERE position = "34th" |
###context:CREATE TABLE table_24998088_1 (wins VARCHAR, points VARCHAR)
###human: How many wins were listed when he had 112 points?
###assistant: SELECT wins FROM table_24998088_1 WHERE points = "112" |
###context:CREATE TABLE table_24998088_1 (series VARCHAR, position VARCHAR)
###human: In what series did he have the 7th position?
###assistant: SELECT series FROM table_24998088_1 WHERE position = "7th" |
###context:CREATE TABLE table_24998088_1 (points VARCHAR, position VARCHAR)
###human: what were his points when he was in 8th position?
###assistant: SELECT points FROM table_24998088_1 WHERE position = "8th" |
###context:CREATE TABLE table_25016824_2 (vote VARCHAR, air_date VARCHAR)
###human: What was the vote when the air date is 4 october 1997?
###assistant: SELECT vote FROM table_25016824_2 WHERE air_date = "4 October 1997" |
###context:CREATE TABLE table_25016824_2 (eliminated VARCHAR, immunity VARCHAR)
###human: Who was eliminated when immunity went to kent (jürgen)?
###assistant: SELECT eliminated FROM table_25016824_2 WHERE immunity = "Kent (Jürgen)" |
###context:CREATE TABLE table_25016824_2 (eliminated VARCHAR, vote VARCHAR)
###human: Who was eliminated when the vote was 8-1?
###assistant: SELECT eliminated FROM table_25016824_2 WHERE vote = "8-1" |
###context:CREATE TABLE table_25016824_2 (vote VARCHAR, air_date VARCHAR)
###human: How many entries are there for vote when the air date was 15 november 1997?
###assistant: SELECT COUNT(vote) FROM table_25016824_2 WHERE air_date = "15 November 1997" |
###context:CREATE TABLE table_25016824_2 (reward VARCHAR, immunity VARCHAR, finish VARCHAR)
###human: What was the reward when immunity went to martin and finish is 13th voted out 8th jury member day 46?
###assistant: SELECT reward FROM table_25016824_2 WHERE immunity = "Martin" AND finish = "13th voted Out 8... |
###context:CREATE TABLE table_25008327_8 (macedonian VARCHAR, slovianski VARCHAR)
###human: How many values for Macedonian correspond to Slovianski value of Veliki?
###assistant: SELECT COUNT(macedonian) FROM table_25008327_8 WHERE slovianski = "veliki" |
###context:CREATE TABLE table_25008327_8 (slovak VARCHAR, ukrainian VARCHAR)
###human: What area all values for Slovak when value for Ukranian is пес, собака?
###assistant: SELECT slovak FROM table_25008327_8 WHERE ukrainian = "пес, собака" |
###context:CREATE TABLE table_25008327_8 (croatian VARCHAR, english VARCHAR)
###human: What is every value for Croatian when value for English is dog?
###assistant: SELECT croatian FROM table_25008327_8 WHERE english = "dog" |
###context:CREATE TABLE table_25008327_8 (polish VARCHAR, belarusian VARCHAR)
###human: What is every value for Polish when Balarusian is ноч?
###assistant: SELECT polish FROM table_25008327_8 WHERE belarusian = "ноч" |
###context:CREATE TABLE table_25008327_8 (russian VARCHAR, bulgarian VARCHAR)
###human: What is every value for Russian when value for Bulgarian is пес, куче?
###assistant: SELECT russian FROM table_25008327_8 WHERE bulgarian = "пес, куче" |
###context:CREATE TABLE table_25008327_8 (словјански VARCHAR, polish VARCHAR)
###human: What is every value for словјански if polish is książka?
###assistant: SELECT словјански FROM table_25008327_8 WHERE polish = "książka" |
###context:CREATE TABLE table_25017530_5 (position VARCHAR, player VARCHAR)
###human: Name the position for christopher smith
###assistant: SELECT position FROM table_25017530_5 WHERE player = "Christopher Smith" |
###context:CREATE TABLE table_25017530_5 (college VARCHAR, player VARCHAR)
###human: Name the college for nate binder
###assistant: SELECT college FROM table_25017530_5 WHERE player = "Nate Binder" |
###context:CREATE TABLE table_25017530_5 (pick__number INTEGER, player VARCHAR)
###human: Name the least pick number for steven turner
###assistant: SELECT MIN(pick__number) FROM table_25017530_5 WHERE player = "Steven Turner" |
###context:CREATE TABLE table_25017530_5 (cfl_team VARCHAR, player VARCHAR)
###human: Name the cfl team for steven turner
###assistant: SELECT cfl_team FROM table_25017530_5 WHERE player = "Steven Turner" |
###context:CREATE TABLE table_25017530_6 (cfl_team VARCHAR, position VARCHAR)
###human: Name the cfl team for lb position
###assistant: SELECT cfl_team FROM table_25017530_6 WHERE position = "LB" |
###context:CREATE TABLE table_25017530_6 (cfl_team VARCHAR, college VARCHAR)
###human: Name the cfl team for saskatchewan
###assistant: SELECT cfl_team FROM table_25017530_6 WHERE college = "Saskatchewan" |
###context:CREATE TABLE table_25017530_6 (position VARCHAR, player VARCHAR)
###human: Name the position for michael warner
###assistant: SELECT position FROM table_25017530_6 WHERE player = "Michael Warner" |
###context:CREATE TABLE table_2501754_2 (production_count VARCHAR, episode__number VARCHAR)
###human: How many episodes were numbered 5?
###assistant: SELECT COUNT(production_count) FROM table_2501754_2 WHERE episode__number = 5 |
###context:CREATE TABLE table_2501754_2 (original_airdate VARCHAR, prod_code VARCHAR)
###human: What are the original air date(s) for episodes with production code ipea343l?
###assistant: SELECT original_airdate FROM table_2501754_2 WHERE prod_code = "IPEA343L" |
###context:CREATE TABLE table_2501754_2 (original_airdate VARCHAR, prod_code VARCHAR)
###human: What are the original air date(s) for episodes with production code ipea345a?
###assistant: SELECT original_airdate FROM table_2501754_2 WHERE prod_code = "IPEA345A" |
###context:CREATE TABLE table_2501754_2 (original_airdate VARCHAR, viewing_figures_millions VARCHAR)
###human: What are the original air date(s) for episodes with 8.63 million viewers?
###assistant: SELECT original_airdate FROM table_2501754_2 WHERE viewing_figures_millions = "8.63" |
###context:CREATE TABLE table_250230_2 (power VARCHAR, model VARCHAR)
###human: What is the power of the Type R?
###assistant: SELECT power FROM table_250230_2 WHERE model = "Type R" |
###context:CREATE TABLE table_250230_2 (brakes VARCHAR, model VARCHAR, wheels VARCHAR, tyres VARCHAR)
###human: What kind of brakes for the model type rb 4at with 16x8.0jj (front) 16x8.0jj (rear) wheels and 225/50r16 92v(front) 225/50r16 92v(rear) tyres?
###assistant: SELECT brakes FROM table_250230_2 WHERE whe... |
###context:CREATE TABLE table_250230_2 (brakes VARCHAR, gearbox VARCHAR)
###human: What brakes for the 4-speed automatic gearbox?
###assistant: SELECT brakes FROM table_250230_2 WHERE gearbox = "4-speed automatic" |
###context:CREATE TABLE table_250230_2 (power VARCHAR, model VARCHAR)
###human: What is the power for the Spirit R (Type B)?
###assistant: SELECT power FROM table_250230_2 WHERE model = "Spirit R (Type B)" |
###context:CREATE TABLE table_250230_2 (gearbox VARCHAR)
###human: What is the gearbox when the torque is torque?
###assistant: SELECT gearbox FROM table_250230_2 WHERE "torque" = "torque" |
###context:CREATE TABLE table_25030512_4 (first_elected VARCHAR, district VARCHAR)
###human: Name the first elected for alabama 3
###assistant: SELECT COUNT(first_elected) FROM table_25030512_4 WHERE district = "Alabama 3" |
###context:CREATE TABLE table_25030512_4 (party VARCHAR, incumbent VARCHAR)
###human: Name the party for spencer bachus
###assistant: SELECT party FROM table_25030512_4 WHERE incumbent = "Spencer Bachus" |
###context:CREATE TABLE table_25030512_4 (district VARCHAR, incumbent VARCHAR)
###human: Name the district for mike rogers
###assistant: SELECT district FROM table_25030512_4 WHERE incumbent = "Mike Rogers" |
###context:CREATE TABLE table_25030512_4 (district VARCHAR, incumbent VARCHAR)
###human: Name the district for spencer bachus
###assistant: SELECT district FROM table_25030512_4 WHERE incumbent = "Spencer Bachus" |
###context:CREATE TABLE table_25030512_26 (district VARCHAR, incumbent VARCHAR)
###human: In what district was keith ellison the incumbent?
###assistant: SELECT district FROM table_25030512_26 WHERE incumbent = "Keith Ellison" |
###context:CREATE TABLE table_25034983_2 (day_power___w__ VARCHAR, city VARCHAR)
###human: List the kilo watt hoours per day for moline.
###assistant: SELECT day_power___w__ FROM table_25034983_2 WHERE city = "Moline" |
###context:CREATE TABLE table_25034983_2 (start VARCHAR, nickname VARCHAR)
###human: In which year did the voice of muscatine show start?
###assistant: SELECT start FROM table_25034983_2 WHERE nickname = "Voice of Muscatine" |
###context:CREATE TABLE table_25034983_2 (start INTEGER, owner VARCHAR)
###human: In what year was cumulus founded?
###assistant: SELECT MIN(start) FROM table_25034983_2 WHERE owner = "Cumulus" |
###context:CREATE TABLE table_25034983_2 (stereo VARCHAR, city VARCHAR)
###human: Does the city of moline have stereo?
###assistant: SELECT stereo FROM table_25034983_2 WHERE city = "Moline" |
###context:CREATE TABLE table_250309_1 (company VARCHAR, parent_company VARCHAR)
###human: what is the company with the parent company wrightbus?
###assistant: SELECT company FROM table_250309_1 WHERE parent_company = "Wrightbus" |
###context:CREATE TABLE table_250309_1 (company VARCHAR, plant VARCHAR)
###human: what is the name ofhte company where the plant is in burnaston?
###assistant: SELECT company FROM table_250309_1 WHERE plant = "Burnaston" |
###context:CREATE TABLE table_250309_1 (models_produced VARCHAR, plant VARCHAR)
###human: what models are produced where the plant is scarborough?
###assistant: SELECT models_produced FROM table_250309_1 WHERE plant = "Scarborough" |
###context:CREATE TABLE table_250309_1 (models_produced VARCHAR, plant VARCHAR)
###human: how many models produced where the plant is castle bromwich?
###assistant: SELECT COUNT(models_produced) FROM table_250309_1 WHERE plant = "Castle Bromwich" |
###context:CREATE TABLE table_250309_1 (production__latest_figures_ VARCHAR, parent_company VARCHAR)
###human: what is the production where the parent company is ariel?
###assistant: SELECT production__latest_figures_ FROM table_250309_1 WHERE parent_company = "Ariel" |
###context:CREATE TABLE table_2503102_2 (chassis VARCHAR, primary_sponsor VARCHAR)
###human: What kind of chassis on the angie's list sponsored car?
###assistant: SELECT chassis FROM table_2503102_2 WHERE primary_sponsor = "Angie's List" |
###context:CREATE TABLE table_2503102_2 (team VARCHAR, listed_owner_s_ VARCHAR)
###human: What team owns the car owned by chip ganassi?
###assistant: SELECT team FROM table_2503102_2 WHERE listed_owner_s_ = "Chip Ganassi" |
###context:CREATE TABLE table_2503102_2 (chassis VARCHAR, team VARCHAR)
###human: What chassis is on the car repped by team rahal letterman lanigan racing?
###assistant: SELECT chassis FROM table_2503102_2 WHERE team = "Rahal Letterman Lanigan Racing" |
###context:CREATE TABLE table_2503102_2 (driver_s_ VARCHAR, primary_sponsor VARCHAR)
###human: Who drives the abc supply sponsored cor?
###assistant: SELECT driver_s_ FROM table_2503102_2 WHERE primary_sponsor = "ABC Supply" |
###context:CREATE TABLE table_25030512_41 (district VARCHAR, incumbent VARCHAR)
###human: Name the number of district for tom marino
###assistant: SELECT COUNT(district) FROM table_25030512_41 WHERE incumbent = "Tom Marino" |
###context:CREATE TABLE table_25030512_41 (district VARCHAR, first_elected VARCHAR)
###human: Name the district for 1994
###assistant: SELECT district FROM table_25030512_41 WHERE first_elected = 1994 |
###context:CREATE TABLE table_25030512_41 (party VARCHAR, district VARCHAR)
###human: Name the party for pennsylvania 10
###assistant: SELECT party FROM table_25030512_41 WHERE district = "Pennsylvania 10" |
###context:CREATE TABLE table_25030512_41 (result VARCHAR, incumbent VARCHAR)
###human: Name the result for glenn thompson
###assistant: SELECT result FROM table_25030512_41 WHERE incumbent = "Glenn Thompson" |
###context:CREATE TABLE table_25030512_41 (district VARCHAR, incumbent VARCHAR)
###human: Name the number of district for bill shuster
###assistant: SELECT COUNT(district) FROM table_25030512_41 WHERE incumbent = "Bill Shuster" |
###context:CREATE TABLE table_25038931_1 (minutes INTEGER, starts VARCHAR)
###human: List the total play time for 11 starts.
###assistant: SELECT MAX(minutes) FROM table_25038931_1 WHERE starts = 11 |
###context:CREATE TABLE table_25042332_22 (region VARCHAR, primary__6_13_years_ VARCHAR)
###human: In what region is the enrollment ratio in primary 94.40?
###assistant: SELECT region FROM table_25042332_22 WHERE primary__6_13_years_ = "94.40" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.