question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
What is the score of the game on May 5? | CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_50 WHERE date = \"may 5\""
} |
What is the record of the game with 18,084 in attendance? | CREATE TABLE table_name_1 (record VARCHAR, attendance VARCHAR) | {
"SQL_Query": "SELECT record FROM table_name_1 WHERE attendance = \"18,084\""
} |
What is the record of the game on May 30? | CREATE TABLE table_name_36 (record VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT record FROM table_name_36 WHERE date = \"may 30\""
} |
Who won third place in the Zurich Tournament? | CREATE TABLE table_name_34 (third_place VARCHAR, tournament VARCHAR) | {
"SQL_Query": "SELECT third_place FROM table_name_34 WHERE tournament = \"zurich\""
} |
Who was the winner with a score of 7–6 (7–3) , 2–6, [10–6]? | CREATE TABLE table_name_79 (winner VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT winner FROM table_name_79 WHERE score = \"7–6 (7–3) , 2–6, [10–6]\""
} |
Which tournament did Thomas Enqvist win? | CREATE TABLE table_name_23 (tournament VARCHAR, winner VARCHAR) | {
"SQL_Query": "SELECT tournament FROM table_name_23 WHERE winner = \"thomas enqvist\""
} |
Which tournament was Tim Henman the runner-up in? | CREATE TABLE table_name_59 (tournament VARCHAR, runner_up VARCHAR) | {
"SQL_Query": "SELECT tournament FROM table_name_59 WHERE runner_up = \"tim henman\""
} |
What is the venue where 153 runs were scored? | CREATE TABLE table_name_40 (venue VARCHAR, runs VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_40 WHERE runs = \"153\""
} |
What is the partnership in the game with 166* runs and an opponent of Namibia? | CREATE TABLE table_name_17 (partnerships VARCHAR, versus VARCHAR, runs VARCHAR) | {
"SQL_Query": "SELECT partnerships FROM table_name_17 WHERE versus = \"namibia\" AND runs = \"166*\""
} |
What is the date of the game against South Africa and 2nd wickets? | CREATE TABLE table_name_66 (date VARCHAR, versus VARCHAR, wicket VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_66 WHERE versus = \"south africa\" AND wicket = \"2nd\""
} |
Who was the Away team that played at Carlton on 11 June 1966? | CREATE TABLE table_name_79 (away_team VARCHAR, date VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT away_team FROM table_name_79 WHERE date = \"11 june 1966\" AND home_team = \"carlton\""
} |
What was the smallest crowd at a home game of carlton? | CREATE TABLE table_name_93 (crowd INTEGER, home_team VARCHAR) | {
"SQL_Query": "SELECT MIN(crowd) FROM table_name_93 WHERE home_team = \"carlton\""
} |
What's the title for year n.m.? | CREATE TABLE table_name_43 (title VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT title FROM table_name_43 WHERE year = \"n.m.\""
} |
What is the language for translators ritah meltser and amatsyah porat? | CREATE TABLE table_name_87 (language VARCHAR, translator VARCHAR) | {
"SQL_Query": "SELECT language FROM table_name_87 WHERE translator = \"ritah meltser and amatsyah porat\""
} |
What's the fewest number of pages for the title al-jiniral fi matahatihi? | CREATE TABLE table_name_39 (pages INTEGER, title VARCHAR) | {
"SQL_Query": "SELECT MIN(pages) FROM table_name_39 WHERE title = \"al-jiniral fi matahatihi\""
} |
What is the date for Zouave? | CREATE TABLE table_name_99 (date VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_99 WHERE name = \"zouave\""
} |
What is the date for the name of Granville? | CREATE TABLE table_name_39 (date VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_39 WHERE name = \"granville\""
} |
What is the name of the ship sunk by U-305 on 17 March 1943? | CREATE TABLE table_name_84 (name VARCHAR, date VARCHAR, sunk_by VARCHAR) | {
"SQL_Query": "SELECT name FROM table_name_84 WHERE date = \"17 march 1943\" AND sunk_by = \"u-305\""
} |
Which date's visitor was jazz, when the leading scorer was Mehmet Okur (22)? | CREATE TABLE table_name_4 (date VARCHAR, visitor VARCHAR, leading_scorer VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_4 WHERE visitor = \"jazz\" AND leading_scorer = \"mehmet okur (22)\""
} |
What Club has Fiba European Champion's Cup and an Italian Cup? | CREATE TABLE table_name_27 (club VARCHAR, european_cup VARCHAR, national_cup VARCHAR) | {
"SQL_Query": "SELECT club FROM table_name_27 WHERE european_cup = \"fiba european champion's cup\" AND national_cup = \"italian cup\""
} |
What European Cup is in Israeli Premier League? | CREATE TABLE table_name_24 (european_cup VARCHAR, national_league VARCHAR) | {
"SQL_Query": "SELECT european_cup FROM table_name_24 WHERE national_league = \"israeli premier league\""
} |
Which season is Euroleague with Greek Cup? | CREATE TABLE table_name_4 (season VARCHAR, european_cup VARCHAR, national_cup VARCHAR) | {
"SQL_Query": "SELECT season FROM table_name_4 WHERE european_cup = \"euroleague\" AND national_cup = \"greek cup\""
} |
Which European Cup is in the 1990-91 season? | CREATE TABLE table_name_78 (european_cup VARCHAR, season VARCHAR) | {
"SQL_Query": "SELECT european_cup FROM table_name_78 WHERE season = \"1990-91\""
} |
Which European Cup is in the 2006-07 season? | CREATE TABLE table_name_91 (european_cup VARCHAR, season VARCHAR) | {
"SQL_Query": "SELECT european_cup FROM table_name_91 WHERE season = \"2006-07\""
} |
Which National League is in 1969-70 season? | CREATE TABLE table_name_7 (national_league VARCHAR, season VARCHAR) | {
"SQL_Query": "SELECT national_league FROM table_name_7 WHERE season = \"1969-70\""
} |
what is the right ascension (j2000) when the apparent magnitude is 13? | CREATE TABLE table_name_77 (right_ascension___j2000__ VARCHAR, apparent_magnitude VARCHAR) | {
"SQL_Query": "SELECT right_ascension___j2000__ FROM table_name_77 WHERE apparent_magnitude = 13"
} |
what is the constellation when the right ascension (j2000) is 09h51m54.0s? | CREATE TABLE table_name_61 (constellation VARCHAR, right_ascension___j2000__ VARCHAR) | {
"SQL_Query": "SELECT constellation FROM table_name_61 WHERE right_ascension___j2000__ = \"09h51m54.0s\""
} |
what is the lowest apparent magnitude when the object type is spiral galaxy, the constellation is leo minor and the ngc number is more than 3021? | CREATE TABLE table_name_66 (apparent_magnitude INTEGER, ngc_number VARCHAR, object_type VARCHAR, constellation VARCHAR) | {
"SQL_Query": "SELECT MIN(apparent_magnitude) FROM table_name_66 WHERE object_type = \"spiral galaxy\" AND constellation = \"leo minor\" AND ngc_number > 3021"
} |
Name the total number of Draws when goals for is 58 and losses is 12 when goal differences is less than 21 | CREATE TABLE table_name_45 (draws VARCHAR, goal_difference VARCHAR, goals_for VARCHAR, losses VARCHAR) | {
"SQL_Query": "SELECT COUNT(draws) FROM table_name_45 WHERE goals_for = 58 AND losses = 12 AND goal_difference < 21"
} |
How many goals for where there when draws are less than 11, points of is 54+16 and goals against are less than 39? | CREATE TABLE table_name_66 (goals_for VARCHAR, goals_against VARCHAR, draws VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT COUNT(goals_for) FROM table_name_66 WHERE draws < 11 AND points = \"54+16\" AND goals_against < 39"
} |
Name the total number of played when points of is 31-7, position is 16 and goals for is less than 35 | CREATE TABLE table_name_67 (played VARCHAR, goals_for VARCHAR, points VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT COUNT(played) FROM table_name_67 WHERE points = \"31-7\" AND position = 16 AND goals_for < 35"
} |
Name the total number of goal difference when the position is more than 20 | CREATE TABLE table_name_49 (goal_difference VARCHAR, position INTEGER) | {
"SQL_Query": "SELECT COUNT(goal_difference) FROM table_name_49 WHERE position > 20"
} |
Name the sum of draws when the position is less than 17 and wins is less than 11 | CREATE TABLE table_name_82 (draws INTEGER, position VARCHAR, wins VARCHAR) | {
"SQL_Query": "SELECT SUM(draws) FROM table_name_82 WHERE position < 17 AND wins < 11"
} |
what is the position is 2012 when the last title is n/a and the first season is 2011? | CREATE TABLE table_name_93 (position_in_2012 VARCHAR, last_title VARCHAR, first_season VARCHAR) | {
"SQL_Query": "SELECT position_in_2012 FROM table_name_93 WHERE last_title = \"n/a\" AND first_season = \"2011\""
} |
what is the last title when the titles is more than 12 and the position in 2012 is 7th | CREATE TABLE table_name_91 (last_title VARCHAR, titles VARCHAR, position_in_2012 VARCHAR) | {
"SQL_Query": "SELECT last_title FROM table_name_91 WHERE titles > 12 AND position_in_2012 = \"7th\""
} |
What is the rank number for a placing of 28.5 and a total less than 92.7? | CREATE TABLE table_name_30 (rank VARCHAR, placings VARCHAR, total VARCHAR) | {
"SQL_Query": "SELECT COUNT(rank) FROM table_name_30 WHERE placings = \"28.5\" AND total < 92.7"
} |
What is the placing value for a total less than 96.07 in the United States? | CREATE TABLE table_name_15 (placings VARCHAR, total VARCHAR, nation VARCHAR) | {
"SQL_Query": "SELECT placings FROM table_name_15 WHERE total < 96.07 AND nation = \"united states\""
} |
What is the total for Rank 11? | CREATE TABLE table_name_57 (total VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT COUNT(total) FROM table_name_57 WHERE rank = 11"
} |
What is the sum of all total values for Switzerland? | CREATE TABLE table_name_25 (total INTEGER, nation VARCHAR) | {
"SQL_Query": "SELECT SUM(total) FROM table_name_25 WHERE nation = \"switzerland\""
} |
What rank goes to a total of 92.7? | CREATE TABLE table_name_66 (rank VARCHAR, total VARCHAR) | {
"SQL_Query": "SELECT rank FROM table_name_66 WHERE total = 92.7"
} |
Who has a rank great than 3 and a placing of 64? | CREATE TABLE table_name_60 (name VARCHAR, rank VARCHAR, placings VARCHAR) | {
"SQL_Query": "SELECT name FROM table_name_60 WHERE rank > 3 AND placings = \"64\""
} |
How many Horizontal Bars have a Team of japan (jpn), and Parallel Bars smaller than 38.924? | CREATE TABLE table_name_68 (horizontal_bar VARCHAR, team VARCHAR, parallel_bars VARCHAR) | {
"SQL_Query": "SELECT COUNT(horizontal_bar) FROM table_name_68 WHERE team = \"japan (jpn)\" AND parallel_bars < 38.924"
} |
How many pommel Horses have Rings of 37.461, and a Total smaller than 229.507? | CREATE TABLE table_name_16 (pommel_horse VARCHAR, rings VARCHAR, total VARCHAR) | {
"SQL_Query": "SELECT COUNT(pommel_horse) FROM table_name_16 WHERE rings = 37.461 AND total < 229.507"
} |
What is the sum of totals with a Vault of 38.437, and a Floor Exercise smaller than 37.524? | CREATE TABLE table_name_52 (total VARCHAR, vault VARCHAR, floor_exercise VARCHAR) | {
"SQL_Query": "SELECT COUNT(total) FROM table_name_52 WHERE vault = 38.437 AND floor_exercise < 37.524"
} |
How many pommel horses have a Total smaller than 230.019, a Team of china (chn), and a Vault smaller than 38.437? | CREATE TABLE table_name_52 (pommel_horse VARCHAR, vault VARCHAR, total VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT COUNT(pommel_horse) FROM table_name_52 WHERE total < 230.019 AND team = \"china (chn)\" AND vault < 38.437"
} |
What is the title where the studio was RKO, the role was Dolly, and the year was later than 1943? | CREATE TABLE table_name_98 (title VARCHAR, role VARCHAR, year VARCHAR, studio VARCHAR) | {
"SQL_Query": "SELECT title FROM table_name_98 WHERE year > 1943 AND studio = \"rko\" AND role = \"dolly\""
} |
Who was the director for To Have and Have Not, earlier than 1945 with WB studio? | CREATE TABLE table_name_61 (director VARCHAR, title VARCHAR, studio VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT director FROM table_name_61 WHERE studio = \"wb\" AND year < 1945 AND title = \"to have and have not\""
} |
What year was The Horn Blows at Midnight, directed by Raoul Walsh? | CREATE TABLE table_name_96 (year INTEGER, director VARCHAR, title VARCHAR) | {
"SQL_Query": "SELECT AVG(year) FROM table_name_96 WHERE director = \"raoul walsh\" AND title = \"the horn blows at midnight\""
} |
What title was directed by Raoul Walsh later than 1945? | CREATE TABLE table_name_66 (title VARCHAR, director VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT title FROM table_name_66 WHERE director = \"raoul walsh\" AND year > 1945"
} |
What was the studio for The Hard Way in 1943? | CREATE TABLE table_name_77 (studio VARCHAR, year VARCHAR, title VARCHAR) | {
"SQL_Query": "SELECT studio FROM table_name_77 WHERE year = 1943 AND title = \"the hard way\""
} |
Which team plays at Lake Oval? | CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT home_team FROM table_name_39 WHERE venue = \"lake oval\""
} |
What was the away score when they played at Brunswick Street Oval? | CREATE TABLE table_name_92 (away_team VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT away_team AS score FROM table_name_92 WHERE venue = \"brunswick street oval\""
} |
Where was South Melbourne played? | CREATE TABLE table_name_13 (venue VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_13 WHERE home_team = \"south melbourne\""
} |
Where week is greater than 14 and Opponent is Dallas Cowboys, what is the result? | CREATE TABLE table_name_89 (result VARCHAR, week VARCHAR, opponent VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_89 WHERE week > 14 AND opponent = \"dallas cowboys\""
} |
Where week is greater than 7 and attendance is 66,251 what is the result? | CREATE TABLE table_name_31 (result VARCHAR, week VARCHAR, attendance VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_31 WHERE week > 7 AND attendance = \"66,251\""
} |
Where attendance is 79,431 what is date? | CREATE TABLE table_name_61 (date VARCHAR, attendance VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_61 WHERE attendance = \"79,431\""
} |
Where Date is september 13, 1998 what is result? | CREATE TABLE table_name_89 (result VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_89 WHERE date = \"september 13, 1998\""
} |
What did the away team score at Junction oval? | CREATE TABLE table_name_30 (away_team VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT away_team AS score FROM table_name_30 WHERE venue = \"junction oval\""
} |
Name the score when the home is ny islanders and the visitor is montreal | CREATE TABLE table_name_86 (score VARCHAR, home VARCHAR, visitor VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_86 WHERE home = \"ny islanders\" AND visitor = \"montreal\""
} |
Name the score when the decision is dipietro and the visitor is philadelphia | CREATE TABLE table_name_76 (score VARCHAR, decision VARCHAR, visitor VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_76 WHERE decision = \"dipietro\" AND visitor = \"philadelphia\""
} |
Name the score when it had a decision of dipietro and visitor of ny islanders with home of colorado | CREATE TABLE table_name_80 (score VARCHAR, home VARCHAR, decision VARCHAR, visitor VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_80 WHERE decision = \"dipietro\" AND visitor = \"ny islanders\" AND home = \"colorado\""
} |
Name the least attendance with carolina visitor | CREATE TABLE table_name_97 (attendance INTEGER, visitor VARCHAR) | {
"SQL_Query": "SELECT MIN(attendance) FROM table_name_97 WHERE visitor = \"carolina\""
} |
What Venue had Carlton has the Away team? | CREATE TABLE table_name_29 (venue VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_29 WHERE away_team = \"carlton\""
} |
What is the record when Clippers have the high points? | CREATE TABLE table_name_14 (record VARCHAR, high_points VARCHAR) | {
"SQL_Query": "SELECT record FROM table_name_14 WHERE high_points = \"clippers\""
} |
What had the high points when OT had high rebounds? | CREATE TABLE table_name_51 (high_points VARCHAR, high_rebounds VARCHAR) | {
"SQL_Query": "SELECT high_points FROM table_name_51 WHERE high_rebounds = \"ot\""
} |
On what date did the Suns have high points with a record of 33–13? | CREATE TABLE table_name_8 (date VARCHAR, high_points VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_8 WHERE high_points = \"suns\" AND record = \"33–13\""
} |
Who has the high assists when location attendance is 20,562? | CREATE TABLE table_name_20 (high_assists VARCHAR, location_attendance VARCHAR) | {
"SQL_Query": "SELECT high_assists FROM table_name_20 WHERE location_attendance = \"20,562\""
} |
Which Bronze has a Silver smaller than 1, and a Total larger than 3? | CREATE TABLE table_name_94 (bronze INTEGER, silver VARCHAR, total VARCHAR) | {
"SQL_Query": "SELECT AVG(bronze) FROM table_name_94 WHERE silver < 1 AND total > 3"
} |
Which Gold has a Nation of united states, and a Total larger than 5? | CREATE TABLE table_name_60 (gold INTEGER, nation VARCHAR, total VARCHAR) | {
"SQL_Query": "SELECT MIN(gold) FROM table_name_60 WHERE nation = \"united states\" AND total > 5"
} |
Which Bronze has a Nation of argentina, and a Silver smaller than 0? | CREATE TABLE table_name_28 (bronze INTEGER, nation VARCHAR, silver VARCHAR) | {
"SQL_Query": "SELECT AVG(bronze) FROM table_name_28 WHERE nation = \"argentina\" AND silver < 0"
} |
Which Bronze has a Silver of 2, and a Total smaller than 5? | CREATE TABLE table_name_15 (bronze INTEGER, silver VARCHAR, total VARCHAR) | {
"SQL_Query": "SELECT AVG(bronze) FROM table_name_15 WHERE silver = 2 AND total < 5"
} |
How many spectators were at the away team Carlton? | CREATE TABLE table_name_14 (crowd VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT crowd FROM table_name_14 WHERE away_team = \"carlton\""
} |
What school colors for the friends' school with over 1000 enrolled? | CREATE TABLE table_name_70 (school VARCHAR, enrolment VARCHAR) | {
"SQL_Query": "SELECT school AS Colors FROM table_name_70 WHERE enrolment > 1000 AND school = \"the friends' school\""
} |
What is the low enrolment for schools founded after 1995? | CREATE TABLE table_name_67 (enrolment INTEGER, founded INTEGER) | {
"SQL_Query": "SELECT MIN(enrolment) FROM table_name_67 WHERE founded > 1995"
} |
WHere is the friends' school? | CREATE TABLE table_name_65 (location VARCHAR, school VARCHAR) | {
"SQL_Query": "SELECT location FROM table_name_65 WHERE school = \"the friends' school\""
} |
What is the System with the Current version 3.0.0? | CREATE TABLE table_name_58 (system VARCHAR, current_version VARCHAR) | {
"SQL_Query": "SELECT system FROM table_name_58 WHERE current_version = \"3.0.0\""
} |
What is the Name when the License is gpl and the Current Version is 1.72? | CREATE TABLE table_name_35 (name VARCHAR, license VARCHAR, current_version VARCHAR) | {
"SQL_Query": "SELECT name FROM table_name_35 WHERE license = \"gpl\" AND current_version = \"1.72\""
} |
What is the System when the Licence is gpl and the Current Version is 1.72? | CREATE TABLE table_name_63 (system VARCHAR, license VARCHAR, current_version VARCHAR) | {
"SQL_Query": "SELECT system FROM table_name_63 WHERE license = \"gpl\" AND current_version = \"1.72\""
} |
What is the System with a freeware License? | CREATE TABLE table_name_9 (system VARCHAR, license VARCHAR) | {
"SQL_Query": "SELECT system FROM table_name_9 WHERE license = \"freeware\""
} |
What is the License when the Platform is windows and the Name is Altirra? | CREATE TABLE table_name_98 (license VARCHAR, platform VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT license FROM table_name_98 WHERE platform = \"windows\" AND name = \"altirra\""
} |
What Platform has a Current Version 0.6.2? | CREATE TABLE table_name_55 (platform VARCHAR, current_version VARCHAR) | {
"SQL_Query": "SELECT platform FROM table_name_55 WHERE current_version = \"0.6.2\""
} |
What is the average attendance on October 9, 1983? | CREATE TABLE table_name_11 (attendance INTEGER, date VARCHAR) | {
"SQL_Query": "SELECT AVG(attendance) FROM table_name_11 WHERE date = \"october 9, 1983\""
} |
What is the lowest attendance on September 4, 1983? | CREATE TABLE table_name_19 (attendance INTEGER, date VARCHAR) | {
"SQL_Query": "SELECT MIN(attendance) FROM table_name_19 WHERE date = \"september 4, 1983\""
} |
What is the mascot whose school opened in 1970? | CREATE TABLE table_name_51 (mascot VARCHAR, year_opened VARCHAR) | {
"SQL_Query": "SELECT mascot FROM table_name_51 WHERE year_opened = \"1970\""
} |
What principal has a school mascot of the patriots? | CREATE TABLE table_name_92 (principal VARCHAR, mascot VARCHAR) | {
"SQL_Query": "SELECT principal FROM table_name_92 WHERE mascot = \"patriots\""
} |
What was the venue when the score was 24–28? | CREATE TABLE table_name_43 (venue VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_43 WHERE score = \"24–28\""
} |
What is the lowest pick when the School is Stanford University? | CREATE TABLE table_name_96 (pick INTEGER, school VARCHAR) | {
"SQL_Query": "SELECT MIN(pick) FROM table_name_96 WHERE school = \"stanford university\""
} |
What Team has a Pick of 40? | CREATE TABLE table_name_67 (team VARCHAR, pick VARCHAR) | {
"SQL_Query": "SELECT team FROM table_name_67 WHERE pick = 40"
} |
What date was the away team Hawthorn? | CREATE TABLE table_name_78 (date VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_78 WHERE away_team = \"hawthorn\""
} |
What is the high loss total for players with zero wins and a win % greater than 0? | CREATE TABLE table_name_82 (losses INTEGER, wins VARCHAR, win__percentage VARCHAR) | {
"SQL_Query": "SELECT MAX(losses) FROM table_name_82 WHERE wins = 0 AND win__percentage > 0"
} |
What is the win % for the QB with 3 starts? | CREATE TABLE table_name_7 (win__percentage VARCHAR, starts VARCHAR) | {
"SQL_Query": "SELECT win__percentage FROM table_name_7 WHERE starts = 3"
} |
What venue did geelong play an away game? | CREATE TABLE table_name_90 (venue VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_90 WHERE away_team = \"geelong\""
} |
What home team played an away team of melbourne? | CREATE TABLE table_name_28 (home_team VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT home_team FROM table_name_28 WHERE away_team = \"melbourne\""
} |
Which player had an overall pick of 130? | CREATE TABLE table_name_53 (player VARCHAR, overall VARCHAR) | {
"SQL_Query": "SELECT player FROM table_name_53 WHERE overall = \"130\""
} |
What round was Corey Cowick picked? | CREATE TABLE table_name_8 (round INTEGER, player VARCHAR) | {
"SQL_Query": "SELECT AVG(round) FROM table_name_8 WHERE player = \"corey cowick\""
} |
What position does the player from the Miami University (CCHA) club team play? | CREATE TABLE table_name_20 (position VARCHAR, club_team VARCHAR) | {
"SQL_Query": "SELECT position FROM table_name_20 WHERE club_team = \"miami university (ccha)\""
} |
What most recent year had North Melbourne as a team and Hamish Mcintosh as a player? | CREATE TABLE table_name_63 (year INTEGER, team VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT MAX(year) FROM table_name_63 WHERE team = \"north melbourne\" AND player = \"hamish mcintosh\""
} |
Which score had Essendon as an opponent and Steven Clark as a player? | CREATE TABLE table_name_53 (score VARCHAR, opponent VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_53 WHERE opponent = \"essendon\" AND player = \"steven clark\""
} |
Which team got a Behind outcome and had an opponent of Brisbane Bears? | CREATE TABLE table_name_86 (team VARCHAR, outcome VARCHAR, opponent VARCHAR) | {
"SQL_Query": "SELECT team FROM table_name_86 WHERE outcome = \"behind\" AND opponent = \"brisbane bears\""
} |
When did the north melbourne team play? | CREATE TABLE table_name_7 (date VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_7 WHERE home_team = \"north melbourne\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.