Unnamed: 0 int64 0 60k | input stringlengths 76 562 | answer stringlengths 18 557 |
|---|---|---|
24,200 | <question>: who had the high rebounds when the game number was 6? <context>: CREATE TABLE table_name_70 (high_rebounds VARCHAR, game VARCHAR) | SELECT high_rebounds FROM table_name_70 WHERE game = 6 |
24,201 | <question>: What was the score when the NY Islanders was the visiting team? <context>: CREATE TABLE table_name_67 (score VARCHAR, visitor VARCHAR) | SELECT score FROM table_name_67 WHERE visitor = "ny islanders" |
24,202 | <question>: What was the record when the visiting team was Ottawa? <context>: CREATE TABLE table_name_54 (record VARCHAR, visitor VARCHAR) | SELECT record FROM table_name_54 WHERE visitor = "ottawa" |
24,203 | <question>: What is the full number of Total Seats with a constituency seat number bigger than 0 with the Liberal Democrat party, and the Regional seat number is smaller than 6? <context>: CREATE TABLE table_name_26 (total_seats INTEGER, regional_seats VARCHAR, constituency_seats VARCHAR, party VARCHAR) | SELECT SUM(total_seats) FROM table_name_26 WHERE constituency_seats > 0 AND party = "liberal democrat" AND regional_seats < 6 |
24,204 | <question>: How many regional seats were there with the SNP party and where the number of total seats was bigger than 46? <context>: CREATE TABLE table_name_77 (regional_seats VARCHAR, party VARCHAR, total_seats VARCHAR) | SELECT COUNT(regional_seats) FROM table_name_77 WHERE party = "snp" AND total_seats > 46 |
24,205 | <question>: Which team was the visitor on January 10? <context>: CREATE TABLE table_name_69 (visitor VARCHAR, date VARCHAR) | SELECT visitor FROM table_name_69 WHERE date = "january 10" |
24,206 | <question>: What is the average Draw when the Place is larger than 5? <context>: CREATE TABLE table_name_65 (draw INTEGER, place INTEGER) | SELECT AVG(draw) FROM table_name_65 WHERE place > 5 |
24,207 | <question>: What is the lowest Draw when the Artist is Stine Findsen and the Points are larger than 42? <context>: CREATE TABLE table_name_95 (draw INTEGER, artist VARCHAR, points VARCHAR) | SELECT MIN(draw) FROM table_name_95 WHERE artist = "stine findsen" AND points > 42 |
24,208 | <question>: What is the Draw that has Points larger than 44 and a Place larger than 1? <context>: CREATE TABLE table_name_92 (draw INTEGER, points VARCHAR, place VARCHAR) | SELECT AVG(draw) FROM table_name_92 WHERE points > 44 AND place > 1 |
24,209 | <question>: What is the position of the player from round 2 from Sweden? <context>: CREATE TABLE table_name_21 (position VARCHAR, round VARCHAR, nationality VARCHAR) | SELECT position FROM table_name_21 WHERE round = 2 AND nationality = "sweden" |
24,210 | <question>: What is the highest round of Ian Cole, who played position d from the United States? <context>: CREATE TABLE table_name_35 (round INTEGER, player VARCHAR, position VARCHAR, nationality VARCHAR) | SELECT MAX(round) FROM table_name_35 WHERE position = "d" AND nationality = "united states" AND player = "ian cole" |
24,211 | <question>: Who is the player from Denmark who plays position c? <context>: CREATE TABLE table_name_68 (player VARCHAR, position VARCHAR, nationality VARCHAR) | SELECT player FROM table_name_68 WHERE position = "c" AND nationality = "denmark" |
24,212 | <question>: Which college/junior/club team (league) did Brett Sonne play in? <context>: CREATE TABLE table_name_45 (college_junior_club_team__league_ VARCHAR, player VARCHAR) | SELECT college_junior_club_team__league_ FROM table_name_45 WHERE player = "brett sonne" |
24,213 | <question>: Which date has a To par of β12? <context>: CREATE TABLE table_name_53 (date VARCHAR, to_par VARCHAR) | SELECT date FROM table_name_53 WHERE to_par = "β12" |
24,214 | <question>: How many attended the game on December 16, 2001? <context>: CREATE TABLE table_name_92 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_92 WHERE date = "december 16, 2001" |
24,215 | <question>: What week is a bye week? <context>: CREATE TABLE table_name_64 (week VARCHAR, date VARCHAR) | SELECT week FROM table_name_64 WHERE date = "bye" |
24,216 | <question>: How many years entered service when there were 13 locomotives? <context>: CREATE TABLE table_name_89 (entered_service VARCHAR, locomotive VARCHAR) | SELECT COUNT(entered_service) FROM table_name_89 WHERE locomotive = "13" |
24,217 | <question>: Which locomotive had a 2-8-2t type, entered service year prior to 1915, and which was built after 1911? <context>: CREATE TABLE table_name_9 (locomotive VARCHAR, built VARCHAR, type VARCHAR, entered_service VARCHAR) | SELECT locomotive FROM table_name_9 WHERE type = "2-8-2t" AND entered_service < 1915 AND built > 1911 |
24,218 | <question>: What is the highest number of wins with a goal difference less than 4 at the Villarreal CF and more than 38 played? <context>: CREATE TABLE table_name_82 (wins INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR) | SELECT MAX(wins) FROM table_name_82 WHERE goal_difference < 4 AND club = "villarreal cf" AND played > 38 |
24,219 | <question>: What is the highest number played with a goal difference less than -27? <context>: CREATE TABLE table_name_57 (played INTEGER, goal_difference INTEGER) | SELECT MAX(played) FROM table_name_57 WHERE goal_difference < -27 |
24,220 | <question>: What is the highest number of loss with a 7 position and more than 45 goals? <context>: CREATE TABLE table_name_73 (losses INTEGER, position VARCHAR, goals_for VARCHAR) | SELECT MAX(losses) FROM table_name_73 WHERE position = 7 AND goals_for > 45 |
24,221 | <question>: What is the highest position with less than 17 losses, more than 57 goals, and a goal difference less than 4? <context>: CREATE TABLE table_name_39 (position INTEGER, goal_difference VARCHAR, losses VARCHAR, goals_for VARCHAR) | SELECT MAX(position) FROM table_name_39 WHERE losses < 17 AND goals_for > 57 AND goal_difference < 4 |
24,222 | <question>: What is the average goal difference with 51 goals scored against and less than 17 losses? <context>: CREATE TABLE table_name_4 (goal_difference INTEGER, goals_against VARCHAR, losses VARCHAR) | SELECT AVG(goal_difference) FROM table_name_4 WHERE goals_against = 51 AND losses < 17 |
24,223 | <question>: What is the lowest position with 32-6 points and less then 59 goals when there are more than 38 played? <context>: CREATE TABLE table_name_37 (position INTEGER, played VARCHAR, points VARCHAR, goals_against VARCHAR) | SELECT MIN(position) FROM table_name_37 WHERE points = "32-6" AND goals_against < 59 AND played > 38 |
24,224 | <question>: What was the final score of the Australian Open? <context>: CREATE TABLE table_name_13 (score_in_the_final VARCHAR, championship VARCHAR) | SELECT score_in_the_final FROM table_name_13 WHERE championship = "australian open" |
24,225 | <question>: What record was set by walter brennan before 1941? <context>: CREATE TABLE table_name_30 (record_set VARCHAR, actor VARCHAR, year VARCHAR) | SELECT record_set FROM table_name_30 WHERE actor = "walter brennan" AND year < 1941 |
24,226 | <question>: What is the earliest year for ordinary people to appear in the notes? <context>: CREATE TABLE table_name_83 (year INTEGER, notes VARCHAR) | SELECT MIN(year) FROM table_name_83 WHERE notes = "ordinary people" |
24,227 | <question>: what is the engine when the rounds ar all, the tyre is m and the driver is david coulthard? <context>: CREATE TABLE table_name_98 (engine_β VARCHAR, driver VARCHAR, rounds VARCHAR, tyre VARCHAR) | SELECT engine_β FROM table_name_98 WHERE rounds = "all" AND tyre = "m" AND driver = "david coulthard" |
24,228 | <question>: who is the entrant when the engine is bmw p82? <context>: CREATE TABLE table_name_92 (entrant VARCHAR, engine_β VARCHAR) | SELECT entrant FROM table_name_92 WHERE engine_β = "bmw p82" |
24,229 | <question>: what is the rounds when the engine is mercedes fo110m? <context>: CREATE TABLE table_name_17 (rounds VARCHAR, engine_β VARCHAR) | SELECT rounds FROM table_name_17 WHERE engine_β = "mercedes fo110m" |
24,230 | <question>: who is the driver when the engine is mercedes fo110m? <context>: CREATE TABLE table_name_1 (driver VARCHAR, engine_β VARCHAR) | SELECT driver FROM table_name_1 WHERE engine_β = "mercedes fo110m" |
24,231 | <question>: what is the tyre when the engine is asiatech at02 and the driver is alex yoong? <context>: CREATE TABLE table_name_47 (tyre VARCHAR, engine_β VARCHAR, driver VARCHAR) | SELECT tyre FROM table_name_47 WHERE engine_β = "asiatech at02" AND driver = "alex yoong" |
24,232 | <question>: what is the chassis when the tyre is b, the engine is ferrari 050 ferrari 051 and the driver is rubens barrichello? <context>: CREATE TABLE table_name_14 (chassis VARCHAR, driver VARCHAR, tyre VARCHAR, engine_β VARCHAR) | SELECT chassis FROM table_name_14 WHERE tyre = "b" AND engine_β = "ferrari 050 ferrari 051" AND driver = "rubens barrichello" |
24,233 | <question>: What is the rank of the rider with time of 1:41.40.55? <context>: CREATE TABLE table_name_24 (rank INTEGER, time VARCHAR) | SELECT SUM(rank) FROM table_name_24 WHERE time = "1:41.40.55" |
24,234 | <question>: What is the time of the rider with a 398cc yamaha? <context>: CREATE TABLE table_name_85 (time VARCHAR, team VARCHAR) | SELECT time FROM table_name_85 WHERE team = "398cc yamaha" |
24,235 | <question>: What is the time of the rider ranked 6? <context>: CREATE TABLE table_name_76 (time VARCHAR, rank VARCHAR) | SELECT time FROM table_name_76 WHERE rank = 6 |
24,236 | <question>: Who is the rider with a 399cc Kawasaki? <context>: CREATE TABLE table_name_94 (rider VARCHAR, team VARCHAR) | SELECT rider FROM table_name_94 WHERE team = "399cc kawasaki" |
24,237 | <question>: Where did Tyler Haws, 2009 Utah Mr. Basketball, go to high school? <context>: CREATE TABLE table_name_89 (high_school VARCHAR, utah_mr_basketball VARCHAR, year VARCHAR) | SELECT high_school FROM table_name_89 WHERE utah_mr_basketball = "tyler haws" AND year = 2009 |
24,238 | <question>: How much have players earned with 14 wins ranked below 3? <context>: CREATE TABLE table_name_5 (earnings__ VARCHAR, wins VARCHAR, rank VARCHAR) | SELECT COUNT(earnings__) AS $__ FROM table_name_5 WHERE wins = 14 AND rank > 3 |
24,239 | <question>: Who built the car that ran out of fuel before 28 laps? <context>: CREATE TABLE table_name_47 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR) | SELECT constructor FROM table_name_47 WHERE laps < 28 AND time_retired = "out of fuel" |
24,240 | <question>: What is the high lap total for cards with a grid larger than 21, and a Time/Retired of +2 laps? <context>: CREATE TABLE table_name_91 (laps INTEGER, grid VARCHAR, time_retired VARCHAR) | SELECT MAX(laps) FROM table_name_91 WHERE grid > 21 AND time_retired = "+2 laps" |
24,241 | <question>: Which SECR numbers have a class of b1? <context>: CREATE TABLE table_name_36 (secr_numbers VARCHAR, class VARCHAR) | SELECT secr_numbers FROM table_name_36 WHERE class = "b1" |
24,242 | <question>: Which class was made in 1880? <context>: CREATE TABLE table_name_34 (class VARCHAR, year_made VARCHAR) | SELECT class FROM table_name_34 WHERE year_made = "1880" |
24,243 | <question>: What is the date of the game when attendance is more than 20,682? <context>: CREATE TABLE table_name_59 (date VARCHAR, attendance INTEGER) | SELECT date FROM table_name_59 WHERE attendance > 20 OFFSET 682 |
24,244 | <question>: Which home team played the Away team from Richmond? <context>: CREATE TABLE table_name_29 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_29 WHERE away_team = "richmond" |
24,245 | <question>: What was the home teams score while playing the away team of south melbourne? <context>: CREATE TABLE table_name_73 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_73 WHERE away_team = "south melbourne" |
24,246 | <question>: What was the score of the away team while playing at the arden street oval? <context>: CREATE TABLE table_name_53 (away_team VARCHAR, venue VARCHAR) | SELECT away_team AS score FROM table_name_53 WHERE venue = "arden street oval" |
24,247 | <question>: What are the rounds for the B tyres and Ferrari 053 engine +? <context>: CREATE TABLE table_name_50 (rounds VARCHAR, tyre VARCHAR, engine_β VARCHAR) | SELECT rounds FROM table_name_50 WHERE tyre = "b" AND engine_β = "ferrari 053" |
24,248 | <question>: What kind of chassis does Ricardo Zonta have? <context>: CREATE TABLE table_name_30 (chassis VARCHAR, driver VARCHAR) | SELECT chassis FROM table_name_30 WHERE driver = "ricardo zonta" |
24,249 | <question>: What kind of free practice is there with a Ford RS2 engine +? <context>: CREATE TABLE table_name_8 (free_practice_driver_s_ VARCHAR, engine_β VARCHAR) | SELECT free_practice_driver_s_ FROM table_name_8 WHERE engine_β = "ford rs2" |
24,250 | <question>: What is the total number of matches with a loss less than 5 in the 2008/2009 season and has a draw larger than 9? <context>: CREATE TABLE table_name_53 (matches VARCHAR, draw VARCHAR, lost VARCHAR, season VARCHAR) | SELECT COUNT(matches) FROM table_name_53 WHERE lost < 5 AND season = "2008/2009" AND draw > 9 |
24,251 | <question>: What competition has a score greater than 30, a draw less than 5, and a loss larger than 10? <context>: CREATE TABLE table_name_88 (competition VARCHAR, lost VARCHAR, points VARCHAR, draw VARCHAR) | SELECT competition FROM table_name_88 WHERE points > 30 AND draw < 5 AND lost > 10 |
24,252 | <question>: What is the sum of the losses that a match score larger than 26, a points score of 62, and a draw greater than 5? <context>: CREATE TABLE table_name_6 (lost INTEGER, draw VARCHAR, matches VARCHAR, points VARCHAR) | SELECT SUM(lost) FROM table_name_6 WHERE matches > 26 AND points = 62 AND draw > 5 |
24,253 | <question>: What is the record for the game on January 19? <context>: CREATE TABLE table_name_92 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_92 WHERE date = "january 19" |
24,254 | <question>: What is the score of the game on January 12? <context>: CREATE TABLE table_name_46 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_46 WHERE date = "january 12" |
24,255 | <question>: Who was the home team when the vistor team was the Montreal Canadiens on February 12? <context>: CREATE TABLE table_name_60 (home VARCHAR, visitor VARCHAR, date VARCHAR) | SELECT home FROM table_name_60 WHERE visitor = "montreal canadiens" AND date = "february 12" |
24,256 | <question>: Tell me the city of license with frequency of Mhz of 90.3 fm <context>: CREATE TABLE table_name_26 (city_of_license VARCHAR, frequency_mhz VARCHAR) | SELECT city_of_license FROM table_name_26 WHERE frequency_mhz = "90.3 fm" |
24,257 | <question>: Name the call sign for ERP W of 4 <context>: CREATE TABLE table_name_20 (call_sign VARCHAR, erp_w VARCHAR) | SELECT call_sign FROM table_name_20 WHERE erp_w = 4 |
24,258 | <question>: Name the frequence MHz for ERP W of 55 <context>: CREATE TABLE table_name_80 (frequency_mhz VARCHAR, erp_w VARCHAR) | SELECT frequency_mhz FROM table_name_80 WHERE erp_w = 55 |
24,259 | <question>: Name the FCC info for call sign of w279at <context>: CREATE TABLE table_name_17 (fcc_info VARCHAR, call_sign VARCHAR) | SELECT fcc_info FROM table_name_17 WHERE call_sign = "w279at" |
24,260 | <question>: Name the call sign for ERP W of 27 <context>: CREATE TABLE table_name_65 (call_sign VARCHAR, erp_w VARCHAR) | SELECT call_sign FROM table_name_65 WHERE erp_w = 27 |
24,261 | <question>: What was the date of the game that had a score of 3 β 1? <context>: CREATE TABLE table_name_60 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_60 WHERE score = "3 β 1" |
24,262 | <question>: What was the score of the game when the Boston Bruins were the visiting team? <context>: CREATE TABLE table_name_75 (score VARCHAR, visitor VARCHAR) | SELECT score FROM table_name_75 WHERE visitor = "boston bruins" |
24,263 | <question>: What was the score with a 16β14β6 record? <context>: CREATE TABLE table_name_37 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_37 WHERE record = "16β14β6" |
24,264 | <question>: What was the SECR number of the item made in 1861? <context>: CREATE TABLE table_name_31 (secr_numbers VARCHAR, year_made VARCHAR) | SELECT secr_numbers FROM table_name_31 WHERE year_made = "1861" |
24,265 | <question>: Name the venue with a home team of geelong <context>: CREATE TABLE table_name_72 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_72 WHERE home_team = "geelong" |
24,266 | <question>: When the Venue was Punt Road Oval, who was the Home Team? <context>: CREATE TABLE table_name_47 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_47 WHERE venue = "punt road oval" |
24,267 | <question>: When Melbourne was the Away team, what was their score? <context>: CREATE TABLE table_name_75 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_75 WHERE away_team = "melbourne" |
24,268 | <question>: Who is driver of the d6 chassis? <context>: CREATE TABLE table_name_99 (driver VARCHAR, chassis VARCHAR) | SELECT driver FROM table_name_99 WHERE chassis = "d6" |
24,269 | <question>: Who is the constructor for driver Niki Lauda and a chassis of mp4/1c? <context>: CREATE TABLE table_name_91 (constructor VARCHAR, chassis VARCHAR, driver VARCHAR) | SELECT constructor FROM table_name_91 WHERE chassis = "mp4/1c" AND driver = "niki lauda" |
24,270 | <question>: Who is the Constructor for driver Piercarlo Ghinzani and a Ford cosworth dfv 3.0 v8 engine? <context>: CREATE TABLE table_name_42 (constructor VARCHAR, driver VARCHAR, engine VARCHAR) | SELECT constructor FROM table_name_42 WHERE driver = "piercarlo ghinzani" AND engine = "ford cosworth dfv 3.0 v8" |
24,271 | <question>: When Jean Alesi had laps less than 24, what was his highest grid? <context>: CREATE TABLE table_name_75 (grid INTEGER, driver VARCHAR, laps VARCHAR) | SELECT MAX(grid) FROM table_name_75 WHERE driver = "jean alesi" AND laps < 24 |
24,272 | <question>: How many laps did Ricardo Zonta drive with a grid less than 14? <context>: CREATE TABLE table_name_15 (laps INTEGER, grid VARCHAR, driver VARCHAR) | SELECT SUM(laps) FROM table_name_15 WHERE grid < 14 AND driver = "ricardo zonta" |
24,273 | <question>: What was Alexander Wurz's highest grid with laps of less than 25? <context>: CREATE TABLE table_name_75 (grid INTEGER, driver VARCHAR, laps VARCHAR) | SELECT MAX(grid) FROM table_name_75 WHERE driver = "alexander wurz" AND laps < 25 |
24,274 | <question>: How many years have a Title of Magia Nuda? <context>: CREATE TABLE table_name_78 (year VARCHAR, title VARCHAR) | SELECT COUNT(year) FROM table_name_78 WHERE title = "magia nuda" |
24,275 | <question>: What is the country that has a music writer of Angelo Francesco Lavagnino, written in 1969? <context>: CREATE TABLE table_name_57 (country VARCHAR, music VARCHAR, year VARCHAR) | SELECT country FROM table_name_57 WHERE music = "angelo francesco lavagnino" AND year = 1969 |
24,276 | <question>: Which music has the notes of AKA Africa Uncensored? <context>: CREATE TABLE table_name_61 (music VARCHAR, notes VARCHAR) | SELECT music FROM table_name_61 WHERE notes = "aka africa uncensored" |
24,277 | <question>: What is Pegasus' right ascension with a 7318a NGC? <context>: CREATE TABLE table_name_67 (right_ascension___j2000__ VARCHAR, constellation VARCHAR, ngc_number VARCHAR) | SELECT right_ascension___j2000__ FROM table_name_67 WHERE constellation = "pegasus" AND ngc_number = "7318a" |
24,278 | <question>: What is the declination of the spiral galaxy Pegasus with 7337 NGC <context>: CREATE TABLE table_name_89 (declination___j2000__ VARCHAR, ngc_number VARCHAR, object_type VARCHAR, constellation VARCHAR) | SELECT declination___j2000__ FROM table_name_89 WHERE object_type = "spiral galaxy" AND constellation = "pegasus" AND ngc_number = "7337" |
24,279 | <question>: What is the right ascension of Pegasus with a 7343 NGC? <context>: CREATE TABLE table_name_57 (right_ascension___j2000__ VARCHAR, constellation VARCHAR, ngc_number VARCHAR) | SELECT right_ascension___j2000__ FROM table_name_57 WHERE constellation = "pegasus" AND ngc_number = "7343" |
24,280 | <question>: What was the score on October 13? <context>: CREATE TABLE table_name_94 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_94 WHERE date = "october 13" |
24,281 | <question>: Which team won when the visitor was Carolina? <context>: CREATE TABLE table_name_56 (decision VARCHAR, visitor VARCHAR) | SELECT decision FROM table_name_56 WHERE visitor = "carolina" |
24,282 | <question>: What was the score on October 31? <context>: CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_93 WHERE date = "october 31" |
24,283 | <question>: Which team was home on October 13? <context>: CREATE TABLE table_name_26 (home VARCHAR, date VARCHAR) | SELECT home FROM table_name_26 WHERE date = "october 13" |
24,284 | <question>: What is the home city for angelo massimino stadium? <context>: CREATE TABLE table_name_7 (home_city VARCHAR, stadium VARCHAR) | SELECT home_city FROM table_name_7 WHERE stadium = "angelo massimino" |
24,285 | <question>: What is the H/A for 20 february 2007? <context>: CREATE TABLE table_name_54 (h___a VARCHAR, date VARCHAR) | SELECT h___a FROM table_name_54 WHERE date = "20 february 2007" |
24,286 | <question>: How many people attended on 2 may 2007? <context>: CREATE TABLE table_name_14 (attendance INTEGER, date VARCHAR) | SELECT SUM(attendance) FROM table_name_14 WHERE date = "2 may 2007" |
24,287 | <question>: Which date has roma as opponent and a H/A of A? <context>: CREATE TABLE table_name_46 (date VARCHAR, opponents VARCHAR, h___a VARCHAR) | SELECT date FROM table_name_46 WHERE opponents = "roma" AND h___a = "a" |
24,288 | <question>: Which round happened on 10 april 2007? <context>: CREATE TABLE table_name_41 (round VARCHAR, date VARCHAR) | SELECT round FROM table_name_41 WHERE date = "10 april 2007" |
24,289 | <question>: Who was home at Princes Park? <context>: CREATE TABLE table_name_55 (home_team VARCHAR, venue VARCHAR) | SELECT home_team AS score FROM table_name_55 WHERE venue = "princes park" |
24,290 | <question>: What was the away team's score at Princes Park? <context>: CREATE TABLE table_name_38 (away_team VARCHAR, venue VARCHAR) | SELECT away_team AS score FROM table_name_38 WHERE venue = "princes park" |
24,291 | <question>: When was the game played at Lake Oval? <context>: CREATE TABLE table_name_56 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_56 WHERE venue = "lake oval" |
24,292 | <question>: What was the away team when the game was at Princes Park? <context>: CREATE TABLE table_name_12 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_12 WHERE venue = "princes park" |
24,293 | <question>: What is the smallest place number when the total is 16 and average is less than 16? <context>: CREATE TABLE table_name_52 (place INTEGER, total VARCHAR, average VARCHAR) | SELECT MIN(place) FROM table_name_52 WHERE total = 16 AND average < 16 |
24,294 | <question>: What is the average when the rank by average is more than 12? <context>: CREATE TABLE table_name_88 (average INTEGER, rank_by_average INTEGER) | SELECT SUM(average) FROM table_name_88 WHERE rank_by_average > 12 |
24,295 | <question>: What is the average place for a couple with the rank by average of 9 and total smaller than 83? <context>: CREATE TABLE table_name_91 (place INTEGER, rank_by_average VARCHAR, total VARCHAR) | SELECT AVG(place) FROM table_name_91 WHERE rank_by_average = 9 AND total < 83 |
24,296 | <question>: What is the rank by average where the total was larger than 245 and the average was 27.1 with fewer than 15 dances? <context>: CREATE TABLE table_name_43 (rank_by_average INTEGER, number_of_dances VARCHAR, total VARCHAR, average VARCHAR) | SELECT AVG(rank_by_average) FROM table_name_43 WHERE total > 245 AND average = 27.1 AND number_of_dances < 15 |
24,297 | <question>: Which stadium was used for the North East Stars club? <context>: CREATE TABLE table_name_3 (stadium VARCHAR, club VARCHAR) | SELECT stadium FROM table_name_3 WHERE club = "north east stars" |
24,298 | <question>: What was the total number of Top Division Titles where the year founded was prior to 1975 and the location was in Chaguaramas? <context>: CREATE TABLE table_name_90 (top_division_titles INTEGER, founded VARCHAR, location VARCHAR) | SELECT SUM(top_division_titles) FROM table_name_90 WHERE founded < 1975 AND location = "chaguaramas" |
24,299 | <question>: What was the higest attendance on November 9, 1958? <context>: CREATE TABLE table_name_4 (attendance INTEGER, date VARCHAR) | SELECT MAX(attendance) FROM table_name_4 WHERE date = "november 9, 1958" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.