context
stringlengths
0
489
instruction
stringlengths
16
244
response
stringlengths
38
557
CREATE TABLE table_name_81 (nominee VARCHAR, category VARCHAR, award VARCHAR, result VARCHAR)
Which nominee won the Drama Desk Award for outstanding choreography?
SELECT nominee FROM table_name_81 WHERE award = "drama desk award" AND result = "won" AND category = "outstanding choreography"
CREATE TABLE table_name_90 (result VARCHAR, week VARCHAR, opponent VARCHAR)
I want the result for week larger than 10 for opponent of new england patriots
SELECT result FROM table_name_90 WHERE week > 10 AND opponent = "new england patriots"
CREATE TABLE table_11916083_1 (issue_price__proof_ VARCHAR, issue_price__bu_ VARCHAR, _clarification_needed_ VARCHAR)
What is the issue price (proof) where the issue price (bu) is 34.95?
SELECT issue_price__proof_ FROM table_11916083_1 WHERE issue_price__bu_[_clarification_needed_] = "34.95"
CREATE TABLE table_name_27 (registrations VARCHAR, type VARCHAR, station_number VARCHAR)
What is the registration of the station with a retained type and a station number of c03?
SELECT registrations FROM table_name_27 WHERE type = "retained" AND station_number = "c03"
CREATE TABLE table_11916083_1 (mintage__bu_ VARCHAR, _clarification_needed_ VARCHAR, artist VARCHAR, issue_price__proof_ VARCHAR)
What is the mintage (bu) with the artist Royal Canadian Mint Staff and has an issue price (proof) of $54.95?
SELECT mintage__bu_[_clarification_needed_] FROM table_11916083_1 WHERE artist = "Royal Canadian Mint Staff" AND issue_price__proof_ = "$54.95"
CREATE TABLE table_name_76 (away_team VARCHAR, venue VARCHAR)
What did the away team score at VFL Park?
SELECT away_team AS score FROM table_name_76 WHERE venue = "vfl park"
CREATE TABLE table_11951237_3 (title VARCHAR, original_air_date VARCHAR)
What is the title of the episode with the original air date of february 6, 1997?
SELECT title FROM table_11951237_3 WHERE original_air_date = "February 6, 1997"
CREATE TABLE table_name_56 (lifespan VARCHAR, imperial VARCHAR, nationality VARCHAR)
what is the lifespan when the imperial height is 7ft 8 in and the nationality is fiji?
SELECT lifespan FROM table_name_56 WHERE imperial = "7ft 8 in" AND nationality = "fiji"
CREATE TABLE table_name_83 (grid INTEGER, laps VARCHAR, time_retired VARCHAR, driver VARCHAR)
What is the grid total that had a retired for engine, teo fabi driving, and under 39 laps?
SELECT SUM(grid) FROM table_name_83 WHERE time_retired = "engine" AND driver = "teo fabi" AND laps < 39
CREATE TABLE table_name_26 (grid INTEGER, driver VARCHAR, laps VARCHAR)
What is the average grid for johnny dumfries with less than 8 laps?
SELECT AVG(grid) FROM table_name_26 WHERE driver = "johnny dumfries" AND laps < 8
How many 5K wins did Emily Chebet, who had more than 2 total, have?
SELECT COUNT(*) AS '5k wins' FROM table_name_80 WHERE runner = "emily chebet" AND total > 2
CREATE TABLE table_name_95 (peak_lessons_taught INTEGER, evaluation_average__before_april_2009_ VARCHAR)
What is the largest number of Peak lessons taught when the Evaluation average (Before April 2009) was 4.4?
SELECT MAX(peak_lessons_taught) FROM table_name_95 WHERE evaluation_average__before_april_2009_ = "4.4"
CREATE TABLE table_name_23 (evaluation_average__before_april_2009_ VARCHAR, peak_lessons_taught VARCHAR, _percentage_of_negative_evaluations VARCHAR)
What is the mean Evaluation number (before April 2009) when the Peak lessons taught was less than 80 and the negative percentage of evaluations was 0.8%?
SELECT evaluation_average__before_april_2009_ FROM table_name_23 WHERE peak_lessons_taught < 80 AND _percentage_of_negative_evaluations = "0.8%"
CREATE TABLE table_name_41 (evaluation_average__before_april_2009_ VARCHAR, _percentage_of_negative_evaluations VARCHAR, evaluation_average__from_april_2009_ VARCHAR)
What is the mean Evaluation number (Before April 2009) when the percentage of negative evaluations was 0.8% and the mean Evaluation number of April 2009 was 4.2?
SELECT evaluation_average__before_april_2009_ FROM table_name_41 WHERE _percentage_of_negative_evaluations = "0.8%" AND evaluation_average__from_april_2009_ = "4.2"
CREATE TABLE table_11960610_10 (game INTEGER, team VARCHAR)
What is San Antonio game number?
SELECT MAX(game) FROM table_11960610_10 WHERE team = "San Antonio"
CREATE TABLE table_11960610_10 (high_assists VARCHAR, high_points VARCHAR)
When gordon (27) had high points, what was the number of high assists?
SELECT COUNT(high_assists) FROM table_11960610_10 WHERE high_points = "Gordon (27)"
CREATE TABLE table_name_69 (date_commissioned INTEGER, gross_tonnage VARCHAR, material VARCHAR, ship VARCHAR)
Tell me the lowest date commissioned for iron rmsrhone and gross tonnage less than 2,738
SELECT MIN(date_commissioned) FROM table_name_69 WHERE material = "iron" AND ship = "rmsrhone" AND gross_tonnage < 2 OFFSET 738
CREATE TABLE table_name_21 (constructor VARCHAR, time_retired VARCHAR)
What Constructor has a +1.027 Time/Retired?
SELECT constructor FROM table_name_21 WHERE time_retired = "+1.027"
CREATE TABLE table_11960944_4 (high_points VARCHAR, high_rebounds VARCHAR, high_assists VARCHAR)
how many times was the high rebounds by Mcdyess (9) and the high assists was by Billups (10)?
SELECT COUNT(high_points) FROM table_11960944_4 WHERE high_rebounds = "McDyess (9)" AND high_assists = "Billups (10)"
CREATE TABLE table_name_86 (driver VARCHAR, time_retired VARCHAR)
What Driver has a +1.027 Time/Retired?
SELECT driver FROM table_name_86 WHERE time_retired = "+1.027"
CREATE TABLE table_name_84 (competition VARCHAR, venue VARCHAR)
What competition was played at Shay Stadium?
SELECT competition FROM table_name_84 WHERE venue = "shay stadium"
CREATE TABLE table_11961582_4 (game VARCHAR, high_assists VARCHAR)
What was the total number of games where A. Johnson (6) gave the most high assists?
SELECT COUNT(game) FROM table_11961582_4 WHERE high_assists = "A. Johnson (6)"
CREATE TABLE table_name_89 (away_team VARCHAR, venue VARCHAR)
Who was the away team at Brunswick Street Oval?
SELECT away_team AS score FROM table_name_89 WHERE venue = "brunswick street oval"
CREATE TABLE table_name_62 (prom__m_ INTEGER, height__m_ VARCHAR, class VARCHAR, peak VARCHAR)
Tell me the lowest prom for class of hewitt and peak of cushat law and height more than 615
SELECT MIN(prom__m_) FROM table_name_62 WHERE class = "hewitt" AND peak = "cushat law" AND height__m_ > 615
CREATE TABLE table_11964047_6 (leading_scorer VARCHAR, _number VARCHAR)
Who was the leading scorer in Game #26?
SELECT leading_scorer FROM table_11964047_6 WHERE _number = 26
CREATE TABLE table_name_45 (percentage_democrats VARCHAR, democratic_seat_plurality VARCHAR, democratic__republican VARCHAR)
What is the percentage democrats with democratic plurality of -3, and 2/5 democrat/republican?
SELECT percentage_democrats FROM table_name_45 WHERE democratic_seat_plurality = "-3" AND democratic__republican = "2/5"
CREATE TABLE table_11964154_7 (score VARCHAR, high_assists VARCHAR, date VARCHAR)
How many times was the high assists earl watson (5) and the date of the game was december 2?
SELECT COUNT(score) FROM table_11964154_7 WHERE high_assists = "Earl Watson (5)" AND date = "December 2"
CREATE TABLE table_11964154_9 (record VARCHAR, location_attendance VARCHAR)
what's the record where location attendance is keyarena 13,627
SELECT record FROM table_11964154_9 WHERE location_attendance = "KeyArena 13,627"
CREATE TABLE table_name_5 (matches INTEGER, average VARCHAR, goals VARCHAR, team VARCHAR)
For players with fewer than 41 goals for CA Osasuna and averages under 1.06, what is the average number of matches?
SELECT AVG(matches) FROM table_name_5 WHERE goals < 41 AND team = "ca osasuna" AND average < 1.06
CREATE TABLE table_name_79 (goals INTEGER, average VARCHAR, matches VARCHAR)
For averages of 1.58 and matches under 38, what is the average number of goals?
SELECT AVG(goals) FROM table_name_79 WHERE average = 1.58 AND matches < 38
CREATE TABLE table_11964263_13 (high_points VARCHAR, location_attendance VARCHAR)
Name the high points for toyota center 18,269?
SELECT high_points FROM table_11964263_13 WHERE location_attendance = "Toyota Center 18,269"
CREATE TABLE table_12002388_1 (division VARCHAR, reg_season VARCHAR)
How many teams placed 4th in the regular season?
SELECT COUNT(division) FROM table_12002388_1 WHERE reg_season = "4th"
CREATE TABLE table_12002388_1 (playoffs VARCHAR, league VARCHAR, year VARCHAR)
What was the playoff result for theteam in the apsl in 1992?
SELECT playoffs FROM table_12002388_1 WHERE league = "APSL" AND year = 1992
CREATE TABLE table_name_36 (competition VARCHAR, venue VARCHAR, result VARCHAR)
Which Competition has a Venue of Seoul, and Result of 4-1?
SELECT competition FROM table_name_36 WHERE venue = "seoul" AND result = "4-1"
CREATE TABLE table_12001616_4 (laps VARCHAR, entrant VARCHAR)
What is the laops of marcis auto racing?
SELECT laps FROM table_12001616_4 WHERE entrant = "Marcis Auto Racing"
CREATE TABLE table_name_14 (result VARCHAR, competition VARCHAR, date VARCHAR)
What's the Result for the Competition of 1994 FIFA World Cup Qualification, with the Date of May 15, 1993?
SELECT result FROM table_name_14 WHERE competition = "1994 fifa world cup qualification" AND date = "may 15, 1993"
CREATE TABLE table_name_12 (general_classification VARCHAR, stage VARCHAR, mountains_classification VARCHAR, trofeo_fast_team VARCHAR, points_classification VARCHAR)
Who had the general classification when the trofeo fast team was Mapei-Bricobi, the points classification went to Mariano Piccoli and the mountains classification went to Marco Pantani in stage 22?
SELECT general_classification FROM table_name_12 WHERE trofeo_fast_team = "mapei-bricobi" AND points_classification = "mariano piccoli" AND mountains_classification = "marco pantani" AND stage = "22"
CREATE TABLE table_name_28 (first_elected VARCHAR, party VARCHAR, member VARCHAR)
Which first election for the labor party is James Sharpe a part of?
SELECT first_elected FROM table_name_28 WHERE party = "labor" AND member = "james sharpe"
CREATE TABLE table_name_35 (away_team VARCHAR, home_team VARCHAR)
Who was the away team when Melbourne was the home team?
SELECT away_team FROM table_name_35 WHERE home_team = "melbourne"
CREATE TABLE table_name_29 (bronze VARCHAR, rank VARCHAR, total VARCHAR, gold VARCHAR, silver VARCHAR)
How many bronze medals for the nation with fewer than 3 gold, 1 silver and rank of 3?
SELECT COUNT(bronze) FROM table_name_29 WHERE gold < 3 AND silver = 1 AND total < 3 AND rank = 3
CREATE TABLE table_12113818_1 (academic_ VARCHAR, _university_affairs VARCHAR, human_resources_ VARCHAR, _operations VARCHAR)
Who is the academic & University affairs when the Human resources & operations is N. Charles Hamilton?
SELECT academic_ & _university_affairs FROM table_12113818_1 WHERE human_resources_ & _operations = "N. Charles Hamilton"
CREATE TABLE table_12113888_1 (number VARCHAR, rebuilt VARCHAR, scrapped_sold VARCHAR)
How many times does the rebuilt data contain cannot handle non-empty timestamp argument! 1929 and scrapped data contain cannot handle non-empty timestamp argument! 1954?
SELECT COUNT(number) FROM table_12113888_1 WHERE rebuilt = "Cannot handle non-empty timestamp argument! 1929" AND scrapped_sold = "Cannot handle non-empty timestamp argument! 1954"
CREATE TABLE table_name_4 (reported_isn INTEGER, on_july_2007_press_release VARCHAR, citizenship VARCHAR)
Name the average reported isn for july 2007 for kuwait release of no
SELECT AVG(reported_isn) FROM table_name_4 WHERE on_july_2007_press_release = "no" AND citizenship = "kuwait"
CREATE TABLE table_12134383_1 (end_of_term VARCHAR, age_at_inauguration VARCHAR)
how many end of term with age at inauguration being 64-066 64years, 66days
SELECT COUNT(end_of_term) FROM table_12134383_1 WHERE age_at_inauguration = "64-066 64years, 66days"
CREATE TABLE table_name_41 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR, laps VARCHAR)
Tell me the driver for grid less than 19 and Laps more than 59 with time/retired of +0.294
SELECT driver FROM table_name_41 WHERE grid < 19 AND laps > 59 AND time_retired = "+0.294"
CREATE TABLE table_1213511_5 (college_junior_club_team VARCHAR, player VARCHAR)
where is team player mike mcniven played for?
SELECT college_junior_club_team FROM table_1213511_5 WHERE player = "Mike McNiven"
CREATE TABLE table_1213511_3 (nhl_team VARCHAR, player VARCHAR)
How many teams did Bob Peppler play for?
SELECT COUNT(nhl_team) FROM table_1213511_3 WHERE player = "Bob Peppler"
CREATE TABLE table_name_56 (most_recent VARCHAR, height__m_ VARCHAR, first_time_as_hc_climb VARCHAR)
What was the most recent year a height of 2770 m and a HC climb before 1992 was climbed?
SELECT COUNT(most_recent) FROM table_name_56 WHERE height__m_ = "2770" AND first_time_as_hc_climb < 1992
CREATE TABLE table_name_23 (first_time_as_hc_climb VARCHAR, height__m_ VARCHAR, most_recent VARCHAR, no_of_times_visited VARCHAR, no_of_hc_climbs VARCHAR)
When was the first HC climb before 2013 with more than 3 times visited, more than 4 HC climbs, and a height of 1669?
SELECT first_time_as_hc_climb FROM table_name_23 WHERE no_of_times_visited > 3 AND no_of_hc_climbs = 4 AND most_recent < 2013 AND height__m_ = "1669"
CREATE TABLE table_1213511_7 (college_junior_club_team VARCHAR, nationality VARCHAR, nhl_team VARCHAR)
Which college/junior/club teams nationality is canada and nhl team is minnesota north stars
SELECT college_junior_club_team FROM table_1213511_7 WHERE nationality = "Canada" AND nhl_team = "Minnesota North Stars"
CREATE TABLE table_name_30 (pick__number VARCHAR, reg_gp VARCHAR, pl_gp VARCHAR)
How many picks had a Reg GP that was over 906, when the Pl GP was bigger than 99?
SELECT COUNT(pick__number) FROM table_name_30 WHERE reg_gp > 906 AND pl_gp > 99
CREATE TABLE table_name_12 (crowd VARCHAR, date VARCHAR, away_team VARCHAR)
What was the attendence of the game on 26 April 1948 and an away team of Hawthorn?
SELECT crowd FROM table_name_12 WHERE date = "26 april 1948" AND away_team = "hawthorn"
CREATE TABLE table_name_46 (constructor VARCHAR, winning_driver VARCHAR, race VARCHAR)
What was the constructor when Jack Brabham was the driver at the Monaco Grand Prix?
SELECT constructor FROM table_name_46 WHERE winning_driver = "jack brabham" AND race = "monaco grand prix"
CREATE TABLE table_name_21 (date VARCHAR, pole_position VARCHAR)
What date was Joakim Bonnier in the pole position?
SELECT date FROM table_name_21 WHERE pole_position = "joakim bonnier"
CREATE TABLE table_12165999_1 (position VARCHAR, college VARCHAR)
What position does Syracuse's player have?
SELECT position FROM table_12165999_1 WHERE college = "Syracuse"
CREATE TABLE table_name_88 (nominee VARCHAR, category VARCHAR)
Which Nominee has a Category of outstanding musical?
SELECT nominee FROM table_name_88 WHERE category = "outstanding musical"
CREATE TABLE table_12171145_1 (mens_doubles VARCHAR, mens_singles VARCHAR)
Who is themens doubles when the mens singles is flemming delfs?
SELECT mens_doubles FROM table_12171145_1 WHERE mens_singles = "Flemming Delfs"
CREATE TABLE table_name_37 (engine VARCHAR, driver VARCHAR, entrant VARCHAR)
what was the engine when ken downing drove an entrant from connaught engineering?
SELECT engine FROM table_name_37 WHERE driver = "ken downing" AND entrant = "connaught engineering"
CREATE TABLE table_12221135_3 (arrival VARCHAR, operator VARCHAR, calling_at VARCHAR)
How many trains call at Castor, Overton, Peterborough East and are operated by LNWR?
SELECT COUNT(arrival) FROM table_12221135_3 WHERE operator = "LNWR" AND calling_at = "Castor, Overton, Peterborough East"
CREATE TABLE table_name_63 (decile INTEGER, roll VARCHAR)
Name the lelast decile for roll of 428
SELECT MIN(decile) FROM table_name_63 WHERE roll = 428
CREATE TABLE table_1221089_1 (colors VARCHAR, institution VARCHAR)
What are the the University of Richmond's school colors?
SELECT colors FROM table_1221089_1 WHERE institution = "University of Richmond"
CREATE TABLE table_name_18 (year INTEGER, crowd VARCHAR, winners VARCHAR, season_result VARCHAR)
What's the highest year than hawthorn won with a season result of preliminary finalist and a crowd smaller than 27,407?
SELECT MAX(year) FROM table_name_18 WHERE winners = "hawthorn" AND season_result = "preliminary finalist" AND crowd < 27 OFFSET 407
CREATE TABLE table_1222653_10 (central_bank VARCHAR, currency VARCHAR)
What's the name of the central bank in the country where Colombian Peso (cop) is the local currency?
SELECT central_bank FROM table_1222653_10 WHERE currency = "Colombian peso (COP)"
CREATE TABLE table_name_44 (numer_of_jamaicans_granted_british_citizenship INTEGER, year VARCHAR, registration_of_a_minor_child VARCHAR)
Tell me the sum of number of jamaicans given british citizenship for 2004 and registration of a minor child more than 640
SELECT SUM(numer_of_jamaicans_granted_british_citizenship) FROM table_name_44 WHERE year = 2004 AND registration_of_a_minor_child > 640
CREATE TABLE table_name_50 (title VARCHAR, guest_performer VARCHAR, time VARCHAR)
Which title has a Black Ice for a guest performer and a length of 5:49?
SELECT title FROM table_name_50 WHERE guest_performer = "black ice" AND time = "5:49"
CREATE TABLE table_12232843_1 (womens_doubles VARCHAR, mens_singles VARCHAR)
How many women doubles teams competed in the same year as when Jamie van Hooijdonk competed in men singles?
SELECT COUNT(womens_doubles) FROM table_12232843_1 WHERE mens_singles = "Jamie van Hooijdonk"
CREATE TABLE table_name_77 (home_team VARCHAR, away_team VARCHAR)
What was the home team's score of the game where South Melbourne is the away team?
SELECT home_team AS score FROM table_name_77 WHERE away_team = "south melbourne"
CREATE TABLE table_name_11 (venue VARCHAR, competition VARCHAR, date VARCHAR)
Which venue hosted the 2004 AFC Asian Cup qualification on November 18, 2003?
SELECT venue FROM table_name_11 WHERE competition = "2004 afc asian cup qualification" AND date = "november 18, 2003"
CREATE TABLE table_name_79 (date VARCHAR, venue VARCHAR, result VARCHAR, competition VARCHAR)
On what date did a friendly competition, hosted in Dubai, result in a draw?
SELECT date FROM table_name_79 WHERE result = "draw" AND competition = "friendly" AND venue = "dubai"
CREATE TABLE table_12261714_2 (trofeo_fast_team VARCHAR, stage VARCHAR)
What's the leader team in the Trofeo Fast Team in stage 20?
SELECT trofeo_fast_team FROM table_12261714_2 WHERE stage = "20"
CREATE TABLE table_12261714_2 (winner VARCHAR, young_rider_classification VARCHAR, stage VARCHAR)
Who's the winner in stage 1a, where the leader in the young rider classification is Francesco Casagrande?
SELECT winner FROM table_12261714_2 WHERE young_rider_classification = "Francesco Casagrande" AND stage = "1a"
CREATE TABLE table_12261806_2 (general_classification VARCHAR, stage VARCHAR)
Name the general classification of stage 15
SELECT COUNT(general_classification) FROM table_12261806_2 WHERE stage = "15"
CREATE TABLE table_name_19 (laps INTEGER, driver VARCHAR, grid VARCHAR, time_retired VARCHAR)
What was the highest lap for Luigi Piotti with more than 13 grid and a time/retired engine?
SELECT MAX(laps) FROM table_name_19 WHERE grid > 13 AND time_retired = "engine" AND driver = "luigi piotti"
CREATE TABLE table_12251936_1 (whites_as__percentage_of_pop VARCHAR, gfr_2006 VARCHAR)
How many times was the GFR 2006 equal to 53.2?
SELECT COUNT(whites_as__percentage_of_pop) FROM table_12251936_1 WHERE gfr_2006 = "53.2"
CREATE TABLE table_12266757_1 (mens_doubles VARCHAR, season VARCHAR)
How many mens doubles took place in 1970/1971?
SELECT COUNT(mens_doubles) FROM table_12266757_1 WHERE season = "1970/1971"
CREATE TABLE table_12266757_1 (womens_singles VARCHAR, mens_doubles VARCHAR)
Who was the womens singles winnerwhen the mens doubles were stefan karlsson claes nordin , bk aura gbk?
SELECT womens_singles FROM table_12266757_1 WHERE mens_doubles = "Stefan Karlsson Claes Nordin , BK Aura GBK"
CREATE TABLE table_name_85 (wins INTEGER, losses VARCHAR, division VARCHAR, reds_season VARCHAR)
How many wins were there in the 2000 season in the central division with less than 81 losses?
SELECT AVG(wins) FROM table_name_85 WHERE division = "central" AND reds_season < 2000 AND losses < 81
CREATE TABLE table_name_59 (win_percentage INTEGER, reds_season VARCHAR, gb_ VARCHAR, c_ VARCHAR)
What was the lowest percentages of wins in 1989 with a GB [c] of 17?
SELECT MIN(win_percentage) FROM table_name_59 WHERE gb_[c_] = "17" AND reds_season = 1989
CREATE TABLE table_12284476_8 (denomination VARCHAR, year VARCHAR, reverse VARCHAR)
what's the denomination with year being 2008 and reverse being football
SELECT denomination FROM table_12284476_8 WHERE year = 2008 AND reverse = "Football"
CREATE TABLE table_name_65 (gold INTEGER, nation VARCHAR, total VARCHAR)
What is the average gold medals Uzbekistan, which has less than 24 total medals, has?
SELECT AVG(gold) FROM table_name_65 WHERE nation = "uzbekistan" AND total < 24
CREATE TABLE table_name_40 (grid VARCHAR, constructor VARCHAR, laps VARCHAR)
What was the grid placement for the Maserati that completed 14 laps?
SELECT grid FROM table_name_40 WHERE constructor = "maserati" AND laps = 14
CREATE TABLE table_1231316_7 (athlete VARCHAR, location VARCHAR)
What is the athlete from Edwardsville?
SELECT athlete FROM table_1231316_7 WHERE location = "Edwardsville"
CREATE TABLE table_1231892_4 (us_air_date VARCHAR, broadcast_order VARCHAR)
What's the original air date of the episode with a broadcast order s04 e01?
SELECT us_air_date FROM table_1231892_4 WHERE broadcast_order = "S04 E01"
CREATE TABLE table_name_24 (result VARCHAR, field VARCHAR, date VARCHAR)
What is the result of the game at Bishop Kearney Field on August 2?
SELECT result FROM table_name_24 WHERE field = "bishop kearney field" AND date = "august 2"
CREATE TABLE table_name_21 (constructor VARCHAR, race VARCHAR)
Who was the Constructor at the Argentine Grand Prix?
SELECT constructor FROM table_name_21 WHERE race = "argentine grand prix"
CREATE TABLE table_name_59 (attendance INTEGER, home VARCHAR, date VARCHAR)
What was the Attendance when the Home team was Montreal, on the Date of March 24?
SELECT SUM(attendance) FROM table_name_59 WHERE home = "montreal" AND date = "march 24"
CREATE TABLE table_1233808_2 (home_or_away VARCHAR, record VARCHAR)
Is the biggest win recorded as home or away?
SELECT home_or_away FROM table_1233808_2 WHERE record = "Biggest win"
CREATE TABLE table_name_92 (Previous VARCHAR, nationality VARCHAR, points VARCHAR)
Tell me the previous rank for italy with points more than 100
SELECT Previous AS rank FROM table_name_92 WHERE nationality = "italy" AND points > 100
CREATE TABLE table_12379297_1 (coverage__transmitter_site_ VARCHAR, callsign VARCHAR, station_type VARCHAR, power__kw_ VARCHAR)
What is the coverage of relay 5kw of dyfj-tv?
SELECT coverage__transmitter_site_ FROM table_12379297_1 WHERE station_type = "Relay" AND power__kw_ = "5kW" AND callsign = "DYFJ-TV"
CREATE TABLE table_12379297_1 (ch__number VARCHAR, callsign VARCHAR)
What is the ch# of dwlj-tv?
SELECT ch__number FROM table_12379297_1 WHERE callsign = "DWLJ-TV"
CREATE TABLE table_12407546_1 (athlete__noc_ VARCHAR, swimming VARCHAR)
Who's the player with 2:05.63 (1296 pts) swimming score?
SELECT athlete__noc_ FROM table_12407546_1 WHERE swimming = "2:05.63 (1296 pts)"
CREATE TABLE table_1242447_2 (hebrew_word VARCHAR, strongs_words_compounded VARCHAR)
List the hebrew word for the strongs words compounded of 'adown [# 113] & yahu
SELECT hebrew_word FROM table_1242447_2 WHERE strongs_words_compounded = "'adown [# 113] & Yahu"
CREATE TABLE table_12441518_1 (main_cast_seasons VARCHAR, character VARCHAR)
What seasons does Nick lucas appear?
SELECT main_cast_seasons FROM table_12441518_1 WHERE character = "Nick Lucas"
CREATE TABLE table_name_24 (d_49_√ VARCHAR, d_46_√ VARCHAR)
Name the D 49 √ for when D 46 √ of i 1 @
SELECT d_49_√ FROM table_name_24 WHERE d_46_√ = "i 1 @"
CREATE TABLE table_12454156_1 (prize_money VARCHAR, runner_up VARCHAR)
What was the total prize money where John Tabatabai was the runner-up?
SELECT prize_money FROM table_12454156_1 WHERE runner_up = "John Tabatabai"
CREATE TABLE table_name_63 (circuit VARCHAR, winning_constructor VARCHAR, name VARCHAR)
Name the circuit for darracq and name of cuban race
SELECT circuit FROM table_name_63 WHERE winning_constructor = "darracq" AND name = "cuban race"
CREATE TABLE table_name_42 (record VARCHAR, home VARCHAR, date VARCHAR)
On December 4, Tampa Bay has a record of 12-13-2.
SELECT record FROM table_name_42 WHERE home = "tampa bay" AND date = "december 4"
CREATE TABLE table_name_23 (remarks VARCHAR, rank VARCHAR, alliance VARCHAR)
What are the remarks for the entry ranked greater than 2 with a skyteam (2012) alliance?
SELECT remarks FROM table_name_23 WHERE rank > 2 AND alliance = "skyteam (2012)"
CREATE TABLE table_12496904_1 (_2012 VARCHAR, population_august_15 INTEGER, population_density_2012__km_2__ VARCHAR)
What is the August 15, 2012 population when the population density of 2012 is 307?
SELECT MAX(population_august_15), _2012 FROM table_12496904_1 WHERE population_density_2012__km_2__ = 307
CREATE TABLE table_12454156_1 (prize_money VARCHAR, runner_up VARCHAR)
When Fabrizio Baldassari is the runner-up what is the total prize money?
SELECT prize_money FROM table_12454156_1 WHERE runner_up = "Fabrizio Baldassari"