question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Which Swimming has a Total larger than 35, and a Volleyball of 1? | CREATE TABLE table_name_96 (swimming VARCHAR, total VARCHAR, volleyball VARCHAR) | SELECT swimming FROM table_name_96 WHERE total > 35 AND volleyball = "1" | ### Context: CREATE TABLE table_name_96 (swimming VARCHAR, total VARCHAR, volleyball VARCHAR) ### Question: Which Swimming has a Total larger than 35, and a Volleyball of 1? ### Answer: SELECT swimming FROM table_name_96 WHERE total > 35 AND volleyball = "1" |
Date for scotiabank place with less than 20 points, game larger than 16, and an opponent of montreal canadiens? | CREATE TABLE table_name_40 (date VARCHAR, opponent VARCHAR, game VARCHAR, location VARCHAR, points VARCHAR) | SELECT date FROM table_name_40 WHERE location = "scotiabank place" AND points < 20 AND game > 16 AND opponent = "montreal canadiens" | ### Context: CREATE TABLE table_name_40 (date VARCHAR, opponent VARCHAR, game VARCHAR, location VARCHAR, points VARCHAR) ### Question: Date for scotiabank place with less than 20 points, game larger than 16, and an opponent of montreal canadiens? ### Answer: SELECT date FROM table_name_40 WHERE location = "scotiabank place" AND points < 20 AND game > 16 AND opponent = "montreal canadiens" |
Total games for smaller than 15 points, date of november 15, and larger that 13,722 in attendance? | CREATE TABLE table_name_2 (game VARCHAR, attendance VARCHAR, points VARCHAR, date VARCHAR) | SELECT COUNT(game) FROM table_name_2 WHERE points < 15 AND date = "november 15" AND attendance > 13 OFFSET 722 | ### Context: CREATE TABLE table_name_2 (game VARCHAR, attendance VARCHAR, points VARCHAR, date VARCHAR) ### Question: Total games for smaller than 15 points, date of november 15, and larger that 13,722 in attendance? ### Answer: SELECT COUNT(game) FROM table_name_2 WHERE points < 15 AND date = "november 15" AND attendance > 13 OFFSET 722 |
What was the results on September 24, 1995? | CREATE TABLE table_name_11 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_11 WHERE date = "september 24, 1995" | ### Context: CREATE TABLE table_name_11 (result VARCHAR, date VARCHAR) ### Question: What was the results on September 24, 1995? ### Answer: SELECT result FROM table_name_11 WHERE date = "september 24, 1995" |
What was the results against the Philadelphia Eagles? | CREATE TABLE table_name_20 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_20 WHERE opponent = "philadelphia eagles" | ### Context: CREATE TABLE table_name_20 (result VARCHAR, opponent VARCHAR) ### Question: What was the results against the Philadelphia Eagles? ### Answer: SELECT result FROM table_name_20 WHERE opponent = "philadelphia eagles" |
What is the date with 68,463 in attendance? | CREATE TABLE table_name_82 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_82 WHERE attendance = "68,463" | ### Context: CREATE TABLE table_name_82 (date VARCHAR, attendance VARCHAR) ### Question: What is the date with 68,463 in attendance? ### Answer: SELECT date FROM table_name_82 WHERE attendance = "68,463" |
What was the attendance for week 15? | CREATE TABLE table_name_25 (attendance VARCHAR, week VARCHAR) | SELECT attendance FROM table_name_25 WHERE week = 15 | ### Context: CREATE TABLE table_name_25 (attendance VARCHAR, week VARCHAR) ### Question: What was the attendance for week 15? ### Answer: SELECT attendance FROM table_name_25 WHERE week = 15 |
What is the name when winter is the transfer window? | CREATE TABLE table_name_47 (name VARCHAR, transfer_window VARCHAR) | SELECT name FROM table_name_47 WHERE transfer_window = "winter" | ### Context: CREATE TABLE table_name_47 (name VARCHAR, transfer_window VARCHAR) ### Question: What is the name when winter is the transfer window? ### Answer: SELECT name FROM table_name_47 WHERE transfer_window = "winter" |
What is the transfer fee when summer is the transfer window, the type is transfer and the country is Hun? | CREATE TABLE table_name_9 (transfer_fee VARCHAR, country VARCHAR, transfer_window VARCHAR, type VARCHAR) | SELECT transfer_fee FROM table_name_9 WHERE transfer_window = "summer" AND type = "transfer" AND country = "hun" | ### Context: CREATE TABLE table_name_9 (transfer_fee VARCHAR, country VARCHAR, transfer_window VARCHAR, type VARCHAR) ### Question: What is the transfer fee when summer is the transfer window, the type is transfer and the country is Hun? ### Answer: SELECT transfer_fee FROM table_name_9 WHERE transfer_window = "summer" AND type = "transfer" AND country = "hun" |
What is the type when Rangers are the moving from? | CREATE TABLE table_name_40 (type VARCHAR, moving_from VARCHAR) | SELECT type FROM table_name_40 WHERE moving_from = "rangers" | ### Context: CREATE TABLE table_name_40 (type VARCHAR, moving_from VARCHAR) ### Question: What is the type when Rangers are the moving from? ### Answer: SELECT type FROM table_name_40 WHERE moving_from = "rangers" |
What is the type when McCormack is the name? | CREATE TABLE table_name_21 (type VARCHAR, name VARCHAR) | SELECT type FROM table_name_21 WHERE name = "mccormack" | ### Context: CREATE TABLE table_name_21 (type VARCHAR, name VARCHAR) ### Question: What is the type when McCormack is the name? ### Answer: SELECT type FROM table_name_21 WHERE name = "mccormack" |
What is the type when £120,000 is the transfer fee? | CREATE TABLE table_name_49 (type VARCHAR, transfer_fee VARCHAR) | SELECT type FROM table_name_49 WHERE transfer_fee = "£120,000" | ### Context: CREATE TABLE table_name_49 (type VARCHAR, transfer_fee VARCHAR) ### Question: What is the type when £120,000 is the transfer fee? ### Answer: SELECT type FROM table_name_49 WHERE transfer_fee = "£120,000" |
What date is aston villa away? | CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_67 WHERE away_team = "aston villa" | ### Context: CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR) ### Question: What date is aston villa away? ### Answer: SELECT date FROM table_name_67 WHERE away_team = "aston villa" |
what date did tie number 5 occur? | CREATE TABLE table_name_44 (date VARCHAR, tie_no VARCHAR) | SELECT date FROM table_name_44 WHERE tie_no = "5" | ### Context: CREATE TABLE table_name_44 (date VARCHAR, tie_no VARCHAR) ### Question: what date did tie number 5 occur? ### Answer: SELECT date FROM table_name_44 WHERE tie_no = "5" |
Which tie number has Bolton Wanderers as away? | CREATE TABLE table_name_59 (tie_no VARCHAR, away_team VARCHAR) | SELECT tie_no FROM table_name_59 WHERE away_team = "bolton wanderers" | ### Context: CREATE TABLE table_name_59 (tie_no VARCHAR, away_team VARCHAR) ### Question: Which tie number has Bolton Wanderers as away? ### Answer: SELECT tie_no FROM table_name_59 WHERE away_team = "bolton wanderers" |
What round was the circuit portland international raceway? | CREATE TABLE table_name_4 (round VARCHAR, circuit VARCHAR) | SELECT round FROM table_name_4 WHERE circuit = "portland international raceway" | ### Context: CREATE TABLE table_name_4 (round VARCHAR, circuit VARCHAR) ### Question: What round was the circuit portland international raceway? ### Answer: SELECT round FROM table_name_4 WHERE circuit = "portland international raceway" |
When was the circuit portland international raceway? | CREATE TABLE table_name_28 (date VARCHAR, circuit VARCHAR) | SELECT date FROM table_name_28 WHERE circuit = "portland international raceway" | ### Context: CREATE TABLE table_name_28 (date VARCHAR, circuit VARCHAR) ### Question: When was the circuit portland international raceway? ### Answer: SELECT date FROM table_name_28 WHERE circuit = "portland international raceway" |
Which round had a city/location of Toronto, Ontario? | CREATE TABLE table_name_81 (round VARCHAR, city_location VARCHAR) | SELECT round FROM table_name_81 WHERE city_location = "toronto, ontario" | ### Context: CREATE TABLE table_name_81 (round VARCHAR, city_location VARCHAR) ### Question: Which round had a city/location of Toronto, Ontario? ### Answer: SELECT round FROM table_name_81 WHERE city_location = "toronto, ontario" |
For which location was the round smaller than 11 and the circuit streets of denver? | CREATE TABLE table_name_93 (city_location VARCHAR, round VARCHAR, circuit VARCHAR) | SELECT city_location FROM table_name_93 WHERE round < 11 AND circuit = "streets of denver" | ### Context: CREATE TABLE table_name_93 (city_location VARCHAR, round VARCHAR, circuit VARCHAR) ### Question: For which location was the round smaller than 11 and the circuit streets of denver? ### Answer: SELECT city_location FROM table_name_93 WHERE round < 11 AND circuit = "streets of denver" |
What day was the location Cleveland, Ohio in Round 6? | CREATE TABLE table_name_2 (date VARCHAR, city_location VARCHAR, round VARCHAR) | SELECT date FROM table_name_2 WHERE city_location = "cleveland, ohio" AND round = 6 | ### Context: CREATE TABLE table_name_2 (date VARCHAR, city_location VARCHAR, round VARCHAR) ### Question: What day was the location Cleveland, Ohio in Round 6? ### Answer: SELECT date FROM table_name_2 WHERE city_location = "cleveland, ohio" AND round = 6 |
What is the sum of attendance for the games played at Los Angeles Rams? | CREATE TABLE table_name_39 (attendance INTEGER, opponent VARCHAR) | SELECT SUM(attendance) FROM table_name_39 WHERE opponent = "at los angeles rams" | ### Context: CREATE TABLE table_name_39 (attendance INTEGER, opponent VARCHAR) ### Question: What is the sum of attendance for the games played at Los Angeles Rams? ### Answer: SELECT SUM(attendance) FROM table_name_39 WHERE opponent = "at los angeles rams" |
In which week was the attendance 47,218? | CREATE TABLE table_name_27 (week INTEGER, attendance VARCHAR) | SELECT SUM(week) FROM table_name_27 WHERE attendance = 47 OFFSET 218 | ### Context: CREATE TABLE table_name_27 (week INTEGER, attendance VARCHAR) ### Question: In which week was the attendance 47,218? ### Answer: SELECT SUM(week) FROM table_name_27 WHERE attendance = 47 OFFSET 218 |
How many Decembers have calgary flames as the opponent? | CREATE TABLE table_name_90 (december VARCHAR, opponent VARCHAR) | SELECT COUNT(december) FROM table_name_90 WHERE opponent = "calgary flames" | ### Context: CREATE TABLE table_name_90 (december VARCHAR, opponent VARCHAR) ### Question: How many Decembers have calgary flames as the opponent? ### Answer: SELECT COUNT(december) FROM table_name_90 WHERE opponent = "calgary flames" |
What game has valiquette as the decision, with @ los angeles kings as the opponent? | CREATE TABLE table_name_96 (game VARCHAR, decision VARCHAR, opponent VARCHAR) | SELECT game FROM table_name_96 WHERE decision = "valiquette" AND opponent = "@ los angeles kings" | ### Context: CREATE TABLE table_name_96 (game VARCHAR, decision VARCHAR, opponent VARCHAR) ### Question: What game has valiquette as the decision, with @ los angeles kings as the opponent? ### Answer: SELECT game FROM table_name_96 WHERE decision = "valiquette" AND opponent = "@ los angeles kings" |
What is the most elevated TF1 # that has an Official # larger than 47, and an Air date (France) of 13 july 2010? | CREATE TABLE table_name_95 (tf1__number INTEGER, official__number VARCHAR, air_date__france_ VARCHAR) | SELECT MAX(tf1__number) FROM table_name_95 WHERE official__number > 47 AND air_date__france_ = "13 july 2010" | ### Context: CREATE TABLE table_name_95 (tf1__number INTEGER, official__number VARCHAR, air_date__france_ VARCHAR) ### Question: What is the most elevated TF1 # that has an Official # larger than 47, and an Air date (France) of 13 july 2010? ### Answer: SELECT MAX(tf1__number) FROM table_name_95 WHERE official__number > 47 AND air_date__france_ = "13 july 2010" |
What venue had SF? | CREATE TABLE table_name_4 (venue VARCHAR, round VARCHAR) | SELECT venue FROM table_name_4 WHERE round = "sf" | ### Context: CREATE TABLE table_name_4 (venue VARCHAR, round VARCHAR) ### Question: What venue had SF? ### Answer: SELECT venue FROM table_name_4 WHERE round = "sf" |
What venue has more than 50,715 attending? | CREATE TABLE table_name_45 (venue VARCHAR, attendance INTEGER) | SELECT venue FROM table_name_45 WHERE attendance > 50 OFFSET 715 | ### Context: CREATE TABLE table_name_45 (venue VARCHAR, attendance INTEGER) ### Question: What venue has more than 50,715 attending? ### Answer: SELECT venue FROM table_name_45 WHERE attendance > 50 OFFSET 715 |
What round was at the A venue with a attendance more than 14,314? | CREATE TABLE table_name_7 (round VARCHAR, venue VARCHAR, attendance VARCHAR) | SELECT round FROM table_name_7 WHERE venue = "a" AND attendance > 14 OFFSET 314 | ### Context: CREATE TABLE table_name_7 (round VARCHAR, venue VARCHAR, attendance VARCHAR) ### Question: What round was at the A venue with a attendance more than 14,314? ### Answer: SELECT round FROM table_name_7 WHERE venue = "a" AND attendance > 14 OFFSET 314 |
What's the callsign of Mom's Radio 101.9 Zamboanga? | CREATE TABLE table_name_34 (callsign VARCHAR, branding VARCHAR) | SELECT callsign FROM table_name_34 WHERE branding = "mom's radio 101.9 zamboanga" | ### Context: CREATE TABLE table_name_34 (callsign VARCHAR, branding VARCHAR) ### Question: What's the callsign of Mom's Radio 101.9 Zamboanga? ### Answer: SELECT callsign FROM table_name_34 WHERE branding = "mom's radio 101.9 zamboanga" |
What's the power when the frequency is 101.5mhz? | CREATE TABLE table_name_26 (power__kw_ VARCHAR, frequency VARCHAR) | SELECT power__kw_ FROM table_name_26 WHERE frequency = "101.5mhz" | ### Context: CREATE TABLE table_name_26 (power__kw_ VARCHAR, frequency VARCHAR) ### Question: What's the power when the frequency is 101.5mhz? ### Answer: SELECT power__kw_ FROM table_name_26 WHERE frequency = "101.5mhz" |
What's the location of Mom's Radio 95.9 Naga having a power of 10kw? | CREATE TABLE table_name_58 (location VARCHAR, power__kw_ VARCHAR, branding VARCHAR) | SELECT location FROM table_name_58 WHERE power__kw_ = "10kw" AND branding = "mom's radio 95.9 naga" | ### Context: CREATE TABLE table_name_58 (location VARCHAR, power__kw_ VARCHAR, branding VARCHAR) ### Question: What's the location of Mom's Radio 95.9 Naga having a power of 10kw? ### Answer: SELECT location FROM table_name_58 WHERE power__kw_ = "10kw" AND branding = "mom's radio 95.9 naga" |
What's the callsign in Tacloban? | CREATE TABLE table_name_22 (callsign VARCHAR, location VARCHAR) | SELECT callsign FROM table_name_22 WHERE location = "tacloban" | ### Context: CREATE TABLE table_name_22 (callsign VARCHAR, location VARCHAR) ### Question: What's the callsign in Tacloban? ### Answer: SELECT callsign FROM table_name_22 WHERE location = "tacloban" |
What's the power of Mom's Radio 101.5 Tacloban? | CREATE TABLE table_name_7 (power__kw_ VARCHAR, branding VARCHAR) | SELECT power__kw_ FROM table_name_7 WHERE branding = "mom's radio 101.5 tacloban" | ### Context: CREATE TABLE table_name_7 (power__kw_ VARCHAR, branding VARCHAR) ### Question: What's the power of Mom's Radio 101.5 Tacloban? ### Answer: SELECT power__kw_ FROM table_name_7 WHERE branding = "mom's radio 101.5 tacloban" |
Which 1947 Nos has a BR Nos of 48730-9? | CREATE TABLE table_name_55 (br_nos VARCHAR) | SELECT 1947 AS _nos FROM table_name_55 WHERE br_nos = "48730-9" | ### Context: CREATE TABLE table_name_55 (br_nos VARCHAR) ### Question: Which 1947 Nos has a BR Nos of 48730-9? ### Answer: SELECT 1947 AS _nos FROM table_name_55 WHERE br_nos = "48730-9" |
What is the number of losses for the game with a win % of 71.43%, and No Result is more than 0? | CREATE TABLE table_name_23 (losses INTEGER, win__percentage VARCHAR, no_result VARCHAR) | SELECT SUM(losses) FROM table_name_23 WHERE win__percentage = "71.43%" AND no_result > 0 | ### Context: CREATE TABLE table_name_23 (losses INTEGER, win__percentage VARCHAR, no_result VARCHAR) ### Question: What is the number of losses for the game with a win % of 71.43%, and No Result is more than 0? ### Answer: SELECT SUM(losses) FROM table_name_23 WHERE win__percentage = "71.43%" AND no_result > 0 |
What is the total number of wins in 2010, when there were more than 14 matches? | CREATE TABLE table_name_99 (wins VARCHAR, year VARCHAR, matches VARCHAR) | SELECT COUNT(wins) FROM table_name_99 WHERE year = "2010" AND matches > 14 | ### Context: CREATE TABLE table_name_99 (wins VARCHAR, year VARCHAR, matches VARCHAR) ### Question: What is the total number of wins in 2010, when there were more than 14 matches? ### Answer: SELECT COUNT(wins) FROM table_name_99 WHERE year = "2010" AND matches > 14 |
What is the number of wins when there are 14 matches, and the No Result was less than 0? | CREATE TABLE table_name_94 (wins INTEGER, matches VARCHAR, no_result VARCHAR) | SELECT AVG(wins) FROM table_name_94 WHERE matches = 14 AND no_result < 0 | ### Context: CREATE TABLE table_name_94 (wins INTEGER, matches VARCHAR, no_result VARCHAR) ### Question: What is the number of wins when there are 14 matches, and the No Result was less than 0? ### Answer: SELECT AVG(wins) FROM table_name_94 WHERE matches = 14 AND no_result < 0 |
What is the number of losses when there were 14 matches, and the No Result was larger than 0? | CREATE TABLE table_name_37 (losses INTEGER, matches VARCHAR, no_result VARCHAR) | SELECT SUM(losses) FROM table_name_37 WHERE matches = 14 AND no_result > 0 | ### Context: CREATE TABLE table_name_37 (losses INTEGER, matches VARCHAR, no_result VARCHAR) ### Question: What is the number of losses when there were 14 matches, and the No Result was larger than 0? ### Answer: SELECT SUM(losses) FROM table_name_37 WHERE matches = 14 AND no_result > 0 |
What is the number of matches when the wins are less than 8, and losses of 7, in 2011? | CREATE TABLE table_name_56 (matches INTEGER, year VARCHAR, wins VARCHAR, losses VARCHAR) | SELECT SUM(matches) FROM table_name_56 WHERE wins < 8 AND losses = 7 AND year = "2011" | ### Context: CREATE TABLE table_name_56 (matches INTEGER, year VARCHAR, wins VARCHAR, losses VARCHAR) ### Question: What is the number of matches when the wins are less than 8, and losses of 7, in 2011? ### Answer: SELECT SUM(matches) FROM table_name_56 WHERE wins < 8 AND losses = 7 AND year = "2011" |
What year was the Win percentage 50.00%, with more than 14 matches, and wins more than 8? | CREATE TABLE table_name_6 (year VARCHAR, wins VARCHAR, win__percentage VARCHAR, matches VARCHAR) | SELECT year FROM table_name_6 WHERE win__percentage = "50.00%" AND matches > 14 AND wins > 8 | ### Context: CREATE TABLE table_name_6 (year VARCHAR, wins VARCHAR, win__percentage VARCHAR, matches VARCHAR) ### Question: What year was the Win percentage 50.00%, with more than 14 matches, and wins more than 8? ### Answer: SELECT year FROM table_name_6 WHERE win__percentage = "50.00%" AND matches > 14 AND wins > 8 |
What area has less than 0.97 mil in population and is on the east? | CREATE TABLE table_name_95 (area__km²_ VARCHAR, pop__km² VARCHAR, _english_ VARCHAR) | SELECT area__km²_ FROM table_name_95 WHERE pop__km² < 0.97 AND _english_ = "east" | ### Context: CREATE TABLE table_name_95 (area__km²_ VARCHAR, pop__km² VARCHAR, _english_ VARCHAR) ### Question: What area has less than 0.97 mil in population and is on the east? ### Answer: SELECT area__km²_ FROM table_name_95 WHERE pop__km² < 0.97 AND _english_ = "east" |
What is the area for a population of 0.58 km? | CREATE TABLE table_name_8 (area__km²_ VARCHAR, pop__km² VARCHAR) | SELECT area__km²_ FROM table_name_8 WHERE pop__km² = 0.58 | ### Context: CREATE TABLE table_name_8 (area__km²_ VARCHAR, pop__km² VARCHAR) ### Question: What is the area for a population of 0.58 km? ### Answer: SELECT area__km²_ FROM table_name_8 WHERE pop__km² = 0.58 |
what is the method when the result is loss on january 19, 2008? | CREATE TABLE table_name_30 (method VARCHAR, result VARCHAR, date VARCHAR) | SELECT method FROM table_name_30 WHERE result = "loss" AND date = "january 19, 2008" | ### Context: CREATE TABLE table_name_30 (method VARCHAR, result VARCHAR, date VARCHAR) ### Question: what is the method when the result is loss on january 19, 2008? ### Answer: SELECT method FROM table_name_30 WHERE result = "loss" AND date = "january 19, 2008" |
when is the opponent lyoto machida? | CREATE TABLE table_name_94 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_94 WHERE opponent = "lyoto machida" | ### Context: CREATE TABLE table_name_94 (date VARCHAR, opponent VARCHAR) ### Question: when is the opponent lyoto machida? ### Answer: SELECT date FROM table_name_94 WHERE opponent = "lyoto machida" |
who is the opponent when the method is tko (punches) at 4:26 of round 1? | CREATE TABLE table_name_82 (opponent VARCHAR, method VARCHAR) | SELECT opponent FROM table_name_82 WHERE method = "tko (punches) at 4:26 of round 1" | ### Context: CREATE TABLE table_name_82 (opponent VARCHAR, method VARCHAR) ### Question: who is the opponent when the method is tko (punches) at 4:26 of round 1? ### Answer: SELECT opponent FROM table_name_82 WHERE method = "tko (punches) at 4:26 of round 1" |
who is the tuf competitor when the method id decision (unanimous)? | CREATE TABLE table_name_37 (tuf_competitor VARCHAR, method VARCHAR) | SELECT tuf_competitor FROM table_name_37 WHERE method = "decision (unanimous)" | ### Context: CREATE TABLE table_name_37 (tuf_competitor VARCHAR, method VARCHAR) ### Question: who is the tuf competitor when the method id decision (unanimous)? ### Answer: SELECT tuf_competitor FROM table_name_37 WHERE method = "decision (unanimous)" |
who is the opponent when the method is submission (rear naked choke) at 4:02 of round 2? | CREATE TABLE table_name_83 (opponent VARCHAR, method VARCHAR) | SELECT opponent FROM table_name_83 WHERE method = "submission (rear naked choke) at 4:02 of round 2" | ### Context: CREATE TABLE table_name_83 (opponent VARCHAR, method VARCHAR) ### Question: who is the opponent when the method is submission (rear naked choke) at 4:02 of round 2? ### Answer: SELECT opponent FROM table_name_83 WHERE method = "submission (rear naked choke) at 4:02 of round 2" |
What is the venue where the melbourne tigers play their home games? | CREATE TABLE table_name_26 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_26 WHERE home_team = "melbourne tigers" | ### Context: CREATE TABLE table_name_26 (venue VARCHAR, home_team VARCHAR) ### Question: What is the venue where the melbourne tigers play their home games? ### Answer: SELECT venue FROM table_name_26 WHERE home_team = "melbourne tigers" |
What team has theoir home games in the venue of gold coast convention centre? | CREATE TABLE table_name_11 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_11 WHERE venue = "gold coast convention centre" | ### Context: CREATE TABLE table_name_11 (home_team VARCHAR, venue VARCHAR) ### Question: What team has theoir home games in the venue of gold coast convention centre? ### Answer: SELECT home_team FROM table_name_11 WHERE venue = "gold coast convention centre" |
What is the box score type for the game that has a score of 103-101? | CREATE TABLE table_name_79 (Box VARCHAR, score VARCHAR) | SELECT Box AS score FROM table_name_79 WHERE score = "103-101" | ### Context: CREATE TABLE table_name_79 (Box VARCHAR, score VARCHAR) ### Question: What is the box score type for the game that has a score of 103-101? ### Answer: SELECT Box AS score FROM table_name_79 WHERE score = "103-101" |
What was the box score for the game where the away team was the sydney spirit? | CREATE TABLE table_name_40 (Box VARCHAR, away_team VARCHAR) | SELECT Box AS score FROM table_name_40 WHERE away_team = "sydney spirit" | ### Context: CREATE TABLE table_name_40 (Box VARCHAR, away_team VARCHAR) ### Question: What was the box score for the game where the away team was the sydney spirit? ### Answer: SELECT Box AS score FROM table_name_40 WHERE away_team = "sydney spirit" |
What was the resolution of the fight when tim hague had a record of 15-7? | CREATE TABLE table_name_65 (res VARCHAR, record VARCHAR) | SELECT res FROM table_name_65 WHERE record = "15-7" | ### Context: CREATE TABLE table_name_65 (res VARCHAR, record VARCHAR) ### Question: What was the resolution of the fight when tim hague had a record of 15-7? ### Answer: SELECT res FROM table_name_65 WHERE record = "15-7" |
What event did Tim hague have a fight that had a time of 5:00 and a record of 10-4? | CREATE TABLE table_name_88 (event VARCHAR, time VARCHAR, record VARCHAR) | SELECT event FROM table_name_88 WHERE time = "5:00" AND record = "10-4" | ### Context: CREATE TABLE table_name_88 (event VARCHAR, time VARCHAR, record VARCHAR) ### Question: What event did Tim hague have a fight that had a time of 5:00 and a record of 10-4? ### Answer: SELECT event FROM table_name_88 WHERE time = "5:00" AND record = "10-4" |
What method of resolution was the fight that took place at hardcore championship fighting: destiny? | CREATE TABLE table_name_41 (method VARCHAR, event VARCHAR) | SELECT method FROM table_name_41 WHERE event = "hardcore championship fighting: destiny" | ### Context: CREATE TABLE table_name_41 (method VARCHAR, event VARCHAR) ### Question: What method of resolution was the fight that took place at hardcore championship fighting: destiny? ### Answer: SELECT method FROM table_name_41 WHERE event = "hardcore championship fighting: destiny" |
What event did tim Hague have a record of 3-0? | CREATE TABLE table_name_54 (event VARCHAR, record VARCHAR) | SELECT event FROM table_name_54 WHERE record = "3-0" | ### Context: CREATE TABLE table_name_54 (event VARCHAR, record VARCHAR) ### Question: What event did tim Hague have a record of 3-0? ### Answer: SELECT event FROM table_name_54 WHERE record = "3-0" |
What was the date of the poll from Survey USA that showed a lead margin smaller than 5.5? | CREATE TABLE table_name_87 (dates_administered VARCHAR, lead_margin VARCHAR, poll_source VARCHAR) | SELECT dates_administered FROM table_name_87 WHERE lead_margin < 5.5 AND poll_source = "survey usa" | ### Context: CREATE TABLE table_name_87 (dates_administered VARCHAR, lead_margin VARCHAR, poll_source VARCHAR) ### Question: What was the date of the poll from Survey USA that showed a lead margin smaller than 5.5? ### Answer: SELECT dates_administered FROM table_name_87 WHERE lead_margin < 5.5 AND poll_source = "survey usa" |
Which organization administered the poll that showed a lead margin of 5.5? | CREATE TABLE table_name_88 (poll_source VARCHAR, lead_margin VARCHAR) | SELECT poll_source FROM table_name_88 WHERE lead_margin = 5.5 | ### Context: CREATE TABLE table_name_88 (poll_source VARCHAR, lead_margin VARCHAR) ### Question: Which organization administered the poll that showed a lead margin of 5.5? ### Answer: SELECT poll_source FROM table_name_88 WHERE lead_margin = 5.5 |
What is the sum of Round, when Position is Forward, and when School/Club Team is Western Kentucky? | CREATE TABLE table_name_2 (round INTEGER, position VARCHAR, school_club_team VARCHAR) | SELECT SUM(round) FROM table_name_2 WHERE position = "forward" AND school_club_team = "western kentucky" | ### Context: CREATE TABLE table_name_2 (round INTEGER, position VARCHAR, school_club_team VARCHAR) ### Question: What is the sum of Round, when Position is Forward, and when School/Club Team is Western Kentucky? ### Answer: SELECT SUM(round) FROM table_name_2 WHERE position = "forward" AND school_club_team = "western kentucky" |
What is Position, when Pick is 7? | CREATE TABLE table_name_80 (position VARCHAR, pick VARCHAR) | SELECT position FROM table_name_80 WHERE pick = "7" | ### Context: CREATE TABLE table_name_80 (position VARCHAR, pick VARCHAR) ### Question: What is Position, when Pick is 7? ### Answer: SELECT position FROM table_name_80 WHERE pick = "7" |
What is Pick, when Round is greater than 1, and when School/Club Team is South Carolina? | CREATE TABLE table_name_95 (pick VARCHAR, round VARCHAR, school_club_team VARCHAR) | SELECT pick FROM table_name_95 WHERE round > 1 AND school_club_team = "south carolina" | ### Context: CREATE TABLE table_name_95 (pick VARCHAR, round VARCHAR, school_club_team VARCHAR) ### Question: What is Pick, when Round is greater than 1, and when School/Club Team is South Carolina? ### Answer: SELECT pick FROM table_name_95 WHERE round > 1 AND school_club_team = "south carolina" |
What is the Date of the game with an Outcome of runner-up and Score of 5–7, 3–6, 6–3, 2–6? | CREATE TABLE table_name_83 (date VARCHAR, outcome VARCHAR, score VARCHAR) | SELECT date FROM table_name_83 WHERE outcome = "runner-up" AND score = "5–7, 3–6, 6–3, 2–6" | ### Context: CREATE TABLE table_name_83 (date VARCHAR, outcome VARCHAR, score VARCHAR) ### Question: What is the Date of the game with an Outcome of runner-up and Score of 5–7, 3–6, 6–3, 2–6? ### Answer: SELECT date FROM table_name_83 WHERE outcome = "runner-up" AND score = "5–7, 3–6, 6–3, 2–6" |
What is the Date of the game with a Score of 4–6, 4–6? | CREATE TABLE table_name_36 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_36 WHERE score = "4–6, 4–6" | ### Context: CREATE TABLE table_name_36 (date VARCHAR, score VARCHAR) ### Question: What is the Date of the game with a Score of 4–6, 4–6? ### Answer: SELECT date FROM table_name_36 WHERE score = "4–6, 4–6" |
What is the Date of the game against Christo Van Rensburg? | CREATE TABLE table_name_5 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_5 WHERE opponent = "christo van rensburg" | ### Context: CREATE TABLE table_name_5 (date VARCHAR, opponent VARCHAR) ### Question: What is the Date of the game against Christo Van Rensburg? ### Answer: SELECT date FROM table_name_5 WHERE opponent = "christo van rensburg" |
Who was the home team for the game that has a Tie value of 3? | CREATE TABLE table_name_36 (home_team VARCHAR, tie_no VARCHAR) | SELECT home_team FROM table_name_36 WHERE tie_no = "3" | ### Context: CREATE TABLE table_name_36 (home_team VARCHAR, tie_no VARCHAR) ### Question: Who was the home team for the game that has a Tie value of 3? ### Answer: SELECT home_team FROM table_name_36 WHERE tie_no = "3" |
How many in total were in attendance at games where Chelsea was the away team? | CREATE TABLE table_name_23 (attendance INTEGER, away_team VARCHAR) | SELECT SUM(attendance) FROM table_name_23 WHERE away_team = "chelsea" | ### Context: CREATE TABLE table_name_23 (attendance INTEGER, away_team VARCHAR) ### Question: How many in total were in attendance at games where Chelsea was the away team? ### Answer: SELECT SUM(attendance) FROM table_name_23 WHERE away_team = "chelsea" |
What is the 2004 population for 昌黎县? | CREATE TABLE table_name_87 (population__2004_est_ VARCHAR, hanzi VARCHAR) | SELECT population__2004_est_ FROM table_name_87 WHERE hanzi = "昌黎县" | ### Context: CREATE TABLE table_name_87 (population__2004_est_ VARCHAR, hanzi VARCHAR) ### Question: What is the 2004 population for 昌黎县? ### Answer: SELECT population__2004_est_ FROM table_name_87 WHERE hanzi = "昌黎县" |
What is the 2004 population for 山海关区? | CREATE TABLE table_name_46 (population__2004_est_ VARCHAR, hanzi VARCHAR) | SELECT population__2004_est_ FROM table_name_46 WHERE hanzi = "山海关区" | ### Context: CREATE TABLE table_name_46 (population__2004_est_ VARCHAR, hanzi VARCHAR) ### Question: What is the 2004 population for 山海关区? ### Answer: SELECT population__2004_est_ FROM table_name_46 WHERE hanzi = "山海关区" |
Which Hanzi has a suburban population in 2004? | CREATE TABLE table_name_95 (hanzi VARCHAR, population__2004_est_ VARCHAR) | SELECT hanzi FROM table_name_95 WHERE population__2004_est_ = "suburban" | ### Context: CREATE TABLE table_name_95 (hanzi VARCHAR, population__2004_est_ VARCHAR) ### Question: Which Hanzi has a suburban population in 2004? ### Answer: SELECT hanzi FROM table_name_95 WHERE population__2004_est_ = "suburban" |
What is the density of 昌黎县? | CREATE TABLE table_name_34 (density___km²_ VARCHAR, hanzi VARCHAR) | SELECT density___km²_ FROM table_name_34 WHERE hanzi = "昌黎县" | ### Context: CREATE TABLE table_name_34 (density___km²_ VARCHAR, hanzi VARCHAR) ### Question: What is the density of 昌黎县? ### Answer: SELECT density___km²_ FROM table_name_34 WHERE hanzi = "昌黎县" |
Which Hanyu Pinyin is labeled rural? | CREATE TABLE table_name_68 (hanyu_pinyin VARCHAR, name VARCHAR) | SELECT hanyu_pinyin FROM table_name_68 WHERE name = "rural" | ### Context: CREATE TABLE table_name_68 (hanyu_pinyin VARCHAR, name VARCHAR) ### Question: Which Hanyu Pinyin is labeled rural? ### Answer: SELECT hanyu_pinyin FROM table_name_68 WHERE name = "rural" |
What is the Pressure in hPa (mbar), when Vacuum Range is "medium vacuum"? | CREATE TABLE table_name_69 (pressure_in_hpa__mbar_ VARCHAR, vacuum_range VARCHAR) | SELECT pressure_in_hpa__mbar_ FROM table_name_69 WHERE vacuum_range = "medium vacuum" | ### Context: CREATE TABLE table_name_69 (pressure_in_hpa__mbar_ VARCHAR, vacuum_range VARCHAR) ### Question: What is the Pressure in hPa (mbar), when Vacuum Range is "medium vacuum"? ### Answer: SELECT pressure_in_hpa__mbar_ FROM table_name_69 WHERE vacuum_range = "medium vacuum" |
What is Mean Free Path, when Vacuum Range is "medium vacuum"? | CREATE TABLE table_name_28 (mean_free_path VARCHAR, vacuum_range VARCHAR) | SELECT mean_free_path FROM table_name_28 WHERE vacuum_range = "medium vacuum" | ### Context: CREATE TABLE table_name_28 (mean_free_path VARCHAR, vacuum_range VARCHAR) ### Question: What is Mean Free Path, when Vacuum Range is "medium vacuum"? ### Answer: SELECT mean_free_path FROM table_name_28 WHERE vacuum_range = "medium vacuum" |
What is Mean Free Path, when Vacuum Range is "medium vacuum"? | CREATE TABLE table_name_25 (mean_free_path VARCHAR, vacuum_range VARCHAR) | SELECT mean_free_path FROM table_name_25 WHERE vacuum_range = "medium vacuum" | ### Context: CREATE TABLE table_name_25 (mean_free_path VARCHAR, vacuum_range VARCHAR) ### Question: What is Mean Free Path, when Vacuum Range is "medium vacuum"? ### Answer: SELECT mean_free_path FROM table_name_25 WHERE vacuum_range = "medium vacuum" |
what is the outcome when the date is 10 october 1994? | CREATE TABLE table_name_40 (outcome VARCHAR, date VARCHAR) | SELECT outcome FROM table_name_40 WHERE date = "10 october 1994" | ### Context: CREATE TABLE table_name_40 (outcome VARCHAR, date VARCHAR) ### Question: what is the outcome when the date is 10 october 1994? ### Answer: SELECT outcome FROM table_name_40 WHERE date = "10 october 1994" |
what is the score on 22 february 1993? | CREATE TABLE table_name_10 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_10 WHERE date = "22 february 1993" | ### Context: CREATE TABLE table_name_10 (score VARCHAR, date VARCHAR) ### Question: what is the score on 22 february 1993? ### Answer: SELECT score FROM table_name_10 WHERE date = "22 february 1993" |
what is the outcome when the surface is grass on 23 june 1997? | CREATE TABLE table_name_45 (outcome VARCHAR, surface VARCHAR, date VARCHAR) | SELECT outcome FROM table_name_45 WHERE surface = "grass" AND date = "23 june 1997" | ### Context: CREATE TABLE table_name_45 (outcome VARCHAR, surface VARCHAR, date VARCHAR) ### Question: what is the outcome when the surface is grass on 23 june 1997? ### Answer: SELECT outcome FROM table_name_45 WHERE surface = "grass" AND date = "23 june 1997" |
what is the score when the surface is carpet (i) outcome is winner and the championship is rotterdam, netherlands? | CREATE TABLE table_name_43 (score VARCHAR, championship VARCHAR, surface VARCHAR, outcome VARCHAR) | SELECT score FROM table_name_43 WHERE surface = "carpet (i)" AND outcome = "winner" AND championship = "rotterdam, netherlands" | ### Context: CREATE TABLE table_name_43 (score VARCHAR, championship VARCHAR, surface VARCHAR, outcome VARCHAR) ### Question: what is the score when the surface is carpet (i) outcome is winner and the championship is rotterdam, netherlands? ### Answer: SELECT score FROM table_name_43 WHERE surface = "carpet (i)" AND outcome = "winner" AND championship = "rotterdam, netherlands" |
what is the title when the rank is less than 17 and the worldwide gross is $299,288,605? | CREATE TABLE table_name_11 (title VARCHAR, rank VARCHAR, worldwide_gross VARCHAR) | SELECT title FROM table_name_11 WHERE rank < 17 AND worldwide_gross = "$299,288,605" | ### Context: CREATE TABLE table_name_11 (title VARCHAR, rank VARCHAR, worldwide_gross VARCHAR) ### Question: what is the title when the rank is less than 17 and the worldwide gross is $299,288,605? ### Answer: SELECT title FROM table_name_11 WHERE rank < 17 AND worldwide_gross = "$299,288,605" |
what is the highest rank for director john woo? | CREATE TABLE table_name_47 (rank INTEGER, director VARCHAR) | SELECT MAX(rank) FROM table_name_47 WHERE director = "john woo" | ### Context: CREATE TABLE table_name_47 (rank INTEGER, director VARCHAR) ### Question: what is the highest rank for director john woo? ### Answer: SELECT MAX(rank) FROM table_name_47 WHERE director = "john woo" |
what is the title for director p.j. hogan? | CREATE TABLE table_name_15 (title VARCHAR, director VARCHAR) | SELECT title FROM table_name_15 WHERE director = "p.j. hogan" | ### Context: CREATE TABLE table_name_15 (title VARCHAR, director VARCHAR) ### Question: what is the title for director p.j. hogan? ### Answer: SELECT title FROM table_name_15 WHERE director = "p.j. hogan" |
What date was the pyramid location? | CREATE TABLE table_name_69 (date VARCHAR, location VARCHAR) | SELECT date FROM table_name_69 WHERE location = "the pyramid" | ### Context: CREATE TABLE table_name_69 (date VARCHAR, location VARCHAR) ### Question: What date was the pyramid location? ### Answer: SELECT date FROM table_name_69 WHERE location = "the pyramid" |
What date was the opponent the Portland Trail Blazers? | CREATE TABLE table_name_67 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_67 WHERE opponent = "portland trail blazers" | ### Context: CREATE TABLE table_name_67 (date VARCHAR, opponent VARCHAR) ### Question: What date was the opponent the Portland Trail Blazers? ### Answer: SELECT date FROM table_name_67 WHERE opponent = "portland trail blazers" |
What is the record for the opponent the Cleveland Cavaliers? | CREATE TABLE table_name_26 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_26 WHERE opponent = "cleveland cavaliers" | ### Context: CREATE TABLE table_name_26 (record VARCHAR, opponent VARCHAR) ### Question: What is the record for the opponent the Cleveland Cavaliers? ### Answer: SELECT record FROM table_name_26 WHERE opponent = "cleveland cavaliers" |
What was the second qualification time for Dale Coyne Racing with a best of 1:03.757? | CREATE TABLE table_name_39 (qual_2 VARCHAR, team VARCHAR, best VARCHAR) | SELECT qual_2 FROM table_name_39 WHERE team = "dale coyne racing" AND best = "1:03.757" | ### Context: CREATE TABLE table_name_39 (qual_2 VARCHAR, team VARCHAR, best VARCHAR) ### Question: What was the second qualification time for Dale Coyne Racing with a best of 1:03.757? ### Answer: SELECT qual_2 FROM table_name_39 WHERE team = "dale coyne racing" AND best = "1:03.757" |
What was the second qualification time with a first qualification time of 1:02.813? | CREATE TABLE table_name_29 (qual_2 VARCHAR, qual_1 VARCHAR) | SELECT qual_2 FROM table_name_29 WHERE qual_1 = "1:02.813" | ### Context: CREATE TABLE table_name_29 (qual_2 VARCHAR, qual_1 VARCHAR) ### Question: What was the second qualification time with a first qualification time of 1:02.813? ### Answer: SELECT qual_2 FROM table_name_29 WHERE qual_1 = "1:02.813" |
Which team has a second qualification time of 1:01.936? | CREATE TABLE table_name_40 (team VARCHAR, qual_2 VARCHAR) | SELECT team FROM table_name_40 WHERE qual_2 = "1:01.936" | ### Context: CREATE TABLE table_name_40 (team VARCHAR, qual_2 VARCHAR) ### Question: Which team has a second qualification time of 1:01.936? ### Answer: SELECT team FROM table_name_40 WHERE qual_2 = "1:01.936" |
Who had a best time of 1:00.870? | CREATE TABLE table_name_24 (name VARCHAR, best VARCHAR) | SELECT name FROM table_name_24 WHERE best = "1:00.870" | ### Context: CREATE TABLE table_name_24 (name VARCHAR, best VARCHAR) ### Question: Who had a best time of 1:00.870? ### Answer: SELECT name FROM table_name_24 WHERE best = "1:00.870" |
Who had a second qualification time of 1:01.777? | CREATE TABLE table_name_9 (name VARCHAR, qual_2 VARCHAR) | SELECT name FROM table_name_9 WHERE qual_2 = "1:01.777" | ### Context: CREATE TABLE table_name_9 (name VARCHAR, qual_2 VARCHAR) ### Question: Who had a second qualification time of 1:01.777? ### Answer: SELECT name FROM table_name_9 WHERE qual_2 = "1:01.777" |
What type of 3D game was released between 2008-2011? | CREATE TABLE table_name_87 (genre VARCHAR, type VARCHAR, release_date VARCHAR) | SELECT genre FROM table_name_87 WHERE type = "3d" AND release_date = "2008-2011" | ### Context: CREATE TABLE table_name_87 (genre VARCHAR, type VARCHAR, release_date VARCHAR) ### Question: What type of 3D game was released between 2008-2011? ### Answer: SELECT genre FROM table_name_87 WHERE type = "3d" AND release_date = "2008-2011" |
When did Riot Games release their 3D MOBA game? | CREATE TABLE table_name_2 (release_date VARCHAR, developer_s_ VARCHAR, type VARCHAR, genre VARCHAR) | SELECT release_date FROM table_name_2 WHERE type = "3d" AND genre = "moba" AND developer_s_ = "riot games" | ### Context: CREATE TABLE table_name_2 (release_date VARCHAR, developer_s_ VARCHAR, type VARCHAR, genre VARCHAR) ### Question: When did Riot Games release their 3D MOBA game? ### Answer: SELECT release_date FROM table_name_2 WHERE type = "3d" AND genre = "moba" AND developer_s_ = "riot games" |
When did Masthead Studios release their game? | CREATE TABLE table_name_98 (release_date VARCHAR, developer_s_ VARCHAR) | SELECT release_date FROM table_name_98 WHERE developer_s_ = "masthead studios" | ### Context: CREATE TABLE table_name_98 (release_date VARCHAR, developer_s_ VARCHAR) ### Question: When did Masthead Studios release their game? ### Answer: SELECT release_date FROM table_name_98 WHERE developer_s_ = "masthead studios" |
What operating system was needed for 2D games? | CREATE TABLE table_name_91 (required_os VARCHAR, type VARCHAR) | SELECT required_os FROM table_name_91 WHERE type = "2d" | ### Context: CREATE TABLE table_name_91 (required_os VARCHAR, type VARCHAR) ### Question: What operating system was needed for 2D games? ### Answer: SELECT required_os FROM table_name_91 WHERE type = "2d" |
What type of 3D game did Valve Corporation release? | CREATE TABLE table_name_4 (genre VARCHAR, type VARCHAR, developer_s_ VARCHAR) | SELECT genre FROM table_name_4 WHERE type = "3d" AND developer_s_ = "valve corporation" | ### Context: CREATE TABLE table_name_4 (genre VARCHAR, type VARCHAR, developer_s_ VARCHAR) ### Question: What type of 3D game did Valve Corporation release? ### Answer: SELECT genre FROM table_name_4 WHERE type = "3d" AND developer_s_ = "valve corporation" |
What was the minimum operating system required by Stunlock Studios' game? | CREATE TABLE table_name_91 (required_os VARCHAR, developer_s_ VARCHAR) | SELECT required_os FROM table_name_91 WHERE developer_s_ = "stunlock studios" | ### Context: CREATE TABLE table_name_91 (required_os VARCHAR, developer_s_ VARCHAR) ### Question: What was the minimum operating system required by Stunlock Studios' game? ### Answer: SELECT required_os FROM table_name_91 WHERE developer_s_ = "stunlock studios" |
What was the total rounds Travis Hamonic played? | CREATE TABLE table_name_61 (round VARCHAR, player VARCHAR) | SELECT COUNT(round) FROM table_name_61 WHERE player = "travis hamonic" | ### Context: CREATE TABLE table_name_61 (round VARCHAR, player VARCHAR) ### Question: What was the total rounds Travis Hamonic played? ### Answer: SELECT COUNT(round) FROM table_name_61 WHERE player = "travis hamonic" |
What is the name of the ship with pit props as Cargo sunk by u-48 *? | CREATE TABLE table_name_44 (name VARCHAR, fate VARCHAR, cargo VARCHAR) | SELECT name FROM table_name_44 WHERE fate = "sunk by u-48 *" AND cargo = "pit props" | ### Context: CREATE TABLE table_name_44 (name VARCHAR, fate VARCHAR, cargo VARCHAR) ### Question: What is the name of the ship with pit props as Cargo sunk by u-48 *? ### Answer: SELECT name FROM table_name_44 WHERE fate = "sunk by u-48 *" AND cargo = "pit props" |
What is the Date of attack of the ship with iron ore sunk by u-101 *? | CREATE TABLE table_name_39 (date_of_attack VARCHAR, fate VARCHAR, cargo VARCHAR) | SELECT date_of_attack FROM table_name_39 WHERE fate = "sunk by u-101 *" AND cargo = "iron ore" | ### Context: CREATE TABLE table_name_39 (date_of_attack VARCHAR, fate VARCHAR, cargo VARCHAR) ### Question: What is the Date of attack of the ship with iron ore sunk by u-101 *? ### Answer: SELECT date_of_attack FROM table_name_39 WHERE fate = "sunk by u-101 *" AND cargo = "iron ore" |
What is the fewest points for positions with under 12 losses, goals against under 50, goal difference over 11, and under 30 played? | CREATE TABLE table_name_22 (points INTEGER, played VARCHAR, goal_difference VARCHAR, losses VARCHAR, goals_against VARCHAR) | SELECT MIN(points) FROM table_name_22 WHERE losses < 12 AND goals_against < 50 AND goal_difference > 11 AND played < 30 | ### Context: CREATE TABLE table_name_22 (points INTEGER, played VARCHAR, goal_difference VARCHAR, losses VARCHAR, goals_against VARCHAR) ### Question: What is the fewest points for positions with under 12 losses, goals against under 50, goal difference over 11, and under 30 played? ### Answer: SELECT MIN(points) FROM table_name_22 WHERE losses < 12 AND goals_against < 50 AND goal_difference > 11 AND played < 30 |
What is the most wins for a position with more than 30 played and a goal difference of 11? | CREATE TABLE table_name_46 (wins INTEGER, goal_difference VARCHAR, played VARCHAR) | SELECT MAX(wins) FROM table_name_46 WHERE goal_difference = 11 AND played > 30 | ### Context: CREATE TABLE table_name_46 (wins INTEGER, goal_difference VARCHAR, played VARCHAR) ### Question: What is the most wins for a position with more than 30 played and a goal difference of 11? ### Answer: SELECT MAX(wins) FROM table_name_46 WHERE goal_difference = 11 AND played > 30 |
What is the total number of played for the goals against over 44 and a goal difference of 11? | CREATE TABLE table_name_68 (played VARCHAR, goal_difference VARCHAR, goals_against VARCHAR) | SELECT COUNT(played) FROM table_name_68 WHERE goal_difference = 11 AND goals_against > 44 | ### Context: CREATE TABLE table_name_68 (played VARCHAR, goal_difference VARCHAR, goals_against VARCHAR) ### Question: What is the total number of played for the goals against over 44 and a goal difference of 11? ### Answer: SELECT COUNT(played) FROM table_name_68 WHERE goal_difference = 11 AND goals_against > 44 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.