question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
what is the total series percent that has total attempted less than 49, and a percent made of 0.777
CREATE TABLE table_name_63 (series_percent VARCHAR, total_attempted VARCHAR, percent_made VARCHAR)
SELECT COUNT(series_percent) FROM table_name_63 WHERE total_attempted < 49 AND percent_made = 0.777
### Context: CREATE TABLE table_name_63 (series_percent VARCHAR, total_attempted VARCHAR, percent_made VARCHAR) ### Question: what is the total series percent that has total attempted less than 49, and a percent made of 0.777 ### Answer: SELECT COUNT(series_percent) FROM table_name_63 WHERE total_attempted < 49 AND percent_made = 0.777
what is the total attempted with a total made 16
CREATE TABLE table_name_21 (total_attempted VARCHAR, total_made VARCHAR)
SELECT COUNT(total_attempted) FROM table_name_21 WHERE total_made = 16
### Context: CREATE TABLE table_name_21 (total_attempted VARCHAR, total_made VARCHAR) ### Question: what is the total attempted with a total made 16 ### Answer: SELECT COUNT(total_attempted) FROM table_name_21 WHERE total_made = 16
What is the sum of District, when Took Office is greater than 1981, and when Senator is Cyndi Taylor Krier?
CREATE TABLE table_name_67 (district INTEGER, took_office VARCHAR, senator VARCHAR)
SELECT SUM(district) FROM table_name_67 WHERE took_office > 1981 AND senator = "cyndi taylor krier"
### Context: CREATE TABLE table_name_67 (district INTEGER, took_office VARCHAR, senator VARCHAR) ### Question: What is the sum of District, when Took Office is greater than 1981, and when Senator is Cyndi Taylor Krier? ### Answer: SELECT SUM(district) FROM table_name_67 WHERE took_office > 1981 AND senator = "cyndi taylor krier"
What is Party, when District is less than 10, when Took Office is less than 1991, and when Home Town is Mount Pleasant?
CREATE TABLE table_name_22 (party VARCHAR, home_town VARCHAR, district VARCHAR, took_office VARCHAR)
SELECT party FROM table_name_22 WHERE district < 10 AND took_office < 1991 AND home_town = "mount pleasant"
### Context: CREATE TABLE table_name_22 (party VARCHAR, home_town VARCHAR, district VARCHAR, took_office VARCHAR) ### Question: What is Party, when District is less than 10, when Took Office is less than 1991, and when Home Town is Mount Pleasant? ### Answer: SELECT party FROM table_name_22 WHERE district < 10 AND took_office < 1991 AND home_town = "mount pleasant"
What is the lowest Took Office, when Senator is Eddie Bernice Johnson, and when District is greater than 23?
CREATE TABLE table_name_50 (took_office INTEGER, senator VARCHAR, district VARCHAR)
SELECT MIN(took_office) FROM table_name_50 WHERE senator = "eddie bernice johnson" AND district > 23
### Context: CREATE TABLE table_name_50 (took_office INTEGER, senator VARCHAR, district VARCHAR) ### Question: What is the lowest Took Office, when Senator is Eddie Bernice Johnson, and when District is greater than 23? ### Answer: SELECT MIN(took_office) FROM table_name_50 WHERE senator = "eddie bernice johnson" AND district > 23
In which period did Stanislav Chistov get a penalty?
CREATE TABLE table_name_9 (period VARCHAR, player VARCHAR)
SELECT period FROM table_name_9 WHERE player = "stanislav chistov"
### Context: CREATE TABLE table_name_9 (period VARCHAR, player VARCHAR) ### Question: In which period did Stanislav Chistov get a penalty? ### Answer: SELECT period FROM table_name_9 WHERE player = "stanislav chistov"
What was a penalty given for at time 29:17?
CREATE TABLE table_name_89 (penalty VARCHAR, time VARCHAR)
SELECT penalty FROM table_name_89 WHERE time = "29:17"
### Context: CREATE TABLE table_name_89 (penalty VARCHAR, time VARCHAR) ### Question: What was a penalty given for at time 29:17? ### Answer: SELECT penalty FROM table_name_89 WHERE time = "29:17"
What team was the player that received a penalty at time 32:17 playing for?
CREATE TABLE table_name_13 (team VARCHAR, time VARCHAR)
SELECT team FROM table_name_13 WHERE time = "32:17"
### Context: CREATE TABLE table_name_13 (team VARCHAR, time VARCHAR) ### Question: What team was the player that received a penalty at time 32:17 playing for? ### Answer: SELECT team FROM table_name_13 WHERE time = "32:17"
What team was Ryan Callahan, who received a penalty for roughing, playing for?
CREATE TABLE table_name_87 (team VARCHAR, penalty VARCHAR, player VARCHAR)
SELECT team FROM table_name_87 WHERE penalty = "roughing" AND player = "ryan callahan"
### Context: CREATE TABLE table_name_87 (team VARCHAR, penalty VARCHAR, player VARCHAR) ### Question: What team was Ryan Callahan, who received a penalty for roughing, playing for? ### Answer: SELECT team FROM table_name_87 WHERE penalty = "roughing" AND player = "ryan callahan"
Who was the head coach when the opponent was Arsenal?
CREATE TABLE table_name_95 (head_coach VARCHAR, opponent VARCHAR)
SELECT head_coach FROM table_name_95 WHERE opponent = "arsenal"
### Context: CREATE TABLE table_name_95 (head_coach VARCHAR, opponent VARCHAR) ### Question: Who was the head coach when the opponent was Arsenal? ### Answer: SELECT head_coach FROM table_name_95 WHERE opponent = "arsenal"
Who was the opponent when the head coach was B. Sathianathan?
CREATE TABLE table_name_33 (opponent VARCHAR, head_coach VARCHAR)
SELECT opponent FROM table_name_33 WHERE head_coach = "b. sathianathan"
### Context: CREATE TABLE table_name_33 (opponent VARCHAR, head_coach VARCHAR) ### Question: Who was the opponent when the head coach was B. Sathianathan? ### Answer: SELECT opponent FROM table_name_33 WHERE head_coach = "b. sathianathan"
When was the opponent Arsenal?
CREATE TABLE table_name_62 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_62 WHERE opponent = "arsenal"
### Context: CREATE TABLE table_name_62 (date VARCHAR, opponent VARCHAR) ### Question: When was the opponent Arsenal? ### Answer: SELECT date FROM table_name_62 WHERE opponent = "arsenal"
What was the result when the opponent was Arsenal?
CREATE TABLE table_name_56 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_56 WHERE opponent = "arsenal"
### Context: CREATE TABLE table_name_56 (result VARCHAR, opponent VARCHAR) ### Question: What was the result when the opponent was Arsenal? ### Answer: SELECT result FROM table_name_56 WHERE opponent = "arsenal"
What is the sum of the home wins of the Boston College Eagles, which has more than 6 wins?
CREATE TABLE table_name_89 (Home INTEGER, institution VARCHAR, wins VARCHAR)
SELECT SUM(Home) AS wins FROM table_name_89 WHERE institution = "boston college eagles" AND wins > 6
### Context: CREATE TABLE table_name_89 (Home INTEGER, institution VARCHAR, wins VARCHAR) ### Question: What is the sum of the home wins of the Boston College Eagles, which has more than 6 wins? ### Answer: SELECT SUM(Home) AS wins FROM table_name_89 WHERE institution = "boston college eagles" AND wins > 6
What is the Record when Evangelista Cyborg was the opponent?
CREATE TABLE table_name_40 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_40 WHERE opponent = "evangelista cyborg"
### Context: CREATE TABLE table_name_40 (record VARCHAR, opponent VARCHAR) ### Question: What is the Record when Evangelista Cyborg was the opponent? ### Answer: SELECT record FROM table_name_40 WHERE opponent = "evangelista cyborg"
What is the Method for Brazil?
CREATE TABLE table_name_55 (method VARCHAR, location VARCHAR)
SELECT method FROM table_name_55 WHERE location = "brazil"
### Context: CREATE TABLE table_name_55 (method VARCHAR, location VARCHAR) ### Question: What is the Method for Brazil? ### Answer: SELECT method FROM table_name_55 WHERE location = "brazil"
What round was the method submission (punches)?
CREATE TABLE table_name_18 (round VARCHAR, method VARCHAR)
SELECT COUNT(round) FROM table_name_18 WHERE method = "submission (punches)"
### Context: CREATE TABLE table_name_18 (round VARCHAR, method VARCHAR) ### Question: What round was the method submission (punches)? ### Answer: SELECT COUNT(round) FROM table_name_18 WHERE method = "submission (punches)"
What is the method when the record was 3-2?
CREATE TABLE table_name_63 (method VARCHAR, record VARCHAR)
SELECT method FROM table_name_63 WHERE record = "3-2"
### Context: CREATE TABLE table_name_63 (method VARCHAR, record VARCHAR) ### Question: What is the method when the record was 3-2? ### Answer: SELECT method FROM table_name_63 WHERE record = "3-2"
What is the method when the round shows 3?
CREATE TABLE table_name_35 (method VARCHAR, round VARCHAR)
SELECT method FROM table_name_35 WHERE round = 3
### Context: CREATE TABLE table_name_35 (method VARCHAR, round VARCHAR) ### Question: What is the method when the round shows 3? ### Answer: SELECT method FROM table_name_35 WHERE round = 3
What was the run 3 for the team in rank 12?
CREATE TABLE table_name_4 (run_3 VARCHAR, rank VARCHAR)
SELECT run_3 FROM table_name_4 WHERE rank = "12"
### Context: CREATE TABLE table_name_4 (run_3 VARCHAR, rank VARCHAR) ### Question: What was the run 3 for the team in rank 12? ### Answer: SELECT run_3 FROM table_name_4 WHERE rank = "12"
What was the run 3 for the team with a run 1 of 1:17.6?
CREATE TABLE table_name_40 (run_3 VARCHAR, run_1 VARCHAR)
SELECT run_3 FROM table_name_40 WHERE run_1 = "1:17.6"
### Context: CREATE TABLE table_name_40 (run_3 VARCHAR, run_1 VARCHAR) ### Question: What was the run 3 for the team with a run 1 of 1:17.6? ### Answer: SELECT run_3 FROM table_name_40 WHERE run_1 = "1:17.6"
What was the rank of the team with a run 2 of 1:20.8 and a run 4 of 1:23.0?
CREATE TABLE table_name_71 (rank VARCHAR, run_2 VARCHAR, run_4 VARCHAR)
SELECT rank FROM table_name_71 WHERE run_2 = "1:20.8" AND run_4 = "1:23.0"
### Context: CREATE TABLE table_name_71 (rank VARCHAR, run_2 VARCHAR, run_4 VARCHAR) ### Question: What was the rank of the team with a run 2 of 1:20.8 and a run 4 of 1:23.0? ### Answer: SELECT rank FROM table_name_71 WHERE run_2 = "1:20.8" AND run_4 = "1:23.0"
What was the run 1 for the team with a run 3 of 1:21.4 and a run 4 of 1:23.0?
CREATE TABLE table_name_9 (run_1 VARCHAR, run_3 VARCHAR, run_4 VARCHAR)
SELECT run_1 FROM table_name_9 WHERE run_3 = "1:21.4" AND run_4 = "1:23.0"
### Context: CREATE TABLE table_name_9 (run_1 VARCHAR, run_3 VARCHAR, run_4 VARCHAR) ### Question: What was the run 1 for the team with a run 3 of 1:21.4 and a run 4 of 1:23.0? ### Answer: SELECT run_1 FROM table_name_9 WHERE run_3 = "1:21.4" AND run_4 = "1:23.0"
Which team had a run 4 of 1:24.4?
CREATE TABLE table_name_7 (team VARCHAR, run_4 VARCHAR)
SELECT team FROM table_name_7 WHERE run_4 = "1:24.4"
### Context: CREATE TABLE table_name_7 (team VARCHAR, run_4 VARCHAR) ### Question: Which team had a run 4 of 1:24.4? ### Answer: SELECT team FROM table_name_7 WHERE run_4 = "1:24.4"
What is the Attendance at the game against the Oakland Raiders?
CREATE TABLE table_name_40 (attendance VARCHAR, opponent VARCHAR)
SELECT attendance FROM table_name_40 WHERE opponent = "oakland raiders"
### Context: CREATE TABLE table_name_40 (attendance VARCHAR, opponent VARCHAR) ### Question: What is the Attendance at the game against the Oakland Raiders? ### Answer: SELECT attendance FROM table_name_40 WHERE opponent = "oakland raiders"
What was the Attendance in Week 10?
CREATE TABLE table_name_59 (attendance VARCHAR, week VARCHAR)
SELECT attendance FROM table_name_59 WHERE week = 10
### Context: CREATE TABLE table_name_59 (attendance VARCHAR, week VARCHAR) ### Question: What was the Attendance in Week 10? ### Answer: SELECT attendance FROM table_name_59 WHERE week = 10
Which Principal activities have an Incorporated in of france?
CREATE TABLE table_name_76 (principal_activities VARCHAR, incorporated_in VARCHAR)
SELECT principal_activities FROM table_name_76 WHERE incorporated_in = "france"
### Context: CREATE TABLE table_name_76 (principal_activities VARCHAR, incorporated_in VARCHAR) ### Question: Which Principal activities have an Incorporated in of france? ### Answer: SELECT principal_activities FROM table_name_76 WHERE incorporated_in = "france"
Which Type has an Incorporated in of netherlands, a Principal activities of airline, and a Company of transavia.com?
CREATE TABLE table_name_54 (type VARCHAR, company VARCHAR, incorporated_in VARCHAR, principal_activities VARCHAR)
SELECT type FROM table_name_54 WHERE incorporated_in = "netherlands" AND principal_activities = "airline" AND company = "transavia.com"
### Context: CREATE TABLE table_name_54 (type VARCHAR, company VARCHAR, incorporated_in VARCHAR, principal_activities VARCHAR) ### Question: Which Type has an Incorporated in of netherlands, a Principal activities of airline, and a Company of transavia.com? ### Answer: SELECT type FROM table_name_54 WHERE incorporated_in = "netherlands" AND principal_activities = "airline" AND company = "transavia.com"
Which Type has a Company of epcor?
CREATE TABLE table_name_21 (type VARCHAR, company VARCHAR)
SELECT type FROM table_name_21 WHERE company = "epcor"
### Context: CREATE TABLE table_name_21 (type VARCHAR, company VARCHAR) ### Question: Which Type has a Company of epcor? ### Answer: SELECT type FROM table_name_21 WHERE company = "epcor"
Which Type has a Principal activities of health services?
CREATE TABLE table_name_28 (type VARCHAR, principal_activities VARCHAR)
SELECT type FROM table_name_28 WHERE principal_activities = "health services"
### Context: CREATE TABLE table_name_28 (type VARCHAR, principal_activities VARCHAR) ### Question: Which Type has a Principal activities of health services? ### Answer: SELECT type FROM table_name_28 WHERE principal_activities = "health services"
For the verb dhoa, what is the 2VF?
CREATE TABLE table_name_75 (verb VARCHAR)
SELECT 2 AS __vf_ FROM table_name_75 WHERE verb = "dhoa"
### Context: CREATE TABLE table_name_75 (verb VARCHAR) ### Question: For the verb dhoa, what is the 2VF? ### Answer: SELECT 2 AS __vf_ FROM table_name_75 WHERE verb = "dhoa"
What is the name of the subject who ran in the general election for Queen Anne's County State's Attorney?
CREATE TABLE table_name_63 (subject VARCHAR, election VARCHAR, office VARCHAR)
SELECT subject FROM table_name_63 WHERE election = "general" AND office = "queen anne's county state's attorney"
### Context: CREATE TABLE table_name_63 (subject VARCHAR, election VARCHAR, office VARCHAR) ### Question: What is the name of the subject who ran in the general election for Queen Anne's County State's Attorney? ### Answer: SELECT subject FROM table_name_63 WHERE election = "general" AND office = "queen anne's county state's attorney"
Who was the writer of The Year of the Cat from the BBV?
CREATE TABLE table_name_2 (writer VARCHAR, company VARCHAR, title VARCHAR)
SELECT writer FROM table_name_2 WHERE company = "bbv" AND title = "the year of the cat"
### Context: CREATE TABLE table_name_2 (writer VARCHAR, company VARCHAR, title VARCHAR) ### Question: Who was the writer of The Year of the Cat from the BBV? ### Answer: SELECT writer FROM table_name_2 WHERE company = "bbv" AND title = "the year of the cat"
How many Goals For have Drawn of 10?
CREATE TABLE table_name_83 (goals_for VARCHAR, drawn VARCHAR)
SELECT COUNT(goals_for) FROM table_name_83 WHERE drawn = 10
### Context: CREATE TABLE table_name_83 (goals_for VARCHAR, drawn VARCHAR) ### Question: How many Goals For have Drawn of 10? ### Answer: SELECT COUNT(goals_for) FROM table_name_83 WHERE drawn = 10
Which Lost has Drawn larger than 12, and Goals Against of 54?
CREATE TABLE table_name_94 (lost INTEGER, drawn VARCHAR, goals_against VARCHAR)
SELECT MAX(lost) FROM table_name_94 WHERE drawn > 12 AND goals_against = 54
### Context: CREATE TABLE table_name_94 (lost INTEGER, drawn VARCHAR, goals_against VARCHAR) ### Question: Which Lost has Drawn larger than 12, and Goals Against of 54? ### Answer: SELECT MAX(lost) FROM table_name_94 WHERE drawn > 12 AND goals_against = 54
What is the record for the Superbrawl 21?
CREATE TABLE table_name_68 (record VARCHAR, event VARCHAR)
SELECT record FROM table_name_68 WHERE event = "superbrawl 21"
### Context: CREATE TABLE table_name_68 (record VARCHAR, event VARCHAR) ### Question: What is the record for the Superbrawl 21? ### Answer: SELECT record FROM table_name_68 WHERE event = "superbrawl 21"
What location shows round was 1, and against Ricky Shivers?
CREATE TABLE table_name_43 (location VARCHAR, round VARCHAR, opponent VARCHAR)
SELECT location FROM table_name_43 WHERE round = 1 AND opponent = "ricky shivers"
### Context: CREATE TABLE table_name_43 (location VARCHAR, round VARCHAR, opponent VARCHAR) ### Question: What location shows round was 1, and against Ricky Shivers? ### Answer: SELECT location FROM table_name_43 WHERE round = 1 AND opponent = "ricky shivers"
What is the method for a match with a Round larger than 2, he took a loss, and 15–3 was the record?
CREATE TABLE table_name_67 (method VARCHAR, record VARCHAR, round VARCHAR, res VARCHAR)
SELECT method FROM table_name_67 WHERE round > 2 AND res = "loss" AND record = "15–3"
### Context: CREATE TABLE table_name_67 (method VARCHAR, record VARCHAR, round VARCHAR, res VARCHAR) ### Question: What is the method for a match with a Round larger than 2, he took a loss, and 15–3 was the record? ### Answer: SELECT method FROM table_name_67 WHERE round > 2 AND res = "loss" AND record = "15–3"
Which Position has a Pick of 11 (via calgary)?
CREATE TABLE table_name_8 (position VARCHAR, pick VARCHAR)
SELECT position FROM table_name_8 WHERE pick = "11 (via calgary)"
### Context: CREATE TABLE table_name_8 (position VARCHAR, pick VARCHAR) ### Question: Which Position has a Pick of 11 (via calgary)? ### Answer: SELECT position FROM table_name_8 WHERE pick = "11 (via calgary)"
Which Round has a Pick of 25 (via hamilton)?
CREATE TABLE table_name_88 (round INTEGER, pick VARCHAR)
SELECT SUM(round) FROM table_name_88 WHERE pick = "25 (via hamilton)"
### Context: CREATE TABLE table_name_88 (round INTEGER, pick VARCHAR) ### Question: Which Round has a Pick of 25 (via hamilton)? ### Answer: SELECT SUM(round) FROM table_name_88 WHERE pick = "25 (via hamilton)"
Which School/Club Team has a Round larger than 3, and a Player of sammy okpro?
CREATE TABLE table_name_15 (school_club_team VARCHAR, round VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_name_15 WHERE round > 3 AND player = "sammy okpro"
### Context: CREATE TABLE table_name_15 (school_club_team VARCHAR, round VARCHAR, player VARCHAR) ### Question: Which School/Club Team has a Round larger than 3, and a Player of sammy okpro? ### Answer: SELECT school_club_team FROM table_name_15 WHERE round > 3 AND player = "sammy okpro"
Which Round has a Player of sammy okpro?
CREATE TABLE table_name_32 (round INTEGER, player VARCHAR)
SELECT AVG(round) FROM table_name_32 WHERE player = "sammy okpro"
### Context: CREATE TABLE table_name_32 (round INTEGER, player VARCHAR) ### Question: Which Round has a Player of sammy okpro? ### Answer: SELECT AVG(round) FROM table_name_32 WHERE player = "sammy okpro"
Which Position has a Round of 4, and a School/Club Team of concordia?
CREATE TABLE table_name_34 (position VARCHAR, round VARCHAR, school_club_team VARCHAR)
SELECT position FROM table_name_34 WHERE round = 4 AND school_club_team = "concordia"
### Context: CREATE TABLE table_name_34 (position VARCHAR, round VARCHAR, school_club_team VARCHAR) ### Question: Which Position has a Round of 4, and a School/Club Team of concordia? ### Answer: SELECT position FROM table_name_34 WHERE round = 4 AND school_club_team = "concordia"
What is the Score of the game with a Record of 29–23–13?
CREATE TABLE table_name_21 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_21 WHERE record = "29–23–13"
### Context: CREATE TABLE table_name_21 (score VARCHAR, record VARCHAR) ### Question: What is the Score of the game with a Record of 29–23–13? ### Answer: SELECT score FROM table_name_21 WHERE record = "29–23–13"
What is the Visitor of the game with a Record of 21–17–13?
CREATE TABLE table_name_70 (visitor VARCHAR, record VARCHAR)
SELECT visitor FROM table_name_70 WHERE record = "21–17–13"
### Context: CREATE TABLE table_name_70 (visitor VARCHAR, record VARCHAR) ### Question: What is the Visitor of the game with a Record of 21–17–13? ### Answer: SELECT visitor FROM table_name_70 WHERE record = "21–17–13"
What is the Visitor of the game on December 25?
CREATE TABLE table_name_26 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_26 WHERE date = "december 25"
### Context: CREATE TABLE table_name_26 (visitor VARCHAR, date VARCHAR) ### Question: What is the Visitor of the game on December 25? ### Answer: SELECT visitor FROM table_name_26 WHERE date = "december 25"
What is the Date of the game with a Record of 8–10–6?
CREATE TABLE table_name_99 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_99 WHERE record = "8–10–6"
### Context: CREATE TABLE table_name_99 (date VARCHAR, record VARCHAR) ### Question: What is the Date of the game with a Record of 8–10–6? ### Answer: SELECT date FROM table_name_99 WHERE record = "8–10–6"
What is the Date of the game with a Record of 1–2–4?
CREATE TABLE table_name_27 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_27 WHERE record = "1–2–4"
### Context: CREATE TABLE table_name_27 (date VARCHAR, record VARCHAR) ### Question: What is the Date of the game with a Record of 1–2–4? ### Answer: SELECT date FROM table_name_27 WHERE record = "1–2–4"
What is the Date of the game with a Record of 27–21–13?
CREATE TABLE table_name_11 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_11 WHERE record = "27–21–13"
### Context: CREATE TABLE table_name_11 (date VARCHAR, record VARCHAR) ### Question: What is the Date of the game with a Record of 27–21–13? ### Answer: SELECT date FROM table_name_11 WHERE record = "27–21–13"
Which Year(s) won has a Total smaller than 292, and a Player of hale irwin?
CREATE TABLE table_name_42 (year_s__won VARCHAR, total VARCHAR, player VARCHAR)
SELECT year_s__won FROM table_name_42 WHERE total < 292 AND player = "hale irwin"
### Context: CREATE TABLE table_name_42 (year_s__won VARCHAR, total VARCHAR, player VARCHAR) ### Question: Which Year(s) won has a Total smaller than 292, and a Player of hale irwin? ### Answer: SELECT year_s__won FROM table_name_42 WHERE total < 292 AND player = "hale irwin"
What is fuzzy zoeller's to par?
CREATE TABLE table_name_12 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_12 WHERE player = "fuzzy zoeller"
### Context: CREATE TABLE table_name_12 (to_par VARCHAR, player VARCHAR) ### Question: What is fuzzy zoeller's to par? ### Answer: SELECT to_par FROM table_name_12 WHERE player = "fuzzy zoeller"
What To par was won in 1982?
CREATE TABLE table_name_15 (to_par VARCHAR, year_s__won VARCHAR)
SELECT to_par FROM table_name_15 WHERE year_s__won = "1982"
### Context: CREATE TABLE table_name_15 (to_par VARCHAR, year_s__won VARCHAR) ### Question: What To par was won in 1982? ### Answer: SELECT to_par FROM table_name_15 WHERE year_s__won = "1982"
What is curtis strange's to par?
CREATE TABLE table_name_26 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_26 WHERE player = "curtis strange"
### Context: CREATE TABLE table_name_26 (to_par VARCHAR, player VARCHAR) ### Question: What is curtis strange's to par? ### Answer: SELECT to_par FROM table_name_26 WHERE player = "curtis strange"
WHAT IS THE SCORE WITH A DATE OF NOVEMBER 18?
CREATE TABLE table_name_80 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_80 WHERE date = "november 18"
### Context: CREATE TABLE table_name_80 (score VARCHAR, date VARCHAR) ### Question: WHAT IS THE SCORE WITH A DATE OF NOVEMBER 18? ### Answer: SELECT score FROM table_name_80 WHERE date = "november 18"
WHAT IS THE VISITOR FOR FEBRUARY 9?
CREATE TABLE table_name_27 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_27 WHERE date = "february 9"
### Context: CREATE TABLE table_name_27 (visitor VARCHAR, date VARCHAR) ### Question: WHAT IS THE VISITOR FOR FEBRUARY 9? ### Answer: SELECT visitor FROM table_name_27 WHERE date = "february 9"
What is the place of the player who scored less than 70?
CREATE TABLE table_name_96 (place VARCHAR, score INTEGER)
SELECT place FROM table_name_96 WHERE score < 70
### Context: CREATE TABLE table_name_96 (place VARCHAR, score INTEGER) ### Question: What is the place of the player who scored less than 70? ### Answer: SELECT place FROM table_name_96 WHERE score < 70
Which player was chosen by Saskatchewan in a pick larger than 38?
CREATE TABLE table_name_21 (player VARCHAR, pick__number VARCHAR, cfl_team VARCHAR)
SELECT player FROM table_name_21 WHERE pick__number > 38 AND cfl_team = "saskatchewan"
### Context: CREATE TABLE table_name_21 (player VARCHAR, pick__number VARCHAR, cfl_team VARCHAR) ### Question: Which player was chosen by Saskatchewan in a pick larger than 38? ### Answer: SELECT player FROM table_name_21 WHERE pick__number > 38 AND cfl_team = "saskatchewan"
If the goals scored were below 6, 11 games were played, and there were 7 assists, what's the sum of points with games meeting these criteria?
CREATE TABLE table_name_78 (points INTEGER, goals VARCHAR, assists VARCHAR, games VARCHAR)
SELECT SUM(points) FROM table_name_78 WHERE assists = 7 AND games = 11 AND goals < 6
### Context: CREATE TABLE table_name_78 (points INTEGER, goals VARCHAR, assists VARCHAR, games VARCHAR) ### Question: If the goals scored were below 6, 11 games were played, and there were 7 assists, what's the sum of points with games meeting these criteria? ### Answer: SELECT SUM(points) FROM table_name_78 WHERE assists = 7 AND games = 11 AND goals < 6
What's the highest amount of Games recorded that have more than 10 assists?
CREATE TABLE table_name_64 (games INTEGER, assists INTEGER)
SELECT MAX(games) FROM table_name_64 WHERE assists > 10
### Context: CREATE TABLE table_name_64 (games INTEGER, assists INTEGER) ### Question: What's the highest amount of Games recorded that have more than 10 assists? ### Answer: SELECT MAX(games) FROM table_name_64 WHERE assists > 10
What is Updated In Past 30 Days, when Registration is "Open to people 13 and over"?
CREATE TABLE table_name_93 (updated_in_past_30_days VARCHAR, registration VARCHAR)
SELECT updated_in_past_30_days FROM table_name_93 WHERE registration = "open to people 13 and over"
### Context: CREATE TABLE table_name_93 (updated_in_past_30_days VARCHAR, registration VARCHAR) ### Question: What is Updated In Past 30 Days, when Registration is "Open to people 13 and over"? ### Answer: SELECT updated_in_past_30_days FROM table_name_93 WHERE registration = "open to people 13 and over"
What is Permanent Account, when Updated In Past 30 Days is 10324?
CREATE TABLE table_name_96 (permanent_account VARCHAR, updated_in_past_30_days VARCHAR)
SELECT permanent_account FROM table_name_96 WHERE updated_in_past_30_days = "10324"
### Context: CREATE TABLE table_name_96 (permanent_account VARCHAR, updated_in_past_30_days VARCHAR) ### Question: What is Permanent Account, when Updated In Past 30 Days is 10324? ### Answer: SELECT permanent_account FROM table_name_96 WHERE updated_in_past_30_days = "10324"
What is Userpics Free, when Registration is Open, when Yearly Cost For Paid Account is "unknown", and when Name is Kraslan?
CREATE TABLE table_name_18 (userpics_free VARCHAR, name VARCHAR, registration VARCHAR, yearly_cost_for_paid_account VARCHAR)
SELECT userpics_free FROM table_name_18 WHERE registration = "open" AND yearly_cost_for_paid_account = "unknown" AND name = "kraslan"
### Context: CREATE TABLE table_name_18 (userpics_free VARCHAR, name VARCHAR, registration VARCHAR, yearly_cost_for_paid_account VARCHAR) ### Question: What is Userpics Free, when Registration is Open, when Yearly Cost For Paid Account is "unknown", and when Name is Kraslan? ### Answer: SELECT userpics_free FROM table_name_18 WHERE registration = "open" AND yearly_cost_for_paid_account = "unknown" AND name = "kraslan"
What is Userpics Free, when Monthly Cost For Paid Account is "unknown", and when S Registered User is 2340?
CREATE TABLE table_name_89 (userpics_free VARCHAR, monthly_cost_for_paid_account VARCHAR, s_registered_user VARCHAR)
SELECT userpics_free FROM table_name_89 WHERE monthly_cost_for_paid_account = "unknown" AND s_registered_user = "2340"
### Context: CREATE TABLE table_name_89 (userpics_free VARCHAR, monthly_cost_for_paid_account VARCHAR, s_registered_user VARCHAR) ### Question: What is Userpics Free, when Monthly Cost For Paid Account is "unknown", and when S Registered User is 2340? ### Answer: SELECT userpics_free FROM table_name_89 WHERE monthly_cost_for_paid_account = "unknown" AND s_registered_user = "2340"
What is Yearly Cost For Paid Account, when Montly Cost For Paid Account is 5 USD, and when Userpics Paid is 50?
CREATE TABLE table_name_94 (yearly_cost_for_paid_account VARCHAR, monthly_cost_for_paid_account VARCHAR, userpics_paid VARCHAR)
SELECT yearly_cost_for_paid_account FROM table_name_94 WHERE monthly_cost_for_paid_account = "5 usd" AND userpics_paid = "50"
### Context: CREATE TABLE table_name_94 (yearly_cost_for_paid_account VARCHAR, monthly_cost_for_paid_account VARCHAR, userpics_paid VARCHAR) ### Question: What is Yearly Cost For Paid Account, when Montly Cost For Paid Account is 5 USD, and when Userpics Paid is 50? ### Answer: SELECT yearly_cost_for_paid_account FROM table_name_94 WHERE monthly_cost_for_paid_account = "5 usd" AND userpics_paid = "50"
What is the S Registered User, when Userpics Free is 6 [free] or 15 [plus]?
CREATE TABLE table_name_98 (s_registered_user VARCHAR, userpics_free VARCHAR)
SELECT s_registered_user FROM table_name_98 WHERE userpics_free = "6 [free] or 15 [plus]"
### Context: CREATE TABLE table_name_98 (s_registered_user VARCHAR, userpics_free VARCHAR) ### Question: What is the S Registered User, when Userpics Free is 6 [free] or 15 [plus]? ### Answer: SELECT s_registered_user FROM table_name_98 WHERE userpics_free = "6 [free] or 15 [plus]"
What is Venue, when Date is "2003-08-13"?
CREATE TABLE table_name_72 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_name_72 WHERE date = "2003-08-13"
### Context: CREATE TABLE table_name_72 (venue VARCHAR, date VARCHAR) ### Question: What is Venue, when Date is "2003-08-13"? ### Answer: SELECT venue FROM table_name_72 WHERE date = "2003-08-13"
What is Score, when Date is "2000-05-23"?
CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_93 WHERE date = "2000-05-23"
### Context: CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR) ### Question: What is Score, when Date is "2000-05-23"? ### Answer: SELECT score FROM table_name_93 WHERE date = "2000-05-23"
What is Result, when Date is "2000-05-23"?
CREATE TABLE table_name_57 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_57 WHERE date = "2000-05-23"
### Context: CREATE TABLE table_name_57 (result VARCHAR, date VARCHAR) ### Question: What is Result, when Date is "2000-05-23"? ### Answer: SELECT result FROM table_name_57 WHERE date = "2000-05-23"
What is Competition, when Date is "1999-08-07"?
CREATE TABLE table_name_13 (competition VARCHAR, date VARCHAR)
SELECT competition FROM table_name_13 WHERE date = "1999-08-07"
### Context: CREATE TABLE table_name_13 (competition VARCHAR, date VARCHAR) ### Question: What is Competition, when Date is "1999-08-07"? ### Answer: SELECT competition FROM table_name_13 WHERE date = "1999-08-07"
In what Week was Serena Williams 6–1, 6–7(7), 6–3 the Winner?
CREATE TABLE table_name_65 (week VARCHAR, winners VARCHAR)
SELECT week FROM table_name_65 WHERE winners = "serena williams 6–1, 6–7(7), 6–3"
### Context: CREATE TABLE table_name_65 (week VARCHAR, winners VARCHAR) ### Question: In what Week was Serena Williams 6–1, 6–7(7), 6–3 the Winner? ### Answer: SELECT week FROM table_name_65 WHERE winners = "serena williams 6–1, 6–7(7), 6–3"
Who was the Finalist on a Hard Surface with Winner Serena Williams 6–1, 6–7(7), 6–3?
CREATE TABLE table_name_34 (finalists VARCHAR, surface VARCHAR, winners VARCHAR)
SELECT finalists FROM table_name_34 WHERE surface = "hard" AND winners = "serena williams 6–1, 6–7(7), 6–3"
### Context: CREATE TABLE table_name_34 (finalists VARCHAR, surface VARCHAR, winners VARCHAR) ### Question: Who was the Finalist on a Hard Surface with Winner Serena Williams 6–1, 6–7(7), 6–3? ### Answer: SELECT finalists FROM table_name_34 WHERE surface = "hard" AND winners = "serena williams 6–1, 6–7(7), 6–3"
In what Week is the Rome Tournament?
CREATE TABLE table_name_70 (week VARCHAR, tournament VARCHAR)
SELECT week FROM table_name_70 WHERE tournament = "rome"
### Context: CREATE TABLE table_name_70 (week VARCHAR, tournament VARCHAR) ### Question: In what Week is the Rome Tournament? ### Answer: SELECT week FROM table_name_70 WHERE tournament = "rome"
Which regio has a label of zzt and a date of 27 september 2004?
CREATE TABLE table_name_5 (region VARCHAR, label VARCHAR, date VARCHAR)
SELECT region FROM table_name_5 WHERE label = "zzt" AND date = "27 september 2004"
### Context: CREATE TABLE table_name_5 (region VARCHAR, label VARCHAR, date VARCHAR) ### Question: Which regio has a label of zzt and a date of 27 september 2004? ### Answer: SELECT region FROM table_name_5 WHERE label = "zzt" AND date = "27 september 2004"
Which catalog has a date of 24 march 2006?
CREATE TABLE table_name_44 (catalog VARCHAR, date VARCHAR)
SELECT catalog FROM table_name_44 WHERE date = "24 march 2006"
### Context: CREATE TABLE table_name_44 (catalog VARCHAR, date VARCHAR) ### Question: Which catalog has a date of 24 march 2006? ### Answer: SELECT catalog FROM table_name_44 WHERE date = "24 march 2006"
Which format has a region of united kingdom?
CREATE TABLE table_name_19 (format VARCHAR, region VARCHAR)
SELECT format FROM table_name_19 WHERE region = "united kingdom"
### Context: CREATE TABLE table_name_19 (format VARCHAR, region VARCHAR) ### Question: Which format has a region of united kingdom? ### Answer: SELECT format FROM table_name_19 WHERE region = "united kingdom"
Which date has a region of united kingdom?
CREATE TABLE table_name_54 (date VARCHAR, region VARCHAR)
SELECT date FROM table_name_54 WHERE region = "united kingdom"
### Context: CREATE TABLE table_name_54 (date VARCHAR, region VARCHAR) ### Question: Which date has a region of united kingdom? ### Answer: SELECT date FROM table_name_54 WHERE region = "united kingdom"
Which regio has a date of 24 march 2006?
CREATE TABLE table_name_15 (region VARCHAR, date VARCHAR)
SELECT region FROM table_name_15 WHERE date = "24 march 2006"
### Context: CREATE TABLE table_name_15 (region VARCHAR, date VARCHAR) ### Question: Which regio has a date of 24 march 2006? ### Answer: SELECT region FROM table_name_15 WHERE date = "24 march 2006"
What is the A330 for A310 B10?
CREATE TABLE table_name_62 (a330 VARCHAR, a310 VARCHAR)
SELECT a330 FROM table_name_62 WHERE a310 = "b10"
### Context: CREATE TABLE table_name_62 (a330 VARCHAR, a310 VARCHAR) ### Question: What is the A330 for A310 B10? ### Answer: SELECT a330 FROM table_name_62 WHERE a310 = "b10"
What is the A330 and the A310 wide?
CREATE TABLE table_name_62 (a330 VARCHAR, a310 VARCHAR)
SELECT a330 FROM table_name_62 WHERE a310 = "wide"
### Context: CREATE TABLE table_name_62 (a330 VARCHAR, a310 VARCHAR) ### Question: What is the A330 and the A310 wide? ### Answer: SELECT a330 FROM table_name_62 WHERE a310 = "wide"
What model is the A310 of 1983?
CREATE TABLE table_name_48 (model VARCHAR, a310 VARCHAR)
SELECT model FROM table_name_48 WHERE a310 = "1983"
### Context: CREATE TABLE table_name_48 (model VARCHAR, a310 VARCHAR) ### Question: What model is the A310 of 1983? ### Answer: SELECT model FROM table_name_48 WHERE a310 = "1983"
What name is in the number 2 spot when Ethan is in the number 6 spot and Mason is in the number 3 spot?
CREATE TABLE table_name_7 (no_2 VARCHAR, no_6 VARCHAR, no_3 VARCHAR)
SELECT no_2 FROM table_name_7 WHERE no_6 = "ethan" AND no_3 = "mason"
### Context: CREATE TABLE table_name_7 (no_2 VARCHAR, no_6 VARCHAR, no_3 VARCHAR) ### Question: What name is in the number 2 spot when Ethan is in the number 6 spot and Mason is in the number 3 spot? ### Answer: SELECT no_2 FROM table_name_7 WHERE no_6 = "ethan" AND no_3 = "mason"
In what region and year was Jacob the number 2 name and Ryan the number 10 name?
CREATE TABLE table_name_98 (region__year_ VARCHAR, no_2 VARCHAR, no_10 VARCHAR)
SELECT region__year_ FROM table_name_98 WHERE no_2 = "jacob" AND no_10 = "ryan"
### Context: CREATE TABLE table_name_98 (region__year_ VARCHAR, no_2 VARCHAR, no_10 VARCHAR) ### Question: In what region and year was Jacob the number 2 name and Ryan the number 10 name? ### Answer: SELECT region__year_ FROM table_name_98 WHERE no_2 = "jacob" AND no_10 = "ryan"
What name was number 7 when Mason was number 1, Owen was number 6, Jackson was number 9, and Logan was number 10?
CREATE TABLE table_name_68 (no_7 VARCHAR, no_6 VARCHAR, no_10 VARCHAR, no_1 VARCHAR, no_9 VARCHAR)
SELECT no_7 FROM table_name_68 WHERE no_1 = "mason" AND no_9 = "jackson" AND no_10 = "logan" AND no_6 = "owen"
### Context: CREATE TABLE table_name_68 (no_7 VARCHAR, no_6 VARCHAR, no_10 VARCHAR, no_1 VARCHAR, no_9 VARCHAR) ### Question: What name was number 7 when Mason was number 1, Owen was number 6, Jackson was number 9, and Logan was number 10? ### Answer: SELECT no_7 FROM table_name_68 WHERE no_1 = "mason" AND no_9 = "jackson" AND no_10 = "logan" AND no_6 = "owen"
What name was in the number 4 spot when Aiden was number 7 and James was number 3?
CREATE TABLE table_name_29 (no_4 VARCHAR, no_7 VARCHAR, no_3 VARCHAR)
SELECT no_4 FROM table_name_29 WHERE no_7 = "aiden" AND no_3 = "james"
### Context: CREATE TABLE table_name_29 (no_4 VARCHAR, no_7 VARCHAR, no_3 VARCHAR) ### Question: What name was in the number 4 spot when Aiden was number 7 and James was number 3? ### Answer: SELECT no_4 FROM table_name_29 WHERE no_7 = "aiden" AND no_3 = "james"
What is the positions of Damon Jones?
CREATE TABLE table_name_87 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_87 WHERE player = "damon jones"
### Context: CREATE TABLE table_name_87 (position VARCHAR, player VARCHAR) ### Question: What is the positions of Damon Jones? ### Answer: SELECT position FROM table_name_87 WHERE player = "damon jones"
for how many years did the player who graduated from stanford play for Grizzlies?
CREATE TABLE table_name_11 (years_for_grizzlies VARCHAR, school_club_team VARCHAR)
SELECT years_for_grizzlies FROM table_name_11 WHERE school_club_team = "stanford"
### Context: CREATE TABLE table_name_11 (years_for_grizzlies VARCHAR, school_club_team VARCHAR) ### Question: for how many years did the player who graduated from stanford play for Grizzlies? ### Answer: SELECT years_for_grizzlies FROM table_name_11 WHERE school_club_team = "stanford"
Which school did Dahntay Jones graduate from?
CREATE TABLE table_name_24 (school_club_team VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_name_24 WHERE player = "dahntay jones"
### Context: CREATE TABLE table_name_24 (school_club_team VARCHAR, player VARCHAR) ### Question: Which school did Dahntay Jones graduate from? ### Answer: SELECT school_club_team FROM table_name_24 WHERE player = "dahntay jones"
Which player gradyated from Florida State?
CREATE TABLE table_name_76 (player VARCHAR, school_club_team VARCHAR)
SELECT player FROM table_name_76 WHERE school_club_team = "florida state"
### Context: CREATE TABLE table_name_76 (player VARCHAR, school_club_team VARCHAR) ### Question: Which player gradyated from Florida State? ### Answer: SELECT player FROM table_name_76 WHERE school_club_team = "florida state"
What is the Playoffs MVP of the game with a Result of 4–1 with Champions Daejeon Hyundai Dynat?
CREATE TABLE table_name_65 (playoffs_mvp VARCHAR, result VARCHAR, champions VARCHAR)
SELECT playoffs_mvp FROM table_name_65 WHERE result = "4–1" AND champions = "daejeon hyundai dynat"
### Context: CREATE TABLE table_name_65 (playoffs_mvp VARCHAR, result VARCHAR, champions VARCHAR) ### Question: What is the Playoffs MVP of the game with a Result of 4–1 with Champions Daejeon Hyundai Dynat? ### Answer: SELECT playoffs_mvp FROM table_name_65 WHERE result = "4–1" AND champions = "daejeon hyundai dynat"
What is the Year of the game with Result of 4–3 and Champions of Daegu Tongyang Orions?
CREATE TABLE table_name_86 (year VARCHAR, result VARCHAR, champions VARCHAR)
SELECT year FROM table_name_86 WHERE result = "4–3" AND champions = "daegu tongyang orions"
### Context: CREATE TABLE table_name_86 (year VARCHAR, result VARCHAR, champions VARCHAR) ### Question: What is the Year of the game with Result of 4–3 and Champions of Daegu Tongyang Orions? ### Answer: SELECT year FROM table_name_86 WHERE result = "4–3" AND champions = "daegu tongyang orions"
What is the Runners-up of the game with a Result of 4–1 and Champions of Wonju Dongbu Promy?
CREATE TABLE table_name_1 (runners_up VARCHAR, result VARCHAR, champions VARCHAR)
SELECT runners_up FROM table_name_1 WHERE result = "4–1" AND champions = "wonju dongbu promy"
### Context: CREATE TABLE table_name_1 (runners_up VARCHAR, result VARCHAR, champions VARCHAR) ### Question: What is the Runners-up of the game with a Result of 4–1 and Champions of Wonju Dongbu Promy? ### Answer: SELECT runners_up FROM table_name_1 WHERE result = "4–1" AND champions = "wonju dongbu promy"
Where was the venue that Linfield was the opponent?
CREATE TABLE table_name_58 (venue VARCHAR, opponent VARCHAR)
SELECT venue FROM table_name_58 WHERE opponent = "linfield"
### Context: CREATE TABLE table_name_58 (venue VARCHAR, opponent VARCHAR) ### Question: Where was the venue that Linfield was the opponent? ### Answer: SELECT venue FROM table_name_58 WHERE opponent = "linfield"
Which scorer plays for Aldershot and has scored a total of 19 League goals?
CREATE TABLE table_name_17 (scorer VARCHAR, club VARCHAR, league_goals VARCHAR)
SELECT scorer FROM table_name_17 WHERE club = "aldershot" AND league_goals = "19"
### Context: CREATE TABLE table_name_17 (scorer VARCHAR, club VARCHAR, league_goals VARCHAR) ### Question: Which scorer plays for Aldershot and has scored a total of 19 League goals? ### Answer: SELECT scorer FROM table_name_17 WHERE club = "aldershot" AND league_goals = "19"
What is the highest number of League Cup goals that were scored by Hartlepool?
CREATE TABLE table_name_6 (league_cup_goals INTEGER, club VARCHAR)
SELECT MAX(league_cup_goals) FROM table_name_6 WHERE club = "hartlepool"
### Context: CREATE TABLE table_name_6 (league_cup_goals INTEGER, club VARCHAR) ### Question: What is the highest number of League Cup goals that were scored by Hartlepool? ### Answer: SELECT MAX(league_cup_goals) FROM table_name_6 WHERE club = "hartlepool"
When was the game at the North Shore Events Centre?
CREATE TABLE table_name_99 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_99 WHERE venue = "north shore events centre"
### Context: CREATE TABLE table_name_99 (date VARCHAR, venue VARCHAR) ### Question: When was the game at the North Shore Events Centre? ### Answer: SELECT date FROM table_name_99 WHERE venue = "north shore events centre"
What is the report corresponding to the game that had the Townsville Crocodiles as home team?
CREATE TABLE table_name_59 (report VARCHAR, home_team VARCHAR)
SELECT report FROM table_name_59 WHERE home_team = "townsville crocodiles"
### Context: CREATE TABLE table_name_59 (report VARCHAR, home_team VARCHAR) ### Question: What is the report corresponding to the game that had the Townsville Crocodiles as home team? ### Answer: SELECT report FROM table_name_59 WHERE home_team = "townsville crocodiles"
When was the game that had Sydney Spirit as the away team?
CREATE TABLE table_name_64 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_64 WHERE away_team = "sydney spirit"
### Context: CREATE TABLE table_name_64 (date VARCHAR, away_team VARCHAR) ### Question: When was the game that had Sydney Spirit as the away team? ### Answer: SELECT date FROM table_name_64 WHERE away_team = "sydney spirit"
What was the box score for the game that had the Townsville Crocodiles as home team?
CREATE TABLE table_name_95 (Box VARCHAR, home_team VARCHAR)
SELECT Box AS score FROM table_name_95 WHERE home_team = "townsville crocodiles"
### Context: CREATE TABLE table_name_95 (Box VARCHAR, home_team VARCHAR) ### Question: What was the box score for the game that had the Townsville Crocodiles as home team? ### Answer: SELECT Box AS score FROM table_name_95 WHERE home_team = "townsville crocodiles"
What was the box score for the game that had the Cairns Taipans as home team?
CREATE TABLE table_name_23 (Box VARCHAR, home_team VARCHAR)
SELECT Box AS score FROM table_name_23 WHERE home_team = "cairns taipans"
### Context: CREATE TABLE table_name_23 (Box VARCHAR, home_team VARCHAR) ### Question: What was the box score for the game that had the Cairns Taipans as home team? ### Answer: SELECT Box AS score FROM table_name_23 WHERE home_team = "cairns taipans"
What's the lap number for time/retired of +33.912?
CREATE TABLE table_name_71 (laps VARCHAR, time_retired VARCHAR)
SELECT COUNT(laps) FROM table_name_71 WHERE time_retired = "+33.912"
### Context: CREATE TABLE table_name_71 (laps VARCHAR, time_retired VARCHAR) ### Question: What's the lap number for time/retired of +33.912? ### Answer: SELECT COUNT(laps) FROM table_name_71 WHERE time_retired = "+33.912"