Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
42,400 | <question>: What is the largest crowd for any game where Footscray is the home team? <context>: CREATE TABLE table_name_9 (crowd INTEGER, home_team VARCHAR) | SELECT MAX(crowd) FROM table_name_9 WHERE home_team = "footscray" |
42,401 | <question>: What is the maximum number of draws when the diff is smaller than 186, points are fewer than 12 and games played fewer than 6? <context>: CREATE TABLE table_name_86 (drawn INTEGER, played VARCHAR, diff VARCHAR, points VARCHAR) | SELECT MAX(drawn) FROM table_name_86 WHERE diff < 186 AND points < 12 AND played < 6 |
42,402 | <question>: What is the average diff when games played are more than 6? <context>: CREATE TABLE table_name_84 (diff INTEGER, played INTEGER) | SELECT AVG(diff) FROM table_name_84 WHERE played > 6 |
42,403 | <question>: What is the highest draws when more than 6 are played and the points against are 54? <context>: CREATE TABLE table_name_92 (drawn INTEGER, against VARCHAR, played VARCHAR) | SELECT MAX(drawn) FROM table_name_92 WHERE against = 54 AND played > 6 |
42,404 | <question>: What is the maximum number of points against when the team has more than 0 losses and plays fewer than 6 games? <context>: CREATE TABLE table_name_18 (against INTEGER, lost VARCHAR, played VARCHAR) | SELECT MAX(against) FROM table_name_18 WHERE lost > 0 AND played < 6 |
42,405 | <question>: What is the number of games played for the team with 12 points and an against smaller than 52? <context>: CREATE TABLE table_name_59 (played INTEGER, points VARCHAR, against VARCHAR) | SELECT AVG(played) FROM table_name_59 WHERE points = 12 AND against < 52 |
42,406 | <question>: What is the lowest average parish size with 47.2% of adherents and 4,936 regular attendees? <context>: CREATE TABLE table_name_25 (average_parish_size INTEGER, _percentage_of_adherents VARCHAR, regular_attendees VARCHAR) | SELECT MIN(average_parish_size) FROM table_name_25 WHERE _percentage_of_adherents = "47.2%" AND regular_attendees > 4 OFFSET 936 |
42,407 | <question>: What is the average regular number of attendees that has 79 parishes? <context>: CREATE TABLE table_name_36 (regular_attendees INTEGER, parishes VARCHAR) | SELECT AVG(regular_attendees) FROM table_name_36 WHERE parishes = 79 |
42,408 | <question>: Which Grand Prix has the Circuit of Lille? <context>: CREATE TABLE table_name_20 (name VARCHAR, circuit VARCHAR) | SELECT name FROM table_name_20 WHERE circuit = "lille" |
42,409 | <question>: Which winning driver of the Roussillon Grand Prix had an Alfa Romeo? <context>: CREATE TABLE table_name_53 (winning_driver VARCHAR, winning_constructor VARCHAR, name VARCHAR) | SELECT winning_driver FROM table_name_53 WHERE winning_constructor = "alfa romeo" AND name = "roussillon grand prix" |
42,410 | <question>: Which Constructor won the Roussillon Grand Prix? <context>: CREATE TABLE table_name_95 (winning_constructor VARCHAR, name VARCHAR) | SELECT winning_constructor FROM table_name_95 WHERE name = "roussillon grand prix" |
42,411 | <question>: Which Driver won the Circuit of Rio de Janeiro? <context>: CREATE TABLE table_name_13 (winning_driver VARCHAR, circuit VARCHAR) | SELECT winning_driver FROM table_name_13 WHERE circuit = "rio de janeiro" |
42,412 | <question>: What day did the VFL pay MCG? <context>: CREATE TABLE table_name_90 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_90 WHERE venue = "mcg" |
42,413 | <question>: What was November 4, 1973 attendance? <context>: CREATE TABLE table_name_64 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_64 WHERE date = "november 4, 1973" |
42,414 | <question>: What is the number of laps with a Constructor of renault, and a driver of jacques villeneuve? <context>: CREATE TABLE table_name_73 (laps VARCHAR, constructor VARCHAR, driver VARCHAR) | SELECT laps FROM table_name_73 WHERE constructor = "renault" AND driver = "jacques villeneuve" |
42,415 | <question>: What is the time/retired for grid 3? <context>: CREATE TABLE table_name_19 (time_retired VARCHAR, grid VARCHAR) | SELECT time_retired FROM table_name_19 WHERE grid = 3 |
42,416 | <question>: What is the time/retired for grid 8? <context>: CREATE TABLE table_name_95 (time_retired VARCHAR, grid VARCHAR) | SELECT time_retired FROM table_name_95 WHERE grid = 8 |
42,417 | <question>: What is the time/retired for a grid larger than 11, laps larger than 41, and nick heidfeld? <context>: CREATE TABLE table_name_32 (time_retired VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR) | SELECT time_retired FROM table_name_32 WHERE grid > 11 AND laps > 41 AND driver = "nick heidfeld" |
42,418 | <question>: Who was the driver with less than 53 laps, Grid larger than 17, and a Time/Retired of spin? <context>: CREATE TABLE table_name_3 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT driver FROM table_name_3 WHERE laps < 53 AND grid > 17 AND time_retired = "spin" |
42,419 | <question>: Who has won $98,860? <context>: CREATE TABLE table_name_97 (driver VARCHAR, winnings VARCHAR) | SELECT driver FROM table_name_97 WHERE winnings = "$98,860" |
42,420 | <question>: What team is travelling to play Hawthorn? <context>: CREATE TABLE table_name_17 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_17 WHERE home_team = "hawthorn" |
42,421 | <question>: What is the smallest crowd at the Victoria Park Venue? <context>: CREATE TABLE table_name_94 (crowd INTEGER, venue VARCHAR) | SELECT MIN(crowd) FROM table_name_94 WHERE venue = "victoria park" |
42,422 | <question>: What is the score given by the Home team Geelong? <context>: CREATE TABLE table_name_37 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_37 WHERE home_team = "geelong" |
42,423 | <question>: What is the largest crowd at arden street oval? <context>: CREATE TABLE table_name_87 (crowd INTEGER, venue VARCHAR) | SELECT MAX(crowd) FROM table_name_87 WHERE venue = "arden street oval" |
42,424 | <question>: What is the home side's score at western oval? <context>: CREATE TABLE table_name_23 (home_team VARCHAR, venue VARCHAR) | SELECT home_team AS score FROM table_name_23 WHERE venue = "western oval" |
42,425 | <question>: What venue is in the state of Connecticut? <context>: CREATE TABLE table_name_90 (venue VARCHAR, state VARCHAR) | SELECT venue FROM table_name_90 WHERE state = "connecticut" |
42,426 | <question>: What venue is in the city of Durham? <context>: CREATE TABLE table_name_95 (venue VARCHAR, city VARCHAR) | SELECT venue FROM table_name_95 WHERE city = "durham" |
42,427 | <question>: In what state is the Thomas Assembly Center located? <context>: CREATE TABLE table_name_5 (state VARCHAR, venue VARCHAR) | SELECT state FROM table_name_5 WHERE venue = "thomas assembly center" |
42,428 | <question>: What venue is located in Indiana and hosted at Purdue University? <context>: CREATE TABLE table_name_54 (venue VARCHAR, state VARCHAR, host VARCHAR) | SELECT venue FROM table_name_54 WHERE state = "indiana" AND host = "purdue university" |
42,429 | <question>: What city is located in Oklahoma? <context>: CREATE TABLE table_name_67 (city VARCHAR, state VARCHAR) | SELECT city FROM table_name_67 WHERE state = "oklahoma" |
42,430 | <question>: In what city is the United Spirit Arena located? <context>: CREATE TABLE table_name_20 (city VARCHAR, venue VARCHAR) | SELECT city FROM table_name_20 WHERE venue = "united spirit arena" |
42,431 | <question>: What was the result when they had their bye week? <context>: CREATE TABLE table_name_84 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_84 WHERE date = "bye" |
42,432 | <question>: What was the attendance of the Browns' September 7, 1953 game? <context>: CREATE TABLE table_name_78 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_78 WHERE date = "september 7, 1953" |
42,433 | <question>: When was the Browns' game that over 36,796 attended? <context>: CREATE TABLE table_name_74 (date VARCHAR, attendance INTEGER) | SELECT date FROM table_name_74 WHERE attendance > 36 OFFSET 796 |
42,434 | <question>: What Young rider classification has a Stage of 18? <context>: CREATE TABLE table_name_3 (young_rider_classification VARCHAR, stage VARCHAR) | SELECT young_rider_classification FROM table_name_3 WHERE stage = "18" |
42,435 | <question>: Who has a Team classification of la vie claire, a stage of 20, a General classification of greg lemond? <context>: CREATE TABLE table_name_80 (winner VARCHAR, stage VARCHAR, team_classification VARCHAR, general_classification VARCHAR) | SELECT winner FROM table_name_80 WHERE team_classification = "la vie claire" AND general_classification = "greg lemond" AND stage = "20" |
42,436 | <question>: What is the classification with a Team classification of la vie claire and a Stage of 12? <context>: CREATE TABLE table_name_62 (general_classification VARCHAR, team_classification VARCHAR, stage VARCHAR) | SELECT general_classification FROM table_name_62 WHERE team_classification = "la vie claire" AND stage = "12" |
42,437 | <question>: What is guido bontempi's general classification when he has a stage of 6? <context>: CREATE TABLE table_name_51 (general_classification VARCHAR, winner VARCHAR, stage VARCHAR) | SELECT general_classification FROM table_name_51 WHERE winner = "guido bontempi" AND stage = "6" |
42,438 | <question>: What is Ludo Peeters' team classification? <context>: CREATE TABLE table_name_74 (team_classification VARCHAR, winner VARCHAR) | SELECT team_classification FROM table_name_74 WHERE winner = "ludo peeters" |
42,439 | <question>: Which date had less than 3 goals and a result of (w) 2-0? <context>: CREATE TABLE table_name_23 (date VARCHAR, goals VARCHAR, result VARCHAR) | SELECT date FROM table_name_23 WHERE goals < 3 AND result = "(w) 2-0" |
42,440 | <question>: On what date was a match held at MCG? <context>: CREATE TABLE table_name_50 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_50 WHERE venue = "mcg" |
42,441 | <question>: When Fitzroy are the away team, what is the average crowd size? <context>: CREATE TABLE table_name_65 (crowd INTEGER, away_team VARCHAR) | SELECT AVG(crowd) FROM table_name_65 WHERE away_team = "fitzroy" |
42,442 | <question>: What is footscray's away team score? <context>: CREATE TABLE table_name_66 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_66 WHERE home_team = "footscray" |
42,443 | <question>: What is the record of Jeremija Sanders' opponent? <context>: CREATE TABLE table_name_37 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_37 WHERE opponent = "jeremija sanders" |
42,444 | <question>: What is the average number of tries that has a start larger than 32, is a player of seremaia bai that also has a conversion score larger than 47? <context>: CREATE TABLE table_name_22 (tries INTEGER, conv VARCHAR, start VARCHAR, player VARCHAR) | SELECT AVG(tries) FROM table_name_22 WHERE start > 32 AND player = "seremaia bai" AND conv > 47 |
42,445 | <question>: For the player fero lasagavibau who has the lowest start? <context>: CREATE TABLE table_name_71 (start INTEGER, player VARCHAR) | SELECT MIN(start) FROM table_name_71 WHERE player = "fero lasagavibau" |
42,446 | <question>: Who was the opponent when Raphael was 4-0? <context>: CREATE TABLE table_name_11 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_11 WHERE record = "4-0" |
42,447 | <question>: What was the average round when he had a 3-0 record? <context>: CREATE TABLE table_name_18 (round INTEGER, record VARCHAR) | SELECT AVG(round) FROM table_name_18 WHERE record = "3-0" |
42,448 | <question>: What was the location when he had a 2-0 record? <context>: CREATE TABLE table_name_41 (location VARCHAR, record VARCHAR) | SELECT location FROM table_name_41 WHERE record = "2-0" |
42,449 | <question>: What was the result when he went 1 round against jeremy beck? <context>: CREATE TABLE table_name_4 (res VARCHAR, round VARCHAR, opponent VARCHAR) | SELECT res FROM table_name_4 WHERE round = 1 AND opponent = "jeremy beck" |
42,450 | <question>: What was the result of the game in halifax? <context>: CREATE TABLE table_name_34 (result VARCHAR, city VARCHAR) | SELECT result FROM table_name_34 WHERE city = "halifax" |
42,451 | <question>: What stadium is located in Halifax? <context>: CREATE TABLE table_name_48 (stadium VARCHAR, city VARCHAR) | SELECT stadium FROM table_name_48 WHERE city = "halifax" |
42,452 | <question>: What day did they play in salford? <context>: CREATE TABLE table_name_56 (date VARCHAR, city VARCHAR) | SELECT date FROM table_name_56 WHERE city = "salford" |
42,453 | <question>: What was the earliest week the team played the chicago cardinals in front of less than 25,312? <context>: CREATE TABLE table_name_12 (week INTEGER, opponent VARCHAR, attendance VARCHAR) | SELECT MIN(week) FROM table_name_12 WHERE opponent = "chicago cardinals" AND attendance < 25 OFFSET 312 |
42,454 | <question>: What day did they play on week 4? <context>: CREATE TABLE table_name_25 (date VARCHAR, week VARCHAR) | SELECT date FROM table_name_25 WHERE week = 4 |
42,455 | <question>: What was the attendance during the week 1 match? <context>: CREATE TABLE table_name_2 (attendance VARCHAR, week VARCHAR) | SELECT attendance FROM table_name_2 WHERE week = 1 |
42,456 | <question>: During what week was the match on November 10, 1963? <context>: CREATE TABLE table_name_37 (week INTEGER, date VARCHAR) | SELECT AVG(week) FROM table_name_37 WHERE date = "november 10, 1963" |
42,457 | <question>: What was the result of the match on December 1, 1963? <context>: CREATE TABLE table_name_43 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_43 WHERE date = "december 1, 1963" |
42,458 | <question>: What day is hawthorn the away side? <context>: CREATE TABLE table_name_23 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_23 WHERE away_team = "hawthorn" |
42,459 | <question>: What is the average crowd size for games with north melbourne as the away side? <context>: CREATE TABLE table_name_22 (crowd INTEGER, away_team VARCHAR) | SELECT AVG(crowd) FROM table_name_22 WHERE away_team = "north melbourne" |
42,460 | <question>: How many forms have less than 18 pages? <context>: CREATE TABLE table_name_72 (form VARCHAR, pages INTEGER) | SELECT COUNT(form) FROM table_name_72 WHERE pages < 18 |
42,461 | <question>: What is the sum of forms with greater than 17 pages and a total of $1,801,154? <context>: CREATE TABLE table_name_70 (form INTEGER, pages VARCHAR, total_assets VARCHAR) | SELECT SUM(form) FROM table_name_70 WHERE pages > 17 AND total_assets = "$1,801,154" |
42,462 | <question>: Which venue hosted South Melbourne? <context>: CREATE TABLE table_name_50 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_50 WHERE away_team = "south melbourne" |
42,463 | <question>: What was the scored of the Away team that played against Richmond? <context>: CREATE TABLE table_name_83 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_83 WHERE home_team = "richmond" |
42,464 | <question>: What is the result week 6? <context>: CREATE TABLE table_name_44 (result VARCHAR, week VARCHAR) | SELECT result FROM table_name_44 WHERE week = 6 |
42,465 | <question>: How many goals did sture mårtensson score? <context>: CREATE TABLE table_name_98 (goals VARCHAR, name VARCHAR) | SELECT goals FROM table_name_98 WHERE name = "sture mårtensson" |
42,466 | <question>: How many goals for the player with 2 caps at degerfors if? <context>: CREATE TABLE table_name_47 (goals VARCHAR, caps VARCHAR, club VARCHAR) | SELECT goals FROM table_name_47 WHERE caps = 2 AND club = "degerfors if" |
42,467 | <question>: What catalog came out after 2000? <context>: CREATE TABLE table_name_23 (catalog VARCHAR, year INTEGER) | SELECT catalog FROM table_name_23 WHERE year > 2000 |
42,468 | <question>: What was the attendance on week 7? <context>: CREATE TABLE table_name_26 (attendance VARCHAR, week VARCHAR) | SELECT attendance FROM table_name_26 WHERE week = 7 |
42,469 | <question>: What opponent did they have a bye result against before week 14? <context>: CREATE TABLE table_name_19 (opponent VARCHAR, result VARCHAR, week VARCHAR) | SELECT opponent FROM table_name_19 WHERE result = "bye" AND week < 14 |
42,470 | <question>: Which home team has an Away team of fitzroy? <context>: CREATE TABLE table_name_73 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_73 WHERE away_team = "fitzroy" |
42,471 | <question>: What was North Melbourne's score when they were the home team? <context>: CREATE TABLE table_name_82 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_82 WHERE home_team = "north melbourne" |
42,472 | <question>: What was Richmond's score as the home team? <context>: CREATE TABLE table_name_38 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_38 WHERE home_team = "richmond" |
42,473 | <question>: Who was the opponent when Richmond played as the home team? <context>: CREATE TABLE table_name_56 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_56 WHERE home_team = "richmond" |
42,474 | <question>: What was the attendance at the Kardinia Park game? <context>: CREATE TABLE table_name_25 (crowd VARCHAR, venue VARCHAR) | SELECT crowd FROM table_name_25 WHERE venue = "kardinia park" |
42,475 | <question>: What was the score of the team North Melbourne played at Arden Street Oval? <context>: CREATE TABLE table_name_75 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_75 WHERE home_team = "north melbourne" |
42,476 | <question>: What date did the game at Arden Street Oval take place? <context>: CREATE TABLE table_name_12 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_12 WHERE venue = "arden street oval" |
42,477 | <question>: What is the date of the game with 36,766 fans? <context>: CREATE TABLE table_name_98 (date VARCHAR, crowd INTEGER) | SELECT date FROM table_name_98 WHERE crowd > 36 OFFSET 766 |
42,478 | <question>: Which higher secondary school listing has the lowest total and an Aided amount larger than 14? <context>: CREATE TABLE table_name_41 (total INTEGER, institution VARCHAR, aided VARCHAR) | SELECT MIN(total) FROM table_name_41 WHERE institution = "higher secondary school" AND aided > 14 |
42,479 | <question>: Which Institution has a Total smaller than 13, a Government amount of 1, and an Aided amount of 0? <context>: CREATE TABLE table_name_99 (institution VARCHAR, aided VARCHAR, total VARCHAR, government VARCHAR) | SELECT institution FROM table_name_99 WHERE total < 13 AND government = 1 AND aided = 0 |
42,480 | <question>: Which IATA is associated with China and an ICAO of ZSPD? <context>: CREATE TABLE table_name_59 (iata VARCHAR, country VARCHAR, icao VARCHAR) | SELECT iata FROM table_name_59 WHERE country = "china" AND icao = "zspd" |
42,481 | <question>: Which airport is associated with Macau? <context>: CREATE TABLE table_name_71 (airport VARCHAR, city VARCHAR) | SELECT airport FROM table_name_71 WHERE city = "macau" |
42,482 | <question>: What is the IATA for Nanjing? <context>: CREATE TABLE table_name_85 (iata VARCHAR, city VARCHAR) | SELECT iata FROM table_name_85 WHERE city = "nanjing" |
42,483 | <question>: Which airport has an ICAO of RCKH? <context>: CREATE TABLE table_name_81 (airport VARCHAR, icao VARCHAR) | SELECT airport FROM table_name_81 WHERE icao = "rckh" |
42,484 | <question>: Which airport has an IATA of TYN? <context>: CREATE TABLE table_name_52 (airport VARCHAR, iata VARCHAR) | SELECT airport FROM table_name_52 WHERE iata = "tyn" |
42,485 | <question>: Which country contains the Shanghai Pudong International airport? <context>: CREATE TABLE table_name_41 (country VARCHAR, airport VARCHAR) | SELECT country FROM table_name_41 WHERE airport = "shanghai pudong international airport" |
42,486 | <question>: What was Footscray's score when it played as the home team? <context>: CREATE TABLE table_name_2 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_2 WHERE home_team = "footscray" |
42,487 | <question>: hat was Hawthorn's score as the away team? <context>: CREATE TABLE table_name_83 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_83 WHERE away_team = "hawthorn" |
42,488 | <question>: What was the Outcome against Opponent in the Final Carlos Kirmayr? <context>: CREATE TABLE table_name_41 (outcome VARCHAR, opponent_in_the_final VARCHAR) | SELECT outcome FROM table_name_41 WHERE opponent_in_the_final = "carlos kirmayr" |
42,489 | <question>: What was the Score in the Final against Opponent in the Final Manuel Orantes, prior to 1978? <context>: CREATE TABLE table_name_35 (score_in_the_final VARCHAR, date VARCHAR, opponent_in_the_final VARCHAR) | SELECT score_in_the_final FROM table_name_35 WHERE date < 1978 AND opponent_in_the_final = "manuel orantes" |
42,490 | <question>: Against Opponent in the Final Ivan Lendl, on a Surface of clay, with an Outcome of runner-up, where was the Championship? <context>: CREATE TABLE table_name_89 (championship VARCHAR, opponent_in_the_final VARCHAR, outcome VARCHAR, surface VARCHAR) | SELECT championship FROM table_name_89 WHERE outcome = "runner-up" AND surface = "clay" AND opponent_in_the_final = "ivan lendl" |
42,491 | <question>: What is the earliest Date on a Surface of clay in a Championship in Linz, Austria? <context>: CREATE TABLE table_name_15 (date INTEGER, surface VARCHAR, championship VARCHAR) | SELECT MIN(date) FROM table_name_15 WHERE surface = "clay" AND championship = "linz, austria" |
42,492 | <question>: Who playes the sport of athletics? <context>: CREATE TABLE table_name_36 (sportsperson VARCHAR, sport VARCHAR) | SELECT sportsperson FROM table_name_36 WHERE sport = "athletics" |
42,493 | <question>: What team has a year listed of 2008? <context>: CREATE TABLE table_name_75 (team VARCHAR, year VARCHAR) | SELECT team FROM table_name_75 WHERE year = 2008 |
42,494 | <question>: What venue was the game played in when the away team was fitzroy? <context>: CREATE TABLE table_name_42 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_42 WHERE away_team = "fitzroy" |
42,495 | <question>: What is the film type for the movie Sanctuary? <context>: CREATE TABLE table_name_35 (type VARCHAR, name VARCHAR) | SELECT type FROM table_name_35 WHERE name = "sanctuary" |
42,496 | <question>: What different types are there with a CC License of by-nc-sa 2.5? <context>: CREATE TABLE table_name_25 (type VARCHAR, cc_license VARCHAR) | SELECT type FROM table_name_25 WHERE cc_license = "by-nc-sa 2.5" |
42,497 | <question>: What are the open source movies with planned releases in 2013? <context>: CREATE TABLE table_name_67 (open_source_movie VARCHAR, planned_release VARCHAR) | SELECT open_source_movie FROM table_name_67 WHERE planned_release = "2013" |
42,498 | <question>: What was the lowest rank by average of a couple who had an average of 23 and a total of 115? <context>: CREATE TABLE table_name_99 (rank_by_average INTEGER, average VARCHAR, total VARCHAR) | SELECT MIN(rank_by_average) FROM table_name_99 WHERE average = 23 AND total = 115 |
42,499 | <question>: What is the colonized date for Michigan? <context>: CREATE TABLE table_name_92 (colonized VARCHAR, state VARCHAR) | SELECT colonized FROM table_name_92 WHERE state = "michigan" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.