answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT away_team FROM table_name_42 WHERE date = "21 september"
|
CREATE TABLE table_name_42 (away_team VARCHAR, date VARCHAR)
|
who is the away team on 21 september?
|
SELECT to_par FROM table_name_3 WHERE place = "t2" AND player = "ernie els"
|
CREATE TABLE table_name_3 (to_par VARCHAR, place VARCHAR, player VARCHAR)
|
When Ernie Els placed t2, what was his To par?
|
SELECT place FROM table_name_62 WHERE player = "jay haas"
|
CREATE TABLE table_name_62 (place VARCHAR, player VARCHAR)
|
Where did Jay Haas place?
|
SELECT place FROM table_name_16 WHERE player = "jim furyk"
|
CREATE TABLE table_name_16 (place VARCHAR, player VARCHAR)
|
Where did Jim Furyk place?
|
SELECT score FROM table_name_23 WHERE player = "jim furyk"
|
CREATE TABLE table_name_23 (score VARCHAR, player VARCHAR)
|
What was Jim Furyk's score?
|
SELECT score FROM table_name_53 WHERE to_par = "+1"
|
CREATE TABLE table_name_53 (score VARCHAR, to_par VARCHAR)
|
What was the score for the To par of +1?
|
SELECT player FROM table_name_76 WHERE place = "t5" AND score = 73 - 69 - 68 = 210
|
CREATE TABLE table_name_76 (player VARCHAR, place VARCHAR, score VARCHAR)
|
Who placed in t5 and scored 73-69-68=210?
|
SELECT opponent FROM table_name_25 WHERE record = "11-6-2"
|
CREATE TABLE table_name_25 (opponent VARCHAR, record VARCHAR)
|
Who was the opponent when the record was 11-6-2?
|
SELECT home_team FROM table_name_22 WHERE attendance > 202
|
CREATE TABLE table_name_22 (home_team VARCHAR, attendance INTEGER)
|
What is the home team of the match with an attendance greater than 202?
|
SELECT AVG(attendance) FROM table_name_68 WHERE home_team = "arlesey town"
|
CREATE TABLE table_name_68 (attendance INTEGER, home_team VARCHAR)
|
What is the average attendance of the match with arlesey town as the home team?
|
SELECT score FROM table_name_18 WHERE opponent = "phoenix suns"
|
CREATE TABLE table_name_18 (score VARCHAR, opponent VARCHAR)
|
What was the score of the game against the phoenix suns?
|
SELECT opponent FROM table_name_94 WHERE record = "0-12"
|
CREATE TABLE table_name_94 (opponent VARCHAR, record VARCHAR)
|
What was the opponent of the game when the reocrd was 0-12?
|
SELECT COUNT(year) FROM table_name_42 WHERE location = "forest hills" AND runner_up = "john mcenroe" AND score = "6β3, 6β3"
|
CREATE TABLE table_name_42 (year VARCHAR, score VARCHAR, location VARCHAR, runner_up VARCHAR)
|
How many years had a location at Forest Hills and a score of 6β3, 6β3 for John McEnroe?
|
SELECT champion FROM table_name_47 WHERE score = "7β6, 6β0"
|
CREATE TABLE table_name_47 (champion VARCHAR, score VARCHAR)
|
Who is the champion with a score of 7β6, 6β0?
|
SELECT runner_up FROM table_name_59 WHERE year = 1990
|
CREATE TABLE table_name_59 (runner_up VARCHAR, year VARCHAR)
|
Who is the runner-up in 1990?
|
SELECT MIN(year) FROM table_name_9 WHERE runner_up = "guillermo vilas"
|
CREATE TABLE table_name_9 (year INTEGER, runner_up VARCHAR)
|
When was the earliest year that Guillermo Vilas was the runner-up?
|
SELECT source FROM table_name_8 WHERE race_winners = "ben adriaenssen / ben van den bogaart" AND gp_winner = "ben adriaenssen / ben van den bogaart" AND date = "1 april"
|
CREATE TABLE table_name_8 (source VARCHAR, date VARCHAR, race_winners VARCHAR, gp_winner VARCHAR)
|
What source has a race winner of ben adriaenssen / ben van den bogaart, and the gp winner of ben adriaenssen / ben van den bogaart, for the date of 1 april?
|
SELECT gp_winner FROM table_name_2 WHERE race_winners = "valentin giraud / nicolas musset" AND place = "genk"
|
CREATE TABLE table_name_2 (gp_winner VARCHAR, race_winners VARCHAR, place VARCHAR)
|
What is the GP winner for the Race winners valentin giraud / nicolas musset, and a place genk?
|
SELECT date FROM table_name_60 WHERE source = "result" AND place = "iffendic"
|
CREATE TABLE table_name_60 (date VARCHAR, source VARCHAR, place VARCHAR)
|
What is the date for a source of result and a place of iffendic?
|
SELECT date FROM table_name_29 WHERE place = "chernivtsi" AND race_winners = "etienne bax / kaspars stupelis"
|
CREATE TABLE table_name_29 (date VARCHAR, place VARCHAR, race_winners VARCHAR)
|
What date has a place of chernivtsi, and a race winners of etienne bax / kaspars stupelis? What
|
SELECT gp_winner FROM table_name_30 WHERE place = "genk" AND race_winners = "ben adriaenssen / ben van den bogaart"
|
CREATE TABLE table_name_30 (gp_winner VARCHAR, place VARCHAR, race_winners VARCHAR)
|
What is the GP winner with a place of genk, with race winners ben adriaenssen / ben van den bogaart?
|
SELECT race_winners FROM table_name_77 WHERE date = "23 june"
|
CREATE TABLE table_name_77 (race_winners VARCHAR, date VARCHAR)
|
What is the race winners for the date of 23 june?
|
SELECT date FROM table_name_23 WHERE opponent_in_the_final = "barbara paulus"
|
CREATE TABLE table_name_23 (date VARCHAR, opponent_in_the_final VARCHAR)
|
What date was the opponent in the final Barbara Paulus?
|
SELECT surface FROM table_name_67 WHERE opponent_in_the_final = "laura golarsa"
|
CREATE TABLE table_name_67 (surface VARCHAR, opponent_in_the_final VARCHAR)
|
What was the surface that Laura Golarsa and her opponent played on in the final?
|
SELECT score FROM table_name_83 WHERE opponent_in_the_final = "katerina maleeva"
|
CREATE TABLE table_name_83 (score VARCHAR, opponent_in_the_final VARCHAR)
|
What was the score for the opponent against Katerina Maleeva in the final?
|
SELECT name FROM table_name_6 WHERE transfer_window = "winter" AND moving_to = "anorthosis famagusta"
|
CREATE TABLE table_name_6 (name VARCHAR, transfer_window VARCHAR, moving_to VARCHAR)
|
What's the name that had a moving to Anorthosis Famagusta and a transfer window of winter?
|
SELECT nat FROM table_name_12 WHERE transfer_fee = "free" AND type = "mutual consent loan return"
|
CREATE TABLE table_name_12 (nat VARCHAR, transfer_fee VARCHAR, type VARCHAR)
|
What is the Nat with a mutual consent loan return and has a free transfer fee?
|
SELECT type FROM table_name_10 WHERE nat = "por"
|
CREATE TABLE table_name_10 (type VARCHAR, nat VARCHAR)
|
What is the type of POR?
|
SELECT name FROM table_name_20 WHERE nat = "mkd"
|
CREATE TABLE table_name_20 (name VARCHAR, nat VARCHAR)
|
What's the name of MKD?
|
SELECT SUM(attendance) FROM table_name_58 WHERE date = "november 24"
|
CREATE TABLE table_name_58 (attendance INTEGER, date VARCHAR)
|
What is the sum of the attendance on November 24?
|
SELECT opponent FROM table_name_11 WHERE attendance = 526
|
CREATE TABLE table_name_11 (opponent VARCHAR, attendance VARCHAR)
|
What team did the Flames play against when 526 people attended the game?
|
SELECT competition FROM table_name_39 WHERE man_of_the_match = "rick plant"
|
CREATE TABLE table_name_39 (competition VARCHAR, man_of_the_match VARCHAR)
|
Rick Plant was the man of the match in what competition?
|
SELECT opponent FROM table_name_6 WHERE man_of_the_match = "stephen lee"
|
CREATE TABLE table_name_6 (opponent VARCHAR, man_of_the_match VARCHAR)
|
Who did the Flames play against when Stephen Lee was the man of the match?
|
SELECT COUNT(attendance) FROM table_name_44 WHERE result = "won 4-2"
|
CREATE TABLE table_name_44 (attendance VARCHAR, result VARCHAR)
|
How many people attended the game when the game was won 4-2?
|
SELECT competition FROM table_name_62 WHERE venue = "away" AND man_of_the_match = "n/a"
|
CREATE TABLE table_name_62 (competition VARCHAR, venue VARCHAR, man_of_the_match VARCHAR)
|
For what competition was the venue away the n/a the man of the match?
|
SELECT MIN(sales__billion_) AS $_ FROM table_name_73 WHERE company = "bp"
|
CREATE TABLE table_name_73 (sales__billion_ INTEGER, company VARCHAR)
|
What is BP's lowest sales?
|
SELECT result FROM table_name_80 WHERE date = "december 2"
|
CREATE TABLE table_name_80 (result VARCHAR, date VARCHAR)
|
What was the final game result that was played on December 2?
|
SELECT week FROM table_name_94 WHERE game_site = "rich stadium"
|
CREATE TABLE table_name_94 (week VARCHAR, game_site VARCHAR)
|
What week was the game played at Rich Stadium?
|
SELECT SUM(fa_cup_goals) FROM table_name_5 WHERE league_goals = "19"
|
CREATE TABLE table_name_5 (fa_cup_goals INTEGER, league_goals VARCHAR)
|
What is the sum of FA Cup goals when there are 19 league goals?
|
SELECT club FROM table_name_2 WHERE league_goals = "16" AND total = 20
|
CREATE TABLE table_name_2 (club VARCHAR, league_goals VARCHAR, total VARCHAR)
|
Which club has 16 league goals for a total of 20?
|
SELECT league_cup_goals FROM table_name_29 WHERE total > 15 AND fa_cup_goals = 3 AND club = "chesterfield"
|
CREATE TABLE table_name_29 (league_cup_goals VARCHAR, club VARCHAR, total VARCHAR, fa_cup_goals VARCHAR)
|
How many League Cup goals correspond to 3 FA Cup Goals and a total over 15 for Chesterfield?
|
SELECT result FROM table_name_89 WHERE opponent = "greensboro prowlers" AND date = "april 6, 2002"
|
CREATE TABLE table_name_89 (result VARCHAR, opponent VARCHAR, date VARCHAR)
|
What was the result of the april 6, 2002 game against the greensboro prowlers?
|
SELECT location FROM table_name_71 WHERE floors < 27 AND building = "150 elgin"
|
CREATE TABLE table_name_71 (location VARCHAR, floors VARCHAR, building VARCHAR)
|
Which Location has Floors smaller than 27, and a Building of 150 elgin?
|
SELECT status FROM table_name_25 WHERE building = "the rhombus"
|
CREATE TABLE table_name_25 (status VARCHAR, building VARCHAR)
|
Which Status has a Building of the rhombus?
|
SELECT COUNT(floors) FROM table_name_42 WHERE location = "little italy"
|
CREATE TABLE table_name_42 (floors VARCHAR, location VARCHAR)
|
How many floors are in little Italy?
|
SELECT country FROM table_name_43 WHERE class = "15 meters" AND qualifying_grand_prix = "soaring grand prix of united kingdom"
|
CREATE TABLE table_name_43 (country VARCHAR, class VARCHAR, qualifying_grand_prix VARCHAR)
|
What is Country, when Class is "15 meters", and when Qualifying Grand Prix is "Soaring Grand Prix Of United Kingdom"?
|
SELECT class FROM table_name_20 WHERE dates = "22 april - 3 may 2009"
|
CREATE TABLE table_name_20 (class VARCHAR, dates VARCHAR)
|
What is Class, when Dates is "22 April - 3 May 2009"?
|
SELECT country FROM table_name_51 WHERE class = "club"
|
CREATE TABLE table_name_51 (country VARCHAR, class VARCHAR)
|
What is Country, when Class is "club"?
|
SELECT country FROM table_name_72 WHERE place = "torino"
|
CREATE TABLE table_name_72 (country VARCHAR, place VARCHAR)
|
What is Country, when Place is "Torino"?
|
SELECT AVG(squad_no) FROM table_name_8 WHERE name = "martin smith" AND league_goals < 17
|
CREATE TABLE table_name_8 (squad_no INTEGER, name VARCHAR, league_goals VARCHAR)
|
WHAT IS THE AVERAGE SQUAD NUMBER WITH MARTIN SMITH, AND LEAGUE GOALS LESS THAN 17?
|
SELECT no_5 FROM table_name_16 WHERE no_9 = "michael" AND region__year_ = "new hampshire (2010)"
|
CREATE TABLE table_name_16 (no_5 VARCHAR, no_9 VARCHAR, region__year_ VARCHAR)
|
What is No. 5, when No. 9 is Michael, and when Region (Year) is New Hampshire (2010)?
|
SELECT region__year_ FROM table_name_51 WHERE no_7 = "william" AND no_2 = "alexander"
|
CREATE TABLE table_name_51 (region__year_ VARCHAR, no_7 VARCHAR, no_2 VARCHAR)
|
What is Region (Year), when No. 7 is William, and when No. 2 is Alexander?
|
SELECT no_10 FROM table_name_45 WHERE no_1 = "noah" AND no_9 = "carter"
|
CREATE TABLE table_name_45 (no_10 VARCHAR, no_1 VARCHAR, no_9 VARCHAR)
|
What is No. 10, when No. 1 is Noah, and when No. 9 is Carter?
|
SELECT no_7 FROM table_name_85 WHERE region__year_ = "arizona (2010)"
|
CREATE TABLE table_name_85 (no_7 VARCHAR, region__year_ VARCHAR)
|
What is No. 7, when Region (Year) is Arizona (2010)?
|
SELECT no_1 FROM table_name_25 WHERE region__year_ = "mississippi (2010)"
|
CREATE TABLE table_name_25 (no_1 VARCHAR, region__year_ VARCHAR)
|
What is No. 1, when Region (Year) is Mississippi (2010)?
|
SELECT no_8 FROM table_name_76 WHERE no_10 = "hunter"
|
CREATE TABLE table_name_76 (no_8 VARCHAR, no_10 VARCHAR)
|
What is No. 8, when No. 10 is Hunter?
|
SELECT money___$__ FROM table_name_73 WHERE player = "larry nelson"
|
CREATE TABLE table_name_73 (money___$__ VARCHAR, player VARCHAR)
|
How much did Larry Nelson win?
|
SELECT tournament FROM table_name_96 WHERE date = "sep 12, 1976"
|
CREATE TABLE table_name_96 (tournament VARCHAR, date VARCHAR)
|
What is Tournament, when Date is "Sep 12, 1976"?
|
SELECT tournament FROM table_name_61 WHERE date = "sep 25, 1977"
|
CREATE TABLE table_name_61 (tournament VARCHAR, date VARCHAR)
|
What is Tournament, when Date is "Sep 25, 1977"?
|
SELECT margin_of_victory FROM table_name_93 WHERE tournament = "women's kemper open"
|
CREATE TABLE table_name_93 (margin_of_victory VARCHAR, tournament VARCHAR)
|
What is Margin of Victory, when Tournament is "Women's Kemper Open"?
|
SELECT no_8 FROM table_name_32 WHERE no_4 = "noah"
|
CREATE TABLE table_name_32 (no_8 VARCHAR, no_4 VARCHAR)
|
What is the No. 8 of the person with a No. 4 of Noah?
|
SELECT no_8 FROM table_name_29 WHERE no_4 = "matthew" AND no_7 = "anthony"
|
CREATE TABLE table_name_29 (no_8 VARCHAR, no_4 VARCHAR, no_7 VARCHAR)
|
What is the No. 8 of the person with a No. 4 of Matthew and a No. 7 of Anthony?
|
SELECT no_1 FROM table_name_26 WHERE no_2 = "john"
|
CREATE TABLE table_name_26 (no_1 VARCHAR, no_2 VARCHAR)
|
What is the No. 1 of the person with a No. 2 of John?
|
SELECT no_6 FROM table_name_56 WHERE no_10 = "joshua" AND no_8 = "andrew"
|
CREATE TABLE table_name_56 (no_6 VARCHAR, no_10 VARCHAR, no_8 VARCHAR)
|
What is the No. 6 of the person with a No. 10 of Joshua and a No. 8 of Andrew?
|
SELECT no_2 FROM table_name_98 WHERE no_4 = "ethan" AND no_7 = "jackson"
|
CREATE TABLE table_name_98 (no_2 VARCHAR, no_4 VARCHAR, no_7 VARCHAR)
|
What is the No. 2 of the person with a No. 5 of Ethan and NO. 7 of Jackson?
|
SELECT no_1 FROM table_name_27 WHERE region__year_ = "maryland (2008)"
|
CREATE TABLE table_name_27 (no_1 VARCHAR, region__year_ VARCHAR)
|
What is the No 1 from the Maryland (2008) Region (year)?
|
SELECT AVG(draw) FROM table_name_74 WHERE artist = "maggie toal"
|
CREATE TABLE table_name_74 (draw INTEGER, artist VARCHAR)
|
What was the draw of Maggie Toal?
|
SELECT MAX(points) FROM table_name_84 WHERE place = "3rd" AND draw > 5
|
CREATE TABLE table_name_84 (points INTEGER, place VARCHAR, draw VARCHAR)
|
What is the highest point total that placed 3rd and has a draw larger than 5?
|
SELECT gold FROM table_name_18 WHERE year = "1958"
|
CREATE TABLE table_name_18 (gold VARCHAR, year VARCHAR)
|
Who won the gold in 1958?
|
SELECT host_country___countries FROM table_name_42 WHERE silver = "[[|]] (2)" AND bronze = "czechoslovakia (3)"
|
CREATE TABLE table_name_42 (host_country___countries VARCHAR, silver VARCHAR, bronze VARCHAR)
|
What was the host country when the silver was [[|]] (2) and bronze is czechoslovakia (3)?
|
SELECT host_country___countries FROM table_name_3 WHERE year = "2007"
|
CREATE TABLE table_name_3 (host_country___countries VARCHAR, year VARCHAR)
|
Who was the host country in 2007?
|
SELECT host_country___countries FROM table_name_45 WHERE bronze = "[[|]] (1)" AND host_city___cities = "krynica"
|
CREATE TABLE table_name_45 (host_country___countries VARCHAR, bronze VARCHAR, host_city___cities VARCHAR)
|
Who was the host country when bronze is [[|]] (1) and host city is Krynica?
|
SELECT result FROM table_name_73 WHERE road_team = "boston" AND game = "game 4"
|
CREATE TABLE table_name_73 (result VARCHAR, road_team VARCHAR, game VARCHAR)
|
What is the result for Boston's road team in game 4?
|
SELECT road_team FROM table_name_61 WHERE result = "117-114"
|
CREATE TABLE table_name_61 (road_team VARCHAR, result VARCHAR)
|
Which road team has a result of 117-114?
|
SELECT road_team FROM table_name_94 WHERE home_team = "boston" AND date = "april 16"
|
CREATE TABLE table_name_94 (road_team VARCHAR, home_team VARCHAR, date VARCHAR)
|
What is the road team playing against Boston on April 16?
|
SELECT home_team FROM table_name_64 WHERE date = "april 21"
|
CREATE TABLE table_name_64 (home_team VARCHAR, date VARCHAR)
|
Which home team is on April 21?
|
SELECT game FROM table_name_29 WHERE result = "113-106"
|
CREATE TABLE table_name_29 (game VARCHAR, result VARCHAR)
|
Which game has a result of 113-106?
|
SELECT home_team FROM table_name_26 WHERE road_team = "los angeles" AND game = "game 1"
|
CREATE TABLE table_name_26 (home_team VARCHAR, road_team VARCHAR, game VARCHAR)
|
Which home team played against Los Angeles in game 1?
|
SELECT MAX(others_number) FROM table_name_69 WHERE kerry_percentage = "52.1%"
|
CREATE TABLE table_name_69 (others_number INTEGER, kerry_percentage VARCHAR)
|
What percentage of other candidates did the county which voted 52.1% for Kerry vote for?
|
SELECT AVG(kerry_number) FROM table_name_46 WHERE bush_number = 189 OFFSET 605
|
CREATE TABLE table_name_46 (kerry_number INTEGER, bush_number VARCHAR)
|
How many votes did Kerry get in the county that gave Bush 189,605 votes?
|
SELECT MIN(others_number) FROM table_name_12 WHERE others_percentage = "1.9%" AND bush_number < 160 OFFSET 390
|
CREATE TABLE table_name_12 (others_number INTEGER, others_percentage VARCHAR, bush_number VARCHAR)
|
How many votes went to other candidates in the county that gave 1.9% votes to them, and 160,390 total votes to Bush?
|
SELECT SUM(seats_2005) FROM table_name_14 WHERE percentage_in_de_crease = "50.0%" AND governorate = "dhi qar governorate" AND in_de_creased_by > 6
|
CREATE TABLE table_name_14 (seats_2005 INTEGER, in_de_creased_by VARCHAR, percentage_in_de_crease VARCHAR, governorate VARCHAR)
|
How many Seats 2005 has a Percentage in/de-crease of 50.0%, and a Governorate of dhi qar governorate, and a In/de-creased by larger than 6?
|
SELECT MIN(seats_2010) FROM table_name_46 WHERE seats_2005 < 9 AND governorate = "al muthanna governorate" AND in_de_creased_by > 2
|
CREATE TABLE table_name_46 (seats_2010 INTEGER, in_de_creased_by VARCHAR, seats_2005 VARCHAR, governorate VARCHAR)
|
Name the lowest Seats 2010 which has Seats 2005 smaller than 9, and a Governorate of al muthanna governorate, and an In/de-creased by larger than 2?
|
SELECT AVG(in_de_creased_by) FROM table_name_66 WHERE governorate = "al anbar governorate" AND seats_2005 < 9
|
CREATE TABLE table_name_66 (in_de_creased_by INTEGER, governorate VARCHAR, seats_2005 VARCHAR)
|
Name the average In/de-creased by which has a Governorate of al anbar governorate, and Seats 2005 smaller than 9?
|
SELECT MAX(in_de_creased_by) FROM table_name_34 WHERE percentage_in_de_crease = "100%" AND seats_2010 > 8
|
CREATE TABLE table_name_34 (in_de_creased_by INTEGER, percentage_in_de_crease VARCHAR, seats_2010 VARCHAR)
|
Name the highest In/de-creased which has a Percentage in/de-crease of 100%, and Seats 2010 larger than 8?
|
SELECT player FROM table_name_94 WHERE score > 67
|
CREATE TABLE table_name_94 (player VARCHAR, score INTEGER)
|
What player has a score larger than 67?
|
SELECT record FROM table_name_21 WHERE game > 33 AND score = "111-108"
|
CREATE TABLE table_name_21 (record VARCHAR, game VARCHAR, score VARCHAR)
|
What is the celtics record after game 33 when they score of the game was 111-108?
|
SELECT rider FROM table_name_12 WHERE grid = 7
|
CREATE TABLE table_name_12 (rider VARCHAR, grid VARCHAR)
|
Which Rider is grid 7?
|
SELECT COUNT(laps) FROM table_name_45 WHERE rider = "massimo roccoli" AND grid < 4
|
CREATE TABLE table_name_45 (laps VARCHAR, rider VARCHAR, grid VARCHAR)
|
What is the total number of laps done by Massimo Roccoli when his grid was smaller than 4?
|
SELECT time FROM table_name_81 WHERE bike = "yamaha yzf-r6" AND grid > 1 AND rider = "david salom"
|
CREATE TABLE table_name_81 (time VARCHAR, rider VARCHAR, bike VARCHAR, grid VARCHAR)
|
What is the time recorded by David Salom on his Yamaha yzf-r6 when his grid was larger than 1?
|
SELECT stop_no FROM table_name_25 WHERE destination = "[2778] claisebrook station platforms"
|
CREATE TABLE table_name_25 (stop_no VARCHAR, destination VARCHAR)
|
What is Stop No., when Destination is [2778] Claisebrook Station Platforms?
|
SELECT stopping_pattern FROM table_name_92 WHERE platform = "4"
|
CREATE TABLE table_name_92 (stopping_pattern VARCHAR, platform VARCHAR)
|
What is Stopping Pattern, when Platform is 4?
|
SELECT stop_no FROM table_name_23 WHERE destination = "perth" AND line = "midland"
|
CREATE TABLE table_name_23 (stop_no VARCHAR, destination VARCHAR, line VARCHAR)
|
What is Stop No., when Destination is Perth, and when Line is Midland?
|
SELECT coach FROM table_name_58 WHERE founded > 1963 AND team = "western strikers"
|
CREATE TABLE table_name_58 (coach VARCHAR, founded VARCHAR, team VARCHAR)
|
Which coach founded the Western Strikers team after 1963?
|
SELECT coach FROM table_name_69 WHERE location = "oakden"
|
CREATE TABLE table_name_69 (coach VARCHAR, location VARCHAR)
|
Who is the coach located in Oakden?
|
SELECT team FROM table_name_82 WHERE coach = "john kosmina"
|
CREATE TABLE table_name_82 (team VARCHAR, coach VARCHAR)
|
Which team has coach John Kosmina?
|
SELECT coach FROM table_name_95 WHERE team = "adelaide galaxy"
|
CREATE TABLE table_name_95 (coach VARCHAR, team VARCHAR)
|
Who is the coach for the Adelaide Galaxy team?
|
SELECT AVG(wins) FROM table_name_1 WHERE class = "250cc" AND year = 1972
|
CREATE TABLE table_name_1 (wins INTEGER, class VARCHAR, year VARCHAR)
|
Count the average Wins which has a Class of 250cc, and a Year of 1972?
|
SELECT MIN(wins) FROM table_name_94 WHERE points = 28 AND year < 1972
|
CREATE TABLE table_name_94 (wins INTEGER, points VARCHAR, year VARCHAR)
|
Name the lowest Wins which has Points of 28, and a Year smaller than 1972?
|
SELECT team FROM table_name_12 WHERE points > 9 AND year > 1971 AND class = "250cc"
|
CREATE TABLE table_name_12 (team VARCHAR, class VARCHAR, points VARCHAR, year VARCHAR)
|
Name the Team which has Points larger than 9, and a Year larger than 1971, and a Class of 250cc?
|
Subsets and Splits
SQL Console for knowrohit07/know_sql
Finds questions in the dataset that contain the word 'god', providing a basic filtered view without much analytical insight.