question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Who was the opponent on the date of November 29, 1970 and the attendance was less than 31,427? | CREATE TABLE table_name_41 (week INTEGER, date VARCHAR, attendance VARCHAR) | SELECT AVG(week) FROM table_name_41 WHERE date = "november 29, 1970" AND attendance < 31 OFFSET 427 | ### Context: CREATE TABLE table_name_41 (week INTEGER, date VARCHAR, attendance VARCHAR) ### Question: Who was the opponent on the date of November 29, 1970 and the attendance was less than 31,427? ### Answer: SELECT AVG(week) FROM table_name_41 WHERE date = "november 29, 1970" AND attendance < 31 OFFSET 427 |
On what date was the game where is was later than Week 4 of the season and the opponent was the New York Giants? | CREATE TABLE table_name_54 (date VARCHAR, week VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_54 WHERE week > 4 AND opponent = "new york giants" | ### Context: CREATE TABLE table_name_54 (date VARCHAR, week VARCHAR, opponent VARCHAR) ### Question: On what date was the game where is was later than Week 4 of the season and the opponent was the New York Giants? ### Answer: SELECT date FROM table_name_54 WHERE week > 4 AND opponent = "new york giants" |
What was the attendance of the game on December 13, 1970? | CREATE TABLE table_name_34 (attendance VARCHAR, date VARCHAR, week VARCHAR) | SELECT COUNT(attendance) FROM table_name_34 WHERE date = "december 13, 1970" AND week > 13 | ### Context: CREATE TABLE table_name_34 (attendance VARCHAR, date VARCHAR, week VARCHAR) ### Question: What was the attendance of the game on December 13, 1970? ### Answer: SELECT COUNT(attendance) FROM table_name_34 WHERE date = "december 13, 1970" AND week > 13 |
What is the date before week 13 and Miami Dolphins as an opponent? | CREATE TABLE table_name_48 (date VARCHAR, week VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_48 WHERE week < 13 AND opponent = "miami dolphins" | ### Context: CREATE TABLE table_name_48 (date VARCHAR, week VARCHAR, opponent VARCHAR) ### Question: What is the date before week 13 and Miami Dolphins as an opponent? ### Answer: SELECT date FROM table_name_48 WHERE week < 13 AND opponent = "miami dolphins" |
What is the attendance for week 11? | CREATE TABLE table_name_59 (attendance VARCHAR, week VARCHAR) | SELECT attendance FROM table_name_59 WHERE week = 11 | ### Context: CREATE TABLE table_name_59 (attendance VARCHAR, week VARCHAR) ### Question: What is the attendance for week 11? ### Answer: SELECT attendance FROM table_name_59 WHERE week = 11 |
What is the home team's score for north melbourne? | CREATE TABLE table_name_57 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_57 WHERE home_team = "north melbourne" | ### Context: CREATE TABLE table_name_57 (home_team VARCHAR) ### Question: What is the home team's score for north melbourne? ### Answer: SELECT home_team AS score FROM table_name_57 WHERE home_team = "north melbourne" |
Who sponsors Josele Garza in all rounds? | CREATE TABLE table_name_60 (sponsor_s_ VARCHAR, rounds VARCHAR, driver_s_ VARCHAR) | SELECT sponsor_s_ FROM table_name_60 WHERE rounds = "all" AND driver_s_ = "josele garza" | ### Context: CREATE TABLE table_name_60 (sponsor_s_ VARCHAR, rounds VARCHAR, driver_s_ VARCHAR) ### Question: Who sponsors Josele Garza in all rounds? ### Answer: SELECT sponsor_s_ FROM table_name_60 WHERE rounds = "all" AND driver_s_ = "josele garza" |
Which rounds did the team Walther participate in? | CREATE TABLE table_name_77 (rounds VARCHAR, team VARCHAR) | SELECT rounds FROM table_name_77 WHERE team = "walther" | ### Context: CREATE TABLE table_name_77 (rounds VARCHAR, team VARCHAR) ### Question: Which rounds did the team Walther participate in? ### Answer: SELECT rounds FROM table_name_77 WHERE team = "walther" |
What team was Tom Sneva on in rounds 1-9? | CREATE TABLE table_name_8 (team VARCHAR, driver_s_ VARCHAR, rounds VARCHAR) | SELECT team FROM table_name_8 WHERE driver_s_ = "tom sneva" AND rounds = "1-9" | ### Context: CREATE TABLE table_name_8 (team VARCHAR, driver_s_ VARCHAR, rounds VARCHAR) ### Question: What team was Tom Sneva on in rounds 1-9? ### Answer: SELECT team FROM table_name_8 WHERE driver_s_ = "tom sneva" AND rounds = "1-9" |
Which rounds do Arciero Wines sponsor a March 85c chassis? | CREATE TABLE table_name_7 (rounds VARCHAR, sponsor_s_ VARCHAR, chassis VARCHAR) | SELECT rounds FROM table_name_7 WHERE sponsor_s_ = "arciero wines" AND chassis = "march 85c" | ### Context: CREATE TABLE table_name_7 (rounds VARCHAR, sponsor_s_ VARCHAR, chassis VARCHAR) ### Question: Which rounds do Arciero Wines sponsor a March 85c chassis? ### Answer: SELECT rounds FROM table_name_7 WHERE sponsor_s_ = "arciero wines" AND chassis = "march 85c" |
What years were the inactive North Carolina chapter active? | CREATE TABLE table_name_15 (charter_range VARCHAR, status VARCHAR, state VARCHAR) | SELECT charter_range FROM table_name_15 WHERE status = "inactive" AND state = "north carolina" | ### Context: CREATE TABLE table_name_15 (charter_range VARCHAR, status VARCHAR, state VARCHAR) ### Question: What years were the inactive North Carolina chapter active? ### Answer: SELECT charter_range FROM table_name_15 WHERE status = "inactive" AND state = "north carolina" |
What years were the inactive Idaho chapter active? | CREATE TABLE table_name_99 (charter_range VARCHAR, status VARCHAR, state VARCHAR) | SELECT charter_range FROM table_name_99 WHERE status = "inactive" AND state = "idaho" | ### Context: CREATE TABLE table_name_99 (charter_range VARCHAR, status VARCHAR, state VARCHAR) ### Question: What years were the inactive Idaho chapter active? ### Answer: SELECT charter_range FROM table_name_99 WHERE status = "inactive" AND state = "idaho" |
Which chapter was active from 1906-1991? | CREATE TABLE table_name_5 (chapter VARCHAR, charter_range VARCHAR) | SELECT chapter FROM table_name_5 WHERE charter_range = "1906-1991" | ### Context: CREATE TABLE table_name_5 (chapter VARCHAR, charter_range VARCHAR) ### Question: Which chapter was active from 1906-1991? ### Answer: SELECT chapter FROM table_name_5 WHERE charter_range = "1906-1991" |
What are the active dates for the Montana State University chapter? | CREATE TABLE table_name_85 (charter_range VARCHAR, school VARCHAR) | SELECT charter_range FROM table_name_85 WHERE school = "montana state university" | ### Context: CREATE TABLE table_name_85 (charter_range VARCHAR, school VARCHAR) ### Question: What are the active dates for the Montana State University chapter? ### Answer: SELECT charter_range FROM table_name_85 WHERE school = "montana state university" |
What state had an active chapter from 1906-1991? | CREATE TABLE table_name_36 (state VARCHAR, charter_range VARCHAR) | SELECT state FROM table_name_36 WHERE charter_range = "1906-1991" | ### Context: CREATE TABLE table_name_36 (state VARCHAR, charter_range VARCHAR) ### Question: What state had an active chapter from 1906-1991? ### Answer: SELECT state FROM table_name_36 WHERE charter_range = "1906-1991" |
How many people were at the game with a record of 6-1? | CREATE TABLE table_name_50 (attendance VARCHAR, record VARCHAR) | SELECT attendance FROM table_name_50 WHERE record = "6-1" | ### Context: CREATE TABLE table_name_50 (attendance VARCHAR, record VARCHAR) ### Question: How many people were at the game with a record of 6-1? ### Answer: SELECT attendance FROM table_name_50 WHERE record = "6-1" |
When was there a game against the Indianapolis colts? | CREATE TABLE table_name_72 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_72 WHERE opponent = "indianapolis colts" | ### Context: CREATE TABLE table_name_72 (date VARCHAR, opponent VARCHAR) ### Question: When was there a game against the Indianapolis colts? ### Answer: SELECT date FROM table_name_72 WHERE opponent = "indianapolis colts" |
What is the lowest crowd size at MCG? | CREATE TABLE table_name_91 (crowd INTEGER, venue VARCHAR) | SELECT MIN(crowd) FROM table_name_91 WHERE venue = "mcg" | ### Context: CREATE TABLE table_name_91 (crowd INTEGER, venue VARCHAR) ### Question: What is the lowest crowd size at MCG? ### Answer: SELECT MIN(crowd) FROM table_name_91 WHERE venue = "mcg" |
What is the average crowd size when the home team is North Melbourne? | CREATE TABLE table_name_36 (crowd INTEGER, home_team VARCHAR) | SELECT AVG(crowd) FROM table_name_36 WHERE home_team = "north melbourne" | ### Context: CREATE TABLE table_name_36 (crowd INTEGER, home_team VARCHAR) ### Question: What is the average crowd size when the home team is North Melbourne? ### Answer: SELECT AVG(crowd) FROM table_name_36 WHERE home_team = "north melbourne" |
What is the away team score when the home team is North Melbourne? | CREATE TABLE table_name_52 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_52 WHERE home_team = "north melbourne" | ### Context: CREATE TABLE table_name_52 (away_team VARCHAR, home_team VARCHAR) ### Question: What is the away team score when the home team is North Melbourne? ### Answer: SELECT away_team AS score FROM table_name_52 WHERE home_team = "north melbourne" |
What is the pole position for marlboro challenge? | CREATE TABLE table_name_47 (pole_position VARCHAR, race_name VARCHAR) | SELECT pole_position FROM table_name_47 WHERE race_name = "marlboro challenge" | ### Context: CREATE TABLE table_name_47 (pole_position VARCHAR, race_name VARCHAR) ### Question: What is the pole position for marlboro challenge? ### Answer: SELECT pole_position FROM table_name_47 WHERE race_name = "marlboro challenge" |
What circut has an unknown fastest lap on July 19? | CREATE TABLE table_name_76 (circuit VARCHAR, fastest_lap VARCHAR, date VARCHAR) | SELECT circuit FROM table_name_76 WHERE fastest_lap = "unknown" AND date = "july 19" | ### Context: CREATE TABLE table_name_76 (circuit VARCHAR, fastest_lap VARCHAR, date VARCHAR) ### Question: What circut has an unknown fastest lap on July 19? ### Answer: SELECT circuit FROM table_name_76 WHERE fastest_lap = "unknown" AND date = "july 19" |
What circuit did marlboro team penske win with an unknown fastest lap? | CREATE TABLE table_name_67 (circuit VARCHAR, winning_team VARCHAR, fastest_lap VARCHAR) | SELECT circuit FROM table_name_67 WHERE winning_team = "marlboro team penske" AND fastest_lap = "unknown" | ### Context: CREATE TABLE table_name_67 (circuit VARCHAR, winning_team VARCHAR, fastest_lap VARCHAR) ### Question: What circuit did marlboro team penske win with an unknown fastest lap? ### Answer: SELECT circuit FROM table_name_67 WHERE winning_team = "marlboro team penske" AND fastest_lap = "unknown" |
What team does mario andretti play pole position for? | CREATE TABLE table_name_9 (winning_team VARCHAR, pole_position VARCHAR) | SELECT winning_team FROM table_name_9 WHERE pole_position = "mario andretti" | ### Context: CREATE TABLE table_name_9 (winning_team VARCHAR, pole_position VARCHAR) ### Question: What team does mario andretti play pole position for? ### Answer: SELECT winning_team FROM table_name_9 WHERE pole_position = "mario andretti" |
What was the venue where Carlton was the away team? | CREATE TABLE table_name_3 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_3 WHERE away_team = "carlton" | ### Context: CREATE TABLE table_name_3 (venue VARCHAR, away_team VARCHAR) ### Question: What was the venue where Carlton was the away team? ### Answer: SELECT venue FROM table_name_3 WHERE away_team = "carlton" |
What was the venue when Carlton was the away team? | CREATE TABLE table_name_28 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_28 WHERE away_team = "carlton" | ### Context: CREATE TABLE table_name_28 (venue VARCHAR, away_team VARCHAR) ### Question: What was the venue when Carlton was the away team? ### Answer: SELECT venue FROM table_name_28 WHERE away_team = "carlton" |
What was the highest heat with a time slower than 48.87 from sweden? | CREATE TABLE table_name_48 (heat INTEGER, time VARCHAR, nationality VARCHAR) | SELECT MAX(heat) FROM table_name_48 WHERE time > 48.87 AND nationality = "sweden" | ### Context: CREATE TABLE table_name_48 (heat INTEGER, time VARCHAR, nationality VARCHAR) ### Question: What was the highest heat with a time slower than 48.87 from sweden? ### Answer: SELECT MAX(heat) FROM table_name_48 WHERE time > 48.87 AND nationality = "sweden" |
How many lanes featured a swimmer ranked above 4, in a heat later than 1, from australia, named ashley callus? | CREATE TABLE table_name_62 (lane VARCHAR, name VARCHAR, nationality VARCHAR, rank VARCHAR, heat VARCHAR) | SELECT COUNT(lane) FROM table_name_62 WHERE rank > 4 AND heat > 1 AND nationality = "australia" AND name = "ashley callus" | ### Context: CREATE TABLE table_name_62 (lane VARCHAR, name VARCHAR, nationality VARCHAR, rank VARCHAR, heat VARCHAR) ### Question: How many lanes featured a swimmer ranked above 4, in a heat later than 1, from australia, named ashley callus? ### Answer: SELECT COUNT(lane) FROM table_name_62 WHERE rank > 4 AND heat > 1 AND nationality = "australia" AND name = "ashley callus" |
What is the Eurozone result for Population M (LUZ) of 3.08? | CREATE TABLE table_name_24 (eurozone VARCHAR, population_m__luz_ VARCHAR) | SELECT eurozone FROM table_name_24 WHERE population_m__luz_ = 3.08 | ### Context: CREATE TABLE table_name_24 (eurozone VARCHAR, population_m__luz_ VARCHAR) ### Question: What is the Eurozone result for Population M (LUZ) of 3.08? ### Answer: SELECT eurozone FROM table_name_24 WHERE population_m__luz_ = 3.08 |
What is the GDP $IDB in Istanbul? | CREATE TABLE table_name_42 (gdp_in_$id_b VARCHAR, city VARCHAR) | SELECT gdp_in_$id_b FROM table_name_42 WHERE city = "istanbul" | ### Context: CREATE TABLE table_name_42 (gdp_in_$id_b VARCHAR, city VARCHAR) ### Question: What is the GDP $IDB in Istanbul? ### Answer: SELECT gdp_in_$id_b FROM table_name_42 WHERE city = "istanbul" |
What is the most recently founded school that joined in 2011? | CREATE TABLE table_name_94 (founded INTEGER, joined VARCHAR) | SELECT MAX(founded) FROM table_name_94 WHERE joined = "2011" | ### Context: CREATE TABLE table_name_94 (founded INTEGER, joined VARCHAR) ### Question: What is the most recently founded school that joined in 2011? ### Answer: SELECT MAX(founded) FROM table_name_94 WHERE joined = "2011" |
What was the home team that played Geelong? | CREATE TABLE table_name_43 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_43 WHERE away_team = "geelong" | ### Context: CREATE TABLE table_name_43 (home_team VARCHAR, away_team VARCHAR) ### Question: What was the home team that played Geelong? ### Answer: SELECT home_team AS score FROM table_name_43 WHERE away_team = "geelong" |
What was the home team's score when they played Richmond? | CREATE TABLE table_name_13 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_13 WHERE away_team = "richmond" | ### Context: CREATE TABLE table_name_13 (home_team VARCHAR, away_team VARCHAR) ### Question: What was the home team's score when they played Richmond? ### Answer: SELECT home_team AS score FROM table_name_13 WHERE away_team = "richmond" |
What is Melbourne's home venue? | CREATE TABLE table_name_74 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_74 WHERE home_team = "melbourne" | ### Context: CREATE TABLE table_name_74 (venue VARCHAR, home_team VARCHAR) ### Question: What is Melbourne's home venue? ### Answer: SELECT venue FROM table_name_74 WHERE home_team = "melbourne" |
What was the overall draft pick for the player selected for the tight end position? | CREATE TABLE table_name_72 (overall VARCHAR, position VARCHAR) | SELECT overall FROM table_name_72 WHERE position = "tight end" | ### Context: CREATE TABLE table_name_72 (overall VARCHAR, position VARCHAR) ### Question: What was the overall draft pick for the player selected for the tight end position? ### Answer: SELECT overall FROM table_name_72 WHERE position = "tight end" |
On what date is Hawthorn the home team? | CREATE TABLE table_name_10 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_10 WHERE home_team = "hawthorn" | ### Context: CREATE TABLE table_name_10 (date VARCHAR, home_team VARCHAR) ### Question: On what date is Hawthorn the home team? ### Answer: SELECT date FROM table_name_10 WHERE home_team = "hawthorn" |
On what date is St Kilda the away team? | CREATE TABLE table_name_31 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_31 WHERE away_team = "st kilda" | ### Context: CREATE TABLE table_name_31 (date VARCHAR, away_team VARCHAR) ### Question: On what date is St Kilda the away team? ### Answer: SELECT date FROM table_name_31 WHERE away_team = "st kilda" |
Who did the Browns play on October 13, 1968? | CREATE TABLE table_name_7 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_7 WHERE date = "october 13, 1968" | ### Context: CREATE TABLE table_name_7 (opponent VARCHAR, date VARCHAR) ### Question: Who did the Browns play on October 13, 1968? ### Answer: SELECT opponent FROM table_name_7 WHERE date = "october 13, 1968" |
Which game is named tsegay kebede category:articles with hcards? | CREATE TABLE table_name_70 (games VARCHAR, name VARCHAR) | SELECT games FROM table_name_70 WHERE name = "tsegay kebede category:articles with hcards" | ### Context: CREATE TABLE table_name_70 (games VARCHAR, name VARCHAR) ### Question: Which game is named tsegay kebede category:articles with hcards? ### Answer: SELECT games FROM table_name_70 WHERE name = "tsegay kebede category:articles with hcards" |
Which event in the 2000 Sydney games was in the category gete wami category:articles with hcards? | CREATE TABLE table_name_73 (event VARCHAR, games VARCHAR, name VARCHAR) | SELECT event FROM table_name_73 WHERE games = "2000 sydney" AND name = "gete wami category:articles with hcards" | ### Context: CREATE TABLE table_name_73 (event VARCHAR, games VARCHAR, name VARCHAR) ### Question: Which event in the 2000 Sydney games was in the category gete wami category:articles with hcards? ### Answer: SELECT event FROM table_name_73 WHERE games = "2000 sydney" AND name = "gete wami category:articles with hcards" |
Which event in the 2008 Beijing Games had a bronze medal? | CREATE TABLE table_name_34 (event VARCHAR, games VARCHAR, medal VARCHAR) | SELECT event FROM table_name_34 WHERE games = "2008 beijing" AND medal = "bronze" | ### Context: CREATE TABLE table_name_34 (event VARCHAR, games VARCHAR, medal VARCHAR) ### Question: Which event in the 2008 Beijing Games had a bronze medal? ### Answer: SELECT event FROM table_name_34 WHERE games = "2008 beijing" AND medal = "bronze" |
What is the medal named fatuma roba category:articles with hcards for? | CREATE TABLE table_name_73 (medal VARCHAR, name VARCHAR) | SELECT medal FROM table_name_73 WHERE name = "fatuma roba category:articles with hcards" | ### Context: CREATE TABLE table_name_73 (medal VARCHAR, name VARCHAR) ### Question: What is the medal named fatuma roba category:articles with hcards for? ### Answer: SELECT medal FROM table_name_73 WHERE name = "fatuma roba category:articles with hcards" |
What is the game named derartu tulu category:articles with hcards? | CREATE TABLE table_name_15 (games VARCHAR, name VARCHAR) | SELECT games FROM table_name_15 WHERE name = "derartu tulu category:articles with hcards" | ### Context: CREATE TABLE table_name_15 (games VARCHAR, name VARCHAR) ### Question: What is the game named derartu tulu category:articles with hcards? ### Answer: SELECT games FROM table_name_15 WHERE name = "derartu tulu category:articles with hcards" |
What is the fastest time for the Kentucky Derby race? | CREATE TABLE table_name_40 (time VARCHAR, race VARCHAR) | SELECT time FROM table_name_40 WHERE race = "kentucky derby" | ### Context: CREATE TABLE table_name_40 (time VARCHAR, race VARCHAR) ### Question: What is the fastest time for the Kentucky Derby race? ### Answer: SELECT time FROM table_name_40 WHERE race = "kentucky derby" |
Which track does the Woodward Stakes race take place on? | CREATE TABLE table_name_72 (track VARCHAR, race VARCHAR) | SELECT track FROM table_name_72 WHERE race = "woodward stakes" | ### Context: CREATE TABLE table_name_72 (track VARCHAR, race VARCHAR) ### Question: Which track does the Woodward Stakes race take place on? ### Answer: SELECT track FROM table_name_72 WHERE race = "woodward stakes" |
What grade did jockey Robby Albarado get when racing with Ravens Pass? | CREATE TABLE table_name_78 (grade VARCHAR, jockey VARCHAR, runner_up_winner VARCHAR) | SELECT grade FROM table_name_78 WHERE jockey = "robby albarado" AND runner_up_winner = "ravens pass" | ### Context: CREATE TABLE table_name_78 (grade VARCHAR, jockey VARCHAR, runner_up_winner VARCHAR) ### Question: What grade did jockey Robby Albarado get when racing with Ravens Pass? ### Answer: SELECT grade FROM table_name_78 WHERE jockey = "robby albarado" AND runner_up_winner = "ravens pass" |
In which Age Category is Marco Manenti? | CREATE TABLE table_name_44 (age_category VARCHAR, name VARCHAR) | SELECT age_category FROM table_name_44 WHERE name = "marco manenti" | ### Context: CREATE TABLE table_name_44 (age_category VARCHAR, name VARCHAR) ### Question: In which Age Category is Marco Manenti? ### Answer: SELECT age_category FROM table_name_44 WHERE name = "marco manenti" |
Which year has a Time of 13:23:43? | CREATE TABLE table_name_50 (year VARCHAR, time VARCHAR) | SELECT year FROM table_name_50 WHERE time = "13:23:43" | ### Context: CREATE TABLE table_name_50 (year VARCHAR, time VARCHAR) ### Question: Which year has a Time of 13:23:43? ### Answer: SELECT year FROM table_name_50 WHERE time = "13:23:43" |
What score has 3-7 as the record? | CREATE TABLE table_name_46 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_46 WHERE record = "3-7" | ### Context: CREATE TABLE table_name_46 (score VARCHAR, record VARCHAR) ### Question: What score has 3-7 as the record? ### Answer: SELECT score FROM table_name_46 WHERE record = "3-7" |
What loss has 16,458 as an Att.? | CREATE TABLE table_name_82 (loss VARCHAR, att VARCHAR) | SELECT loss FROM table_name_82 WHERE att = "16,458" | ### Context: CREATE TABLE table_name_82 (loss VARCHAR, att VARCHAR) ### Question: What loss has 16,458 as an Att.? ### Answer: SELECT loss FROM table_name_82 WHERE att = "16,458" |
What date has 5-3 as the score, and holt (1-1) as a loss? | CREATE TABLE table_name_95 (date VARCHAR, score VARCHAR, loss VARCHAR) | SELECT date FROM table_name_95 WHERE score = "5-3" AND loss = "holt (1-1)" | ### Context: CREATE TABLE table_name_95 (date VARCHAR, score VARCHAR, loss VARCHAR) ### Question: What date has 5-3 as the score, and holt (1-1) as a loss? ### Answer: SELECT date FROM table_name_95 WHERE score = "5-3" AND loss = "holt (1-1)" |
What is the sector of the company with an incorporated date before 1983? | CREATE TABLE table_name_64 (sector VARCHAR, incorporated INTEGER) | SELECT sector FROM table_name_64 WHERE incorporated < 1983 | ### Context: CREATE TABLE table_name_64 (sector VARCHAR, incorporated INTEGER) ### Question: What is the sector of the company with an incorporated date before 1983? ### Answer: SELECT sector FROM table_name_64 WHERE incorporated < 1983 |
What is the average incorporataed year of the Air India Charters company? | CREATE TABLE table_name_25 (incorporated INTEGER, company VARCHAR) | SELECT AVG(incorporated) FROM table_name_25 WHERE company = "air india charters" | ### Context: CREATE TABLE table_name_25 (incorporated INTEGER, company VARCHAR) ### Question: What is the average incorporataed year of the Air India Charters company? ### Answer: SELECT AVG(incorporated) FROM table_name_25 WHERE company = "air india charters" |
How many votes were tallied in 1956 with a % of national vote larger than 11.47? | CREATE TABLE table_name_66 (votes INTEGER, date VARCHAR, _percentage_of_national_vote VARCHAR) | SELECT SUM(votes) FROM table_name_66 WHERE date = "1956" AND _percentage_of_national_vote > 11.47 | ### Context: CREATE TABLE table_name_66 (votes INTEGER, date VARCHAR, _percentage_of_national_vote VARCHAR) ### Question: How many votes were tallied in 1956 with a % of national vote larger than 11.47? ### Answer: SELECT SUM(votes) FROM table_name_66 WHERE date = "1956" AND _percentage_of_national_vote > 11.47 |
How many candidates were nominated in 1952 with under 305,133 votes? | CREATE TABLE table_name_51 (candidates_nominated INTEGER, date VARCHAR, votes VARCHAR) | SELECT SUM(candidates_nominated) FROM table_name_51 WHERE date = "1952" AND votes < 305 OFFSET 133 | ### Context: CREATE TABLE table_name_51 (candidates_nominated INTEGER, date VARCHAR, votes VARCHAR) ### Question: How many candidates were nominated in 1952 with under 305,133 votes? ### Answer: SELECT SUM(candidates_nominated) FROM table_name_51 WHERE date = "1952" AND votes < 305 OFFSET 133 |
How many votes were tallied with a % of national vote of 13.11, and over 39 candidates nominated? | CREATE TABLE table_name_72 (votes VARCHAR, _percentage_of_national_vote VARCHAR, candidates_nominated VARCHAR) | SELECT COUNT(votes) FROM table_name_72 WHERE _percentage_of_national_vote = 13.11 AND candidates_nominated > 39 | ### Context: CREATE TABLE table_name_72 (votes VARCHAR, _percentage_of_national_vote VARCHAR, candidates_nominated VARCHAR) ### Question: How many votes were tallied with a % of national vote of 13.11, and over 39 candidates nominated? ### Answer: SELECT COUNT(votes) FROM table_name_72 WHERE _percentage_of_national_vote = 13.11 AND candidates_nominated > 39 |
Who is the visitor with a record of 14–17–5? | CREATE TABLE table_name_54 (visitor VARCHAR, record VARCHAR) | SELECT visitor FROM table_name_54 WHERE record = "14–17–5" | ### Context: CREATE TABLE table_name_54 (visitor VARCHAR, record VARCHAR) ### Question: Who is the visitor with a record of 14–17–5? ### Answer: SELECT visitor FROM table_name_54 WHERE record = "14–17–5" |
How many in attendance when Penguins were home with a record of 14–19–6 with less than 34 points? | CREATE TABLE table_name_98 (attendance VARCHAR, points VARCHAR, home VARCHAR, record VARCHAR) | SELECT COUNT(attendance) FROM table_name_98 WHERE home = "penguins" AND record = "14–19–6" AND points < 34 | ### Context: CREATE TABLE table_name_98 (attendance VARCHAR, points VARCHAR, home VARCHAR, record VARCHAR) ### Question: How many in attendance when Penguins were home with a record of 14–19–6 with less than 34 points? ### Answer: SELECT COUNT(attendance) FROM table_name_98 WHERE home = "penguins" AND record = "14–19–6" AND points < 34 |
Which Format has a Catalog of 561 445-1? | CREATE TABLE table_name_81 (format VARCHAR, catalog VARCHAR) | SELECT format FROM table_name_81 WHERE catalog = "561 445-1" | ### Context: CREATE TABLE table_name_81 (format VARCHAR, catalog VARCHAR) ### Question: Which Format has a Catalog of 561 445-1? ### Answer: SELECT format FROM table_name_81 WHERE catalog = "561 445-1" |
Which Region has a Date of early september 1999? | CREATE TABLE table_name_67 (region VARCHAR, date VARCHAR) | SELECT region FROM table_name_67 WHERE date = "early september 1999" | ### Context: CREATE TABLE table_name_67 (region VARCHAR, date VARCHAR) ### Question: Which Region has a Date of early september 1999? ### Answer: SELECT region FROM table_name_67 WHERE date = "early september 1999" |
Which Region has a Date of early september 1999? | CREATE TABLE table_name_15 (region VARCHAR, date VARCHAR) | SELECT region FROM table_name_15 WHERE date = "early september 1999" | ### Context: CREATE TABLE table_name_15 (region VARCHAR, date VARCHAR) ### Question: Which Region has a Date of early september 1999? ### Answer: SELECT region FROM table_name_15 WHERE date = "early september 1999" |
What was the date of the game with a loss of White (4-5)? | CREATE TABLE table_name_34 (date VARCHAR, loss VARCHAR) | SELECT date FROM table_name_34 WHERE loss = "white (4-5)" | ### Context: CREATE TABLE table_name_34 (date VARCHAR, loss VARCHAR) ### Question: What was the date of the game with a loss of White (4-5)? ### Answer: SELECT date FROM table_name_34 WHERE loss = "white (4-5)" |
what score has a location and attendance of montreal forum and the date of may 10? | CREATE TABLE table_name_49 (score VARCHAR, location_attendance VARCHAR, date VARCHAR) | SELECT score FROM table_name_49 WHERE location_attendance = "montreal forum" AND date = "may 10" | ### Context: CREATE TABLE table_name_49 (score VARCHAR, location_attendance VARCHAR, date VARCHAR) ### Question: what score has a location and attendance of montreal forum and the date of may 10? ### Answer: SELECT score FROM table_name_49 WHERE location_attendance = "montreal forum" AND date = "may 10" |
Which Interview has a Province of monte cristi and a Swimsuit larger than 7.27 | CREATE TABLE table_name_75 (interview INTEGER, province VARCHAR, swimsuit VARCHAR) | SELECT SUM(interview) FROM table_name_75 WHERE province = "monte cristi" AND swimsuit > 7.27 | ### Context: CREATE TABLE table_name_75 (interview INTEGER, province VARCHAR, swimsuit VARCHAR) ### Question: Which Interview has a Province of monte cristi and a Swimsuit larger than 7.27 ### Answer: SELECT SUM(interview) FROM table_name_75 WHERE province = "monte cristi" AND swimsuit > 7.27 |
WHich Evening Gown has a Swimsuit smaller than 7.99 and a Interview larger than 7.98? | CREATE TABLE table_name_21 (evening_gown INTEGER, swimsuit VARCHAR, interview VARCHAR) | SELECT AVG(evening_gown) FROM table_name_21 WHERE swimsuit < 7.99 AND interview > 7.98 | ### Context: CREATE TABLE table_name_21 (evening_gown INTEGER, swimsuit VARCHAR, interview VARCHAR) ### Question: WHich Evening Gown has a Swimsuit smaller than 7.99 and a Interview larger than 7.98? ### Answer: SELECT AVG(evening_gown) FROM table_name_21 WHERE swimsuit < 7.99 AND interview > 7.98 |
Which Interview has a Swimsuit larger than 7.6, and a Province of la vega, and an Average smaller than 8.38? | CREATE TABLE table_name_11 (interview INTEGER, average VARCHAR, swimsuit VARCHAR, province VARCHAR) | SELECT SUM(interview) FROM table_name_11 WHERE swimsuit > 7.6 AND province = "la vega" AND average < 8.38 | ### Context: CREATE TABLE table_name_11 (interview INTEGER, average VARCHAR, swimsuit VARCHAR, province VARCHAR) ### Question: Which Interview has a Swimsuit larger than 7.6, and a Province of la vega, and an Average smaller than 8.38? ### Answer: SELECT SUM(interview) FROM table_name_11 WHERE swimsuit > 7.6 AND province = "la vega" AND average < 8.38 |
Which items in segment A have a segment D of marble sculptures? | CREATE TABLE table_name_34 (segment_a VARCHAR, segment_d VARCHAR) | SELECT segment_a FROM table_name_34 WHERE segment_d = "marble sculptures" | ### Context: CREATE TABLE table_name_34 (segment_a VARCHAR, segment_d VARCHAR) ### Question: Which items in segment A have a segment D of marble sculptures? ### Answer: SELECT segment_a FROM table_name_34 WHERE segment_d = "marble sculptures" |
Which segment A also has a segment D of kitchen shears? | CREATE TABLE table_name_57 (segment_a VARCHAR, segment_d VARCHAR) | SELECT segment_a FROM table_name_57 WHERE segment_d = "kitchen shears" | ### Context: CREATE TABLE table_name_57 (segment_a VARCHAR, segment_d VARCHAR) ### Question: Which segment A also has a segment D of kitchen shears? ### Answer: SELECT segment_a FROM table_name_57 WHERE segment_d = "kitchen shears" |
Which items in segment C is episode 160? | CREATE TABLE table_name_30 (segment_c VARCHAR, episode VARCHAR) | SELECT segment_c FROM table_name_30 WHERE episode = 160 | ### Context: CREATE TABLE table_name_30 (segment_c VARCHAR, episode VARCHAR) ### Question: Which items in segment C is episode 160? ### Answer: SELECT segment_c FROM table_name_30 WHERE episode = 160 |
Which season last aired on May 6, 1987? | CREATE TABLE table_name_77 (season VARCHAR, last_airdate VARCHAR) | SELECT season FROM table_name_77 WHERE last_airdate = "may 6, 1987" | ### Context: CREATE TABLE table_name_77 (season VARCHAR, last_airdate VARCHAR) ### Question: Which season last aired on May 6, 1987? ### Answer: SELECT season FROM table_name_77 WHERE last_airdate = "may 6, 1987" |
What is the Nielsen ranking for Season 8? | CREATE TABLE table_name_99 (nielsen_ranking VARCHAR, season VARCHAR) | SELECT nielsen_ranking FROM table_name_99 WHERE season = "season 8" | ### Context: CREATE TABLE table_name_99 (nielsen_ranking VARCHAR, season VARCHAR) ### Question: What is the Nielsen ranking for Season 8? ### Answer: SELECT nielsen_ranking FROM table_name_99 WHERE season = "season 8" |
What was the first airdate or the season that had less than 24 episodes and a Nielsen ranking of #38? | CREATE TABLE table_name_68 (first_airdate VARCHAR, episodes VARCHAR, nielsen_ranking VARCHAR) | SELECT first_airdate FROM table_name_68 WHERE episodes < 24 AND nielsen_ranking = "#38" | ### Context: CREATE TABLE table_name_68 (first_airdate VARCHAR, episodes VARCHAR, nielsen_ranking VARCHAR) ### Question: What was the first airdate or the season that had less than 24 episodes and a Nielsen ranking of #38? ### Answer: SELECT first_airdate FROM table_name_68 WHERE episodes < 24 AND nielsen_ranking = "#38" |
How many episodes were in the season that first aired on September 22, 1989? | CREATE TABLE table_name_98 (episodes VARCHAR, first_airdate VARCHAR) | SELECT episodes FROM table_name_98 WHERE first_airdate = "september 22, 1989" | ### Context: CREATE TABLE table_name_98 (episodes VARCHAR, first_airdate VARCHAR) ### Question: How many episodes were in the season that first aired on September 22, 1989? ### Answer: SELECT episodes FROM table_name_98 WHERE first_airdate = "september 22, 1989" |
How many episodes were in the season that ended on April 29, 1986? | CREATE TABLE table_name_65 (episodes INTEGER, last_airdate VARCHAR) | SELECT AVG(episodes) FROM table_name_65 WHERE last_airdate = "april 29, 1986" | ### Context: CREATE TABLE table_name_65 (episodes INTEGER, last_airdate VARCHAR) ### Question: How many episodes were in the season that ended on April 29, 1986? ### Answer: SELECT AVG(episodes) FROM table_name_65 WHERE last_airdate = "april 29, 1986" |
Where the ship is Dahlgren what is the build as? | CREATE TABLE table_name_28 (built_as VARCHAR, ship VARCHAR) | SELECT built_as FROM table_name_28 WHERE ship = "dahlgren" | ### Context: CREATE TABLE table_name_28 (built_as VARCHAR, ship VARCHAR) ### Question: Where the ship is Dahlgren what is the build as? ### Answer: SELECT built_as FROM table_name_28 WHERE ship = "dahlgren" |
Where the NRV link is CGN38, what is the reclassified as? | CREATE TABLE table_name_35 (reclassified_as VARCHAR, nvr_link VARCHAR) | SELECT reclassified_as FROM table_name_35 WHERE nvr_link = "cgn38" | ### Context: CREATE TABLE table_name_35 (reclassified_as VARCHAR, nvr_link VARCHAR) ### Question: Where the NRV link is CGN38, what is the reclassified as? ### Answer: SELECT reclassified_as FROM table_name_35 WHERE nvr_link = "cgn38" |
Where the built as is DLG-23, what is the class? | CREATE TABLE table_name_98 (class VARCHAR, built_as VARCHAR) | SELECT class FROM table_name_98 WHERE built_as = "dlg-23" | ### Context: CREATE TABLE table_name_98 (class VARCHAR, built_as VARCHAR) ### Question: Where the built as is DLG-23, what is the class? ### Answer: SELECT class FROM table_name_98 WHERE built_as = "dlg-23" |
What is the Total medals won by the nation in Rank 6 with less than 2 Bronze medals? | CREATE TABLE table_name_56 (total INTEGER, rank VARCHAR, bronze VARCHAR) | SELECT SUM(total) FROM table_name_56 WHERE rank = "6" AND bronze < 2 | ### Context: CREATE TABLE table_name_56 (total INTEGER, rank VARCHAR, bronze VARCHAR) ### Question: What is the Total medals won by the nation in Rank 6 with less than 2 Bronze medals? ### Answer: SELECT SUM(total) FROM table_name_56 WHERE rank = "6" AND bronze < 2 |
How many Gold medals were won by the Nation that had more than 12 Bronze medals and less than 124 Total medals? | CREATE TABLE table_name_56 (gold VARCHAR, bronze VARCHAR, total VARCHAR) | SELECT COUNT(gold) FROM table_name_56 WHERE bronze > 12 AND total < 124 | ### Context: CREATE TABLE table_name_56 (gold VARCHAR, bronze VARCHAR, total VARCHAR) ### Question: How many Gold medals were won by the Nation that had more than 12 Bronze medals and less than 124 Total medals? ### Answer: SELECT COUNT(gold) FROM table_name_56 WHERE bronze > 12 AND total < 124 |
December smaller than 21, and a Opponent of buffalo sabres had what score? | CREATE TABLE table_name_68 (score VARCHAR, december VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_68 WHERE december < 21 AND opponent = "buffalo sabres" | ### Context: CREATE TABLE table_name_68 (score VARCHAR, december VARCHAR, opponent VARCHAR) ### Question: December smaller than 21, and a Opponent of buffalo sabres had what score? ### Answer: SELECT score FROM table_name_68 WHERE december < 21 AND opponent = "buffalo sabres" |
Score of 8 - 1 happened on what day in December? | CREATE TABLE table_name_27 (december VARCHAR, score VARCHAR) | SELECT december FROM table_name_27 WHERE score = "8 - 1" | ### Context: CREATE TABLE table_name_27 (december VARCHAR, score VARCHAR) ### Question: Score of 8 - 1 happened on what day in December? ### Answer: SELECT december FROM table_name_27 WHERE score = "8 - 1" |
December larger than 21, and a Opponent of Pittsburgh penguins had what average game? | CREATE TABLE table_name_30 (game INTEGER, december VARCHAR, opponent VARCHAR) | SELECT AVG(game) FROM table_name_30 WHERE december > 21 AND opponent = "pittsburgh penguins" | ### Context: CREATE TABLE table_name_30 (game INTEGER, december VARCHAR, opponent VARCHAR) ### Question: December larger than 21, and a Opponent of Pittsburgh penguins had what average game? ### Answer: SELECT AVG(game) FROM table_name_30 WHERE december > 21 AND opponent = "pittsburgh penguins" |
December smaller than 14, and a Game smaller than 28, and a Score of 6 - 6 involved what opponent? | CREATE TABLE table_name_16 (opponent VARCHAR, score VARCHAR, december VARCHAR, game VARCHAR) | SELECT opponent FROM table_name_16 WHERE december < 14 AND game < 28 AND score = "6 - 6" | ### Context: CREATE TABLE table_name_16 (opponent VARCHAR, score VARCHAR, december VARCHAR, game VARCHAR) ### Question: December smaller than 14, and a Game smaller than 28, and a Score of 6 - 6 involved what opponent? ### Answer: SELECT opponent FROM table_name_16 WHERE december < 14 AND game < 28 AND score = "6 - 6" |
What is the date that the item was laid down if it was launched on 1899-04-25? | CREATE TABLE table_name_95 (laid_down VARCHAR, launched VARCHAR) | SELECT laid_down FROM table_name_95 WHERE launched = "1899-04-25" | ### Context: CREATE TABLE table_name_95 (laid_down VARCHAR, launched VARCHAR) ### Question: What is the date that the item was laid down if it was launched on 1899-04-25? ### Answer: SELECT laid_down FROM table_name_95 WHERE launched = "1899-04-25" |
Which builder has the the kanji of 曙? | CREATE TABLE table_name_98 (builder VARCHAR, kanji VARCHAR) | SELECT builder FROM table_name_98 WHERE kanji = "曙" | ### Context: CREATE TABLE table_name_98 (builder VARCHAR, kanji VARCHAR) ### Question: Which builder has the the kanji of 曙? ### Answer: SELECT builder FROM table_name_98 WHERE kanji = "曙" |
Which Density per km² is the lowest one that has a Number (map) smaller than 13, and an Area in km² of 11.1? | CREATE TABLE table_name_21 (density_per_km² INTEGER, number__map_ VARCHAR, area_in_km² VARCHAR) | SELECT MIN(density_per_km²) FROM table_name_21 WHERE number__map_ < 13 AND area_in_km² = 11.1 | ### Context: CREATE TABLE table_name_21 (density_per_km² INTEGER, number__map_ VARCHAR, area_in_km² VARCHAR) ### Question: Which Density per km² is the lowest one that has a Number (map) smaller than 13, and an Area in km² of 11.1? ### Answer: SELECT MIN(density_per_km²) FROM table_name_21 WHERE number__map_ < 13 AND area_in_km² = 11.1 |
How much #s have an Area in km² larger than 13.5, and a Population Canada 2011 Census of 134,038? | CREATE TABLE table_name_3 (number__map_ VARCHAR, area_in_km² VARCHAR, population_canada_2011_census VARCHAR) | SELECT COUNT(number__map_) FROM table_name_3 WHERE area_in_km² > 13.5 AND population_canada_2011_census = 134 OFFSET 038 | ### Context: CREATE TABLE table_name_3 (number__map_ VARCHAR, area_in_km² VARCHAR, population_canada_2011_census VARCHAR) ### Question: How much #s have an Area in km² larger than 13.5, and a Population Canada 2011 Census of 134,038? ### Answer: SELECT COUNT(number__map_) FROM table_name_3 WHERE area_in_km² > 13.5 AND population_canada_2011_census = 134 OFFSET 038 |
Which Number (map) is the lowest one that has a Area in km² of 9.7, and a Population Canada 2011 Census larger than 66,158? | CREATE TABLE table_name_71 (number__map_ INTEGER, area_in_km² VARCHAR, population_canada_2011_census VARCHAR) | SELECT MIN(number__map_) FROM table_name_71 WHERE area_in_km² = 9.7 AND population_canada_2011_census > 66 OFFSET 158 | ### Context: CREATE TABLE table_name_71 (number__map_ INTEGER, area_in_km² VARCHAR, population_canada_2011_census VARCHAR) ### Question: Which Number (map) is the lowest one that has a Area in km² of 9.7, and a Population Canada 2011 Census larger than 66,158? ### Answer: SELECT MIN(number__map_) FROM table_name_71 WHERE area_in_km² = 9.7 AND population_canada_2011_census > 66 OFFSET 158 |
Attendance of 19,741 had what average week? | CREATE TABLE table_name_80 (week INTEGER, attendance VARCHAR) | SELECT AVG(week) FROM table_name_80 WHERE attendance = "19,741" | ### Context: CREATE TABLE table_name_80 (week INTEGER, attendance VARCHAR) ### Question: Attendance of 19,741 had what average week? ### Answer: SELECT AVG(week) FROM table_name_80 WHERE attendance = "19,741" |
Attendance of 29,000 occurred on what date? | CREATE TABLE table_name_80 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_80 WHERE attendance = "29,000" | ### Context: CREATE TABLE table_name_80 (date VARCHAR, attendance VARCHAR) ### Question: Attendance of 29,000 occurred on what date? ### Answer: SELECT date FROM table_name_80 WHERE attendance = "29,000" |
Opponent of Philadelphia eagles had what attendance? | CREATE TABLE table_name_38 (attendance VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_38 WHERE opponent = "philadelphia eagles" | ### Context: CREATE TABLE table_name_38 (attendance VARCHAR, opponent VARCHAR) ### Question: Opponent of Philadelphia eagles had what attendance? ### Answer: SELECT attendance FROM table_name_38 WHERE opponent = "philadelphia eagles" |
What day did Alex Best exit? | CREATE TABLE table_name_26 (exited VARCHAR, celebrity VARCHAR) | SELECT exited FROM table_name_26 WHERE celebrity = "alex best" | ### Context: CREATE TABLE table_name_26 (exited VARCHAR, celebrity VARCHAR) ### Question: What day did Alex Best exit? ### Answer: SELECT exited FROM table_name_26 WHERE celebrity = "alex best" |
What place did the celebrity who is famous for being an athlete finish? | CREATE TABLE table_name_39 (finished VARCHAR, famous_for VARCHAR) | SELECT finished FROM table_name_39 WHERE famous_for = "athlete" | ### Context: CREATE TABLE table_name_39 (finished VARCHAR, famous_for VARCHAR) ### Question: What place did the celebrity who is famous for being an athlete finish? ### Answer: SELECT finished FROM table_name_39 WHERE famous_for = "athlete" |
What place did the singer in atomic kitten finish? | CREATE TABLE table_name_91 (finished VARCHAR, famous_for VARCHAR) | SELECT finished FROM table_name_91 WHERE famous_for = "singer in atomic kitten" | ### Context: CREATE TABLE table_name_91 (finished VARCHAR, famous_for VARCHAR) ### Question: What place did the singer in atomic kitten finish? ### Answer: SELECT finished FROM table_name_91 WHERE famous_for = "singer in atomic kitten" |
Who was the celebrity who exited on day 13? | CREATE TABLE table_name_35 (celebrity VARCHAR, exited VARCHAR) | SELECT celebrity FROM table_name_35 WHERE exited = "day 13" | ### Context: CREATE TABLE table_name_35 (celebrity VARCHAR, exited VARCHAR) ### Question: Who was the celebrity who exited on day 13? ### Answer: SELECT celebrity FROM table_name_35 WHERE exited = "day 13" |
Who was the celebrity who finished in 7th place? | CREATE TABLE table_name_91 (celebrity VARCHAR, finished VARCHAR) | SELECT celebrity FROM table_name_91 WHERE finished = "7th" | ### Context: CREATE TABLE table_name_91 (celebrity VARCHAR, finished VARCHAR) ### Question: Who was the celebrity who finished in 7th place? ### Answer: SELECT celebrity FROM table_name_91 WHERE finished = "7th" |
Name of gilmar, and a Caps smaller than 94 had how many highest goals? | CREATE TABLE table_name_18 (goals INTEGER, name VARCHAR, caps VARCHAR) | SELECT MAX(goals) FROM table_name_18 WHERE name = "gilmar" AND caps < 94 | ### Context: CREATE TABLE table_name_18 (goals INTEGER, name VARCHAR, caps VARCHAR) ### Question: Name of gilmar, and a Caps smaller than 94 had how many highest goals? ### Answer: SELECT MAX(goals) FROM table_name_18 WHERE name = "gilmar" AND caps < 94 |
Caps of 93 had how many goals? | CREATE TABLE table_name_94 (goals VARCHAR, caps VARCHAR) | SELECT goals FROM table_name_94 WHERE caps = 93 | ### Context: CREATE TABLE table_name_94 (goals VARCHAR, caps VARCHAR) ### Question: Caps of 93 had how many goals? ### Answer: SELECT goals FROM table_name_94 WHERE caps = 93 |
Latest cap of september 5, 2011 had how many goals? | CREATE TABLE table_name_39 (goals VARCHAR, latest_cap VARCHAR) | SELECT goals FROM table_name_39 WHERE latest_cap = "september 5, 2011" | ### Context: CREATE TABLE table_name_39 (goals VARCHAR, latest_cap VARCHAR) ### Question: Latest cap of september 5, 2011 had how many goals? ### Answer: SELECT goals FROM table_name_39 WHERE latest_cap = "september 5, 2011" |
Name of rivelino had how many highest caps? | CREATE TABLE table_name_65 (caps INTEGER, name VARCHAR) | SELECT MAX(caps) FROM table_name_65 WHERE name = "rivelino" | ### Context: CREATE TABLE table_name_65 (caps INTEGER, name VARCHAR) ### Question: Name of rivelino had how many highest caps? ### Answer: SELECT MAX(caps) FROM table_name_65 WHERE name = "rivelino" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.