question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What is the leading scorer of the game with an attendance of 14,096? | CREATE TABLE table_name_97 (leading_scorer VARCHAR, attendance VARCHAR) | SELECT leading_scorer FROM table_name_97 WHERE attendance = "14,096" | ### Context: CREATE TABLE table_name_97 (leading_scorer VARCHAR, attendance VARCHAR) ### Question: What is the leading scorer of the game with an attendance of 14,096? ### Answer: SELECT leading_scorer FROM table_name_97 WHERE attendance = "14,096" |
What is the leading scorer of the game with the Celtics as the visiting team? | CREATE TABLE table_name_59 (leading_scorer VARCHAR, visitor VARCHAR) | SELECT leading_scorer FROM table_name_59 WHERE visitor = "celtics" | ### Context: CREATE TABLE table_name_59 (leading_scorer VARCHAR, visitor VARCHAR) ### Question: What is the leading scorer of the game with the Celtics as the visiting team? ### Answer: SELECT leading_scorer FROM table_name_59 WHERE visitor = "celtics" |
What is the date of the game with an attendance of 19,183? | CREATE TABLE table_name_7 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_7 WHERE attendance = "19,183" | ### Context: CREATE TABLE table_name_7 (date VARCHAR, attendance VARCHAR) ### Question: What is the date of the game with an attendance of 19,183? ### Answer: SELECT date FROM table_name_7 WHERE attendance = "19,183" |
Name the time with track number less than 4 for you're my everything | CREATE TABLE table_name_58 (time VARCHAR, track_number VARCHAR, song_title VARCHAR) | SELECT time FROM table_name_58 WHERE track_number < 4 AND song_title = "you're my everything" | ### Context: CREATE TABLE table_name_58 (time VARCHAR, track_number VARCHAR, song_title VARCHAR) ### Question: Name the time with track number less than 4 for you're my everything ### Answer: SELECT time FROM table_name_58 WHERE track_number < 4 AND song_title = "you're my everything" |
Name the orchestra for ted varnick | CREATE TABLE table_name_41 (orchestra VARCHAR, songwriter_s_ VARCHAR) | SELECT orchestra FROM table_name_41 WHERE songwriter_s_ = "ted varnick" | ### Context: CREATE TABLE table_name_41 (orchestra VARCHAR, songwriter_s_ VARCHAR) ### Question: Name the orchestra for ted varnick ### Answer: SELECT orchestra FROM table_name_41 WHERE songwriter_s_ = "ted varnick" |
Name the songwriter for track number 12 | CREATE TABLE table_name_60 (songwriter_s_ VARCHAR, track_number VARCHAR) | SELECT songwriter_s_ FROM table_name_60 WHERE track_number = 12 | ### Context: CREATE TABLE table_name_60 (songwriter_s_ VARCHAR, track_number VARCHAR) ### Question: Name the songwriter for track number 12 ### Answer: SELECT songwriter_s_ FROM table_name_60 WHERE track_number = 12 |
Player of dan federman, and a Pick larger than 114 involves which highest round? | CREATE TABLE table_name_59 (round INTEGER, player VARCHAR, pick VARCHAR) | SELECT MAX(round) FROM table_name_59 WHERE player = "dan federman" AND pick > 114 | ### Context: CREATE TABLE table_name_59 (round INTEGER, player VARCHAR, pick VARCHAR) ### Question: Player of dan federman, and a Pick larger than 114 involves which highest round? ### Answer: SELECT MAX(round) FROM table_name_59 WHERE player = "dan federman" AND pick > 114 |
College of villanova has what round? | CREATE TABLE table_name_65 (round VARCHAR, college VARCHAR) | SELECT round FROM table_name_65 WHERE college = "villanova" | ### Context: CREATE TABLE table_name_65 (round VARCHAR, college VARCHAR) ### Question: College of villanova has what round? ### Answer: SELECT round FROM table_name_65 WHERE college = "villanova" |
College of boston college has what pick? | CREATE TABLE table_name_61 (pick VARCHAR, college VARCHAR) | SELECT pick FROM table_name_61 WHERE college = "boston college" | ### Context: CREATE TABLE table_name_61 (pick VARCHAR, college VARCHAR) ### Question: College of boston college has what pick? ### Answer: SELECT pick FROM table_name_61 WHERE college = "boston college" |
How many finalists were there when the years won was 2008 and the won % was greater than 33? | CREATE TABLE table_name_47 (finalists INTEGER, years_won VARCHAR, _percentage_won VARCHAR) | SELECT SUM(finalists) FROM table_name_47 WHERE years_won = "2008" AND _percentage_won > 33 | ### Context: CREATE TABLE table_name_47 (finalists INTEGER, years_won VARCHAR, _percentage_won VARCHAR) ### Question: How many finalists were there when the years won was 2008 and the won % was greater than 33? ### Answer: SELECT SUM(finalists) FROM table_name_47 WHERE years_won = "2008" AND _percentage_won > 33 |
Where was the game site for the game that had a packers record of 2-2? | CREATE TABLE table_name_37 (game_site VARCHAR, record VARCHAR) | SELECT game_site FROM table_name_37 WHERE record = "2-2" | ### Context: CREATE TABLE table_name_37 (game_site VARCHAR, record VARCHAR) ### Question: Where was the game site for the game that had a packers record of 2-2? ### Answer: SELECT game_site FROM table_name_37 WHERE record = "2-2" |
What is the final score of the game that was at raymond james stadium? | CREATE TABLE table_name_42 (final_score VARCHAR, game_site VARCHAR) | SELECT final_score FROM table_name_42 WHERE game_site = "raymond james stadium" | ### Context: CREATE TABLE table_name_42 (final_score VARCHAR, game_site VARCHAR) ### Question: What is the final score of the game that was at raymond james stadium? ### Answer: SELECT final_score FROM table_name_42 WHERE game_site = "raymond james stadium" |
What is the match report for the game that was against Houston? | CREATE TABLE table_name_12 (match_report VARCHAR, opponent VARCHAR) | SELECT match_report FROM table_name_12 WHERE opponent = "houston" | ### Context: CREATE TABLE table_name_12 (match_report VARCHAR, opponent VARCHAR) ### Question: What is the match report for the game that was against Houston? ### Answer: SELECT match_report FROM table_name_12 WHERE opponent = "houston" |
Where is the game site for the game that had a packers record of 2-3? | CREATE TABLE table_name_29 (game_site VARCHAR, record VARCHAR) | SELECT game_site FROM table_name_29 WHERE record = "2-3" | ### Context: CREATE TABLE table_name_29 (game_site VARCHAR, record VARCHAR) ### Question: Where is the game site for the game that had a packers record of 2-3? ### Answer: SELECT game_site FROM table_name_29 WHERE record = "2-3" |
What was the Record of the game with a Score of 118–105? | CREATE TABLE table_name_10 (record VARCHAR, score VARCHAR) | SELECT record FROM table_name_10 WHERE score = "118–105" | ### Context: CREATE TABLE table_name_10 (record VARCHAR, score VARCHAR) ### Question: What was the Record of the game with a Score of 118–105? ### Answer: SELECT record FROM table_name_10 WHERE score = "118–105" |
What is the Record of the game with a Score of 107–108? | CREATE TABLE table_name_85 (record VARCHAR, score VARCHAR) | SELECT record FROM table_name_85 WHERE score = "107–108" | ### Context: CREATE TABLE table_name_85 (record VARCHAR, score VARCHAR) ### Question: What is the Record of the game with a Score of 107–108? ### Answer: SELECT record FROM table_name_85 WHERE score = "107–108" |
What was the Record during the game with a Score of 113–103? | CREATE TABLE table_name_16 (record VARCHAR, score VARCHAR) | SELECT record FROM table_name_16 WHERE score = "113–103" | ### Context: CREATE TABLE table_name_16 (record VARCHAR, score VARCHAR) ### Question: What was the Record during the game with a Score of 113–103? ### Answer: SELECT record FROM table_name_16 WHERE score = "113–103" |
How many points have a percentage of possible points of 67.22%? | CREATE TABLE table_name_92 (points INTEGER, percentage_of_possible_points VARCHAR) | SELECT SUM(points) FROM table_name_92 WHERE percentage_of_possible_points = "67.22%" | ### Context: CREATE TABLE table_name_92 (points INTEGER, percentage_of_possible_points VARCHAR) ### Question: How many points have a percentage of possible points of 67.22%? ### Answer: SELECT SUM(points) FROM table_name_92 WHERE percentage_of_possible_points = "67.22%" |
Which races have points greater than 123, fernando alonso as the driver and a percentage of possible points of 74.44%? | CREATE TABLE table_name_77 (races VARCHAR, percentage_of_possible_points VARCHAR, points VARCHAR, driver VARCHAR) | SELECT races FROM table_name_77 WHERE points > 123 AND driver = "fernando alonso" AND percentage_of_possible_points = "74.44%" | ### Context: CREATE TABLE table_name_77 (races VARCHAR, percentage_of_possible_points VARCHAR, points VARCHAR, driver VARCHAR) ### Question: Which races have points greater than 123, fernando alonso as the driver and a percentage of possible points of 74.44%? ### Answer: SELECT races FROM table_name_77 WHERE points > 123 AND driver = "fernando alonso" AND percentage_of_possible_points = "74.44%" |
How many seasons have fernando alonso as the driver, and a percentage of possible points of 64.12% and points less than 109? | CREATE TABLE table_name_31 (season INTEGER, points VARCHAR, driver VARCHAR, percentage_of_possible_points VARCHAR) | SELECT SUM(season) FROM table_name_31 WHERE driver = "fernando alonso" AND percentage_of_possible_points = "64.12%" AND points < 109 | ### Context: CREATE TABLE table_name_31 (season INTEGER, points VARCHAR, driver VARCHAR, percentage_of_possible_points VARCHAR) ### Question: How many seasons have fernando alonso as the driver, and a percentage of possible points of 64.12% and points less than 109? ### Answer: SELECT SUM(season) FROM table_name_31 WHERE driver = "fernando alonso" AND percentage_of_possible_points = "64.12%" AND points < 109 |
Who remixed the version after 1999? | CREATE TABLE table_name_97 (remixed_by VARCHAR, year INTEGER) | SELECT remixed_by FROM table_name_97 WHERE year > 1999 | ### Context: CREATE TABLE table_name_97 (remixed_by VARCHAR, year INTEGER) ### Question: Who remixed the version after 1999? ### Answer: SELECT remixed_by FROM table_name_97 WHERE year > 1999 |
Who remixed the version with a length of 3:58? | CREATE TABLE table_name_74 (remixed_by VARCHAR, length VARCHAR) | SELECT remixed_by FROM table_name_74 WHERE length = "3:58" | ### Context: CREATE TABLE table_name_74 (remixed_by VARCHAR, length VARCHAR) ### Question: Who remixed the version with a length of 3:58? ### Answer: SELECT remixed_by FROM table_name_74 WHERE length = "3:58" |
Which album is the royal g's club mix version, which is remixed by royal garden sound, from? | CREATE TABLE table_name_20 (album VARCHAR, remixed_by VARCHAR, version VARCHAR) | SELECT album FROM table_name_20 WHERE remixed_by = "royal garden sound" AND version = "royal g's club mix" | ### Context: CREATE TABLE table_name_20 (album VARCHAR, remixed_by VARCHAR, version VARCHAR) ### Question: Which album is the royal g's club mix version, which is remixed by royal garden sound, from? ### Answer: SELECT album FROM table_name_20 WHERE remixed_by = "royal garden sound" AND version = "royal g's club mix" |
How many were in attendance in a week less than 4 with a record of 2–1? | CREATE TABLE table_name_81 (attendance VARCHAR, week VARCHAR, record VARCHAR) | SELECT attendance FROM table_name_81 WHERE week < 4 AND record = "2–1" | ### Context: CREATE TABLE table_name_81 (attendance VARCHAR, week VARCHAR, record VARCHAR) ### Question: How many were in attendance in a week less than 4 with a record of 2–1? ### Answer: SELECT attendance FROM table_name_81 WHERE week < 4 AND record = "2–1" |
How many were in attendance at Griffith Stadium with Philadelphia Eagles as an opponent? | CREATE TABLE table_name_78 (attendance VARCHAR, game_site VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_78 WHERE game_site = "griffith stadium" AND opponent = "philadelphia eagles" | ### Context: CREATE TABLE table_name_78 (attendance VARCHAR, game_site VARCHAR, opponent VARCHAR) ### Question: How many were in attendance at Griffith Stadium with Philadelphia Eagles as an opponent? ### Answer: SELECT attendance FROM table_name_78 WHERE game_site = "griffith stadium" AND opponent = "philadelphia eagles" |
In what week was the attendance 25,000? | CREATE TABLE table_name_92 (week VARCHAR, attendance VARCHAR) | SELECT week FROM table_name_92 WHERE attendance = "25,000" | ### Context: CREATE TABLE table_name_92 (week VARCHAR, attendance VARCHAR) ### Question: In what week was the attendance 25,000? ### Answer: SELECT week FROM table_name_92 WHERE attendance = "25,000" |
What game site had a result at l 21–13? | CREATE TABLE table_name_27 (game_site VARCHAR, result VARCHAR) | SELECT game_site FROM table_name_27 WHERE result = "l 21–13" | ### Context: CREATE TABLE table_name_27 (game_site VARCHAR, result VARCHAR) ### Question: What game site had a result at l 21–13? ### Answer: SELECT game_site FROM table_name_27 WHERE result = "l 21–13" |
What score has 34-19-6 as the record? | CREATE TABLE table_name_18 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_18 WHERE record = "34-19-6" | ### Context: CREATE TABLE table_name_18 (score VARCHAR, record VARCHAR) ### Question: What score has 34-19-6 as the record? ### Answer: SELECT score FROM table_name_18 WHERE record = "34-19-6" |
What is the average February that has 56 as the game? | CREATE TABLE table_name_77 (february INTEGER, game VARCHAR) | SELECT AVG(february) FROM table_name_77 WHERE game = 56 | ### Context: CREATE TABLE table_name_77 (february INTEGER, game VARCHAR) ### Question: What is the average February that has 56 as the game? ### Answer: SELECT AVG(february) FROM table_name_77 WHERE game = 56 |
What is the sum of team impul with the date of 8 july | CREATE TABLE table_name_64 (round INTEGER, team VARCHAR, date VARCHAR) | SELECT SUM(round) FROM table_name_64 WHERE team = "team impul" AND date = "8 july" | ### Context: CREATE TABLE table_name_64 (round INTEGER, team VARCHAR, date VARCHAR) ### Question: What is the sum of team impul with the date of 8 july ### Answer: SELECT SUM(round) FROM table_name_64 WHERE team = "team impul" AND date = "8 july" |
what is the pole position of Round 9 | CREATE TABLE table_name_4 (pole_position VARCHAR, round VARCHAR) | SELECT pole_position FROM table_name_4 WHERE round = 9 | ### Context: CREATE TABLE table_name_4 (pole_position VARCHAR, round VARCHAR) ### Question: what is the pole position of Round 9 ### Answer: SELECT pole_position FROM table_name_4 WHERE round = 9 |
what is the lowest round pole position of satoshi motoyama | CREATE TABLE table_name_22 (round INTEGER, pole_position VARCHAR) | SELECT MIN(round) FROM table_name_22 WHERE pole_position = "satoshi motoyama" | ### Context: CREATE TABLE table_name_22 (round INTEGER, pole_position VARCHAR) ### Question: what is the lowest round pole position of satoshi motoyama ### Answer: SELECT MIN(round) FROM table_name_22 WHERE pole_position = "satoshi motoyama" |
What was the home team with the away team of rushden & diamonds? | CREATE TABLE table_name_73 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_73 WHERE away_team = "rushden & diamonds" | ### Context: CREATE TABLE table_name_73 (home_team VARCHAR, away_team VARCHAR) ### Question: What was the home team with the away team of rushden & diamonds? ### Answer: SELECT home_team FROM table_name_73 WHERE away_team = "rushden & diamonds" |
For the attendance of 2 january 1999 with a home team of plymouth argyle what is the tie no. ? | CREATE TABLE table_name_5 (tie_no VARCHAR, attendance VARCHAR, home_team VARCHAR) | SELECT tie_no FROM table_name_5 WHERE attendance = "2 january 1999" AND home_team = "plymouth argyle" | ### Context: CREATE TABLE table_name_5 (tie_no VARCHAR, attendance VARCHAR, home_team VARCHAR) ### Question: For the attendance of 2 january 1999 with a home team of plymouth argyle what is the tie no. ? ### Answer: SELECT tie_no FROM table_name_5 WHERE attendance = "2 january 1999" AND home_team = "plymouth argyle" |
Which Lost has a Drawn larger than 1, and Games smaller than 7? | CREATE TABLE table_name_8 (lost INTEGER, drawn VARCHAR, games VARCHAR) | SELECT MIN(lost) FROM table_name_8 WHERE drawn > 1 AND games < 7 | ### Context: CREATE TABLE table_name_8 (lost INTEGER, drawn VARCHAR, games VARCHAR) ### Question: Which Lost has a Drawn larger than 1, and Games smaller than 7? ### Answer: SELECT MIN(lost) FROM table_name_8 WHERE drawn > 1 AND games < 7 |
Which Drawn has Games smaller than 7? | CREATE TABLE table_name_41 (drawn INTEGER, games INTEGER) | SELECT SUM(drawn) FROM table_name_41 WHERE games < 7 | ### Context: CREATE TABLE table_name_41 (drawn INTEGER, games INTEGER) ### Question: Which Drawn has Games smaller than 7? ### Answer: SELECT SUM(drawn) FROM table_name_41 WHERE games < 7 |
How many Games have a Drawn smaller than 1, and a Lost larger than 4? | CREATE TABLE table_name_5 (games VARCHAR, drawn VARCHAR, lost VARCHAR) | SELECT COUNT(games) FROM table_name_5 WHERE drawn < 1 AND lost > 4 | ### Context: CREATE TABLE table_name_5 (games VARCHAR, drawn VARCHAR, lost VARCHAR) ### Question: How many Games have a Drawn smaller than 1, and a Lost larger than 4? ### Answer: SELECT COUNT(games) FROM table_name_5 WHERE drawn < 1 AND lost > 4 |
what is the winning driver in taunus | CREATE TABLE table_name_19 (winning_driver VARCHAR, circuit VARCHAR) | SELECT winning_driver FROM table_name_19 WHERE circuit = "taunus" | ### Context: CREATE TABLE table_name_19 (winning_driver VARCHAR, circuit VARCHAR) ### Question: what is the winning driver in taunus ### Answer: SELECT winning_driver FROM table_name_19 WHERE circuit = "taunus" |
Which Record has a Home of Montreal Canadiens and a Date of April 22? | CREATE TABLE table_name_49 (record VARCHAR, home VARCHAR, date VARCHAR) | SELECT record FROM table_name_49 WHERE home = "montreal canadiens" AND date = "april 22" | ### Context: CREATE TABLE table_name_49 (record VARCHAR, home VARCHAR, date VARCHAR) ### Question: Which Record has a Home of Montreal Canadiens and a Date of April 22? ### Answer: SELECT record FROM table_name_49 WHERE home = "montreal canadiens" AND date = "april 22" |
What Score has a Home of Montreal Canadiens and a Date of April 22? | CREATE TABLE table_name_74 (score VARCHAR, home VARCHAR, date VARCHAR) | SELECT score FROM table_name_74 WHERE home = "montreal canadiens" AND date = "april 22" | ### Context: CREATE TABLE table_name_74 (score VARCHAR, home VARCHAR, date VARCHAR) ### Question: What Score has a Home of Montreal Canadiens and a Date of April 22? ### Answer: SELECT score FROM table_name_74 WHERE home = "montreal canadiens" AND date = "april 22" |
What is the lowest number of bronze medals received by a nation with fewer than 0 gold medals? | CREATE TABLE table_name_68 (bronze INTEGER, gold INTEGER) | SELECT MIN(bronze) FROM table_name_68 WHERE gold < 0 | ### Context: CREATE TABLE table_name_68 (bronze INTEGER, gold INTEGER) ### Question: What is the lowest number of bronze medals received by a nation with fewer than 0 gold medals? ### Answer: SELECT MIN(bronze) FROM table_name_68 WHERE gold < 0 |
What is the lowest number of silver medals for a nation with fewer than 1 total medals? | CREATE TABLE table_name_1 (silver INTEGER, total INTEGER) | SELECT MIN(silver) FROM table_name_1 WHERE total < 1 | ### Context: CREATE TABLE table_name_1 (silver INTEGER, total INTEGER) ### Question: What is the lowest number of silver medals for a nation with fewer than 1 total medals? ### Answer: SELECT MIN(silver) FROM table_name_1 WHERE total < 1 |
Which Rank has a Total larger than 17, and a Silver smaller than 13? | CREATE TABLE table_name_94 (rank VARCHAR, total VARCHAR, silver VARCHAR) | SELECT rank FROM table_name_94 WHERE total > 17 AND silver < 13 | ### Context: CREATE TABLE table_name_94 (rank VARCHAR, total VARCHAR, silver VARCHAR) ### Question: Which Rank has a Total larger than 17, and a Silver smaller than 13? ### Answer: SELECT rank FROM table_name_94 WHERE total > 17 AND silver < 13 |
Which Total is the highest one that has a Gold of 1, and a Nation of czechoslovakia? | CREATE TABLE table_name_29 (total INTEGER, gold VARCHAR, nation VARCHAR) | SELECT MAX(total) FROM table_name_29 WHERE gold = 1 AND nation = "czechoslovakia" | ### Context: CREATE TABLE table_name_29 (total INTEGER, gold VARCHAR, nation VARCHAR) ### Question: Which Total is the highest one that has a Gold of 1, and a Nation of czechoslovakia? ### Answer: SELECT MAX(total) FROM table_name_29 WHERE gold = 1 AND nation = "czechoslovakia" |
How much Total has a Silver smaller than 0? | CREATE TABLE table_name_38 (total VARCHAR, silver INTEGER) | SELECT COUNT(total) FROM table_name_38 WHERE silver < 0 | ### Context: CREATE TABLE table_name_38 (total VARCHAR, silver INTEGER) ### Question: How much Total has a Silver smaller than 0? ### Answer: SELECT COUNT(total) FROM table_name_38 WHERE silver < 0 |
Which Total has a Rank of 4, and a Silver smaller than 4? | CREATE TABLE table_name_36 (total INTEGER, rank VARCHAR, silver VARCHAR) | SELECT AVG(total) FROM table_name_36 WHERE rank = "4" AND silver < 4 | ### Context: CREATE TABLE table_name_36 (total INTEGER, rank VARCHAR, silver VARCHAR) ### Question: Which Total has a Rank of 4, and a Silver smaller than 4? ### Answer: SELECT AVG(total) FROM table_name_36 WHERE rank = "4" AND silver < 4 |
Which Silver is the lowest one that has a Bronze smaller than 1, and a Gold larger than 0? | CREATE TABLE table_name_56 (silver INTEGER, bronze VARCHAR, gold VARCHAR) | SELECT MIN(silver) FROM table_name_56 WHERE bronze < 1 AND gold > 0 | ### Context: CREATE TABLE table_name_56 (silver INTEGER, bronze VARCHAR, gold VARCHAR) ### Question: Which Silver is the lowest one that has a Bronze smaller than 1, and a Gold larger than 0? ### Answer: SELECT MIN(silver) FROM table_name_56 WHERE bronze < 1 AND gold > 0 |
WHich Year has a Music director(s) of anu malik? | CREATE TABLE table_name_5 (year INTEGER, music_director_s_ VARCHAR) | SELECT SUM(year) FROM table_name_5 WHERE music_director_s_ = "anu malik" | ### Context: CREATE TABLE table_name_5 (year INTEGER, music_director_s_ VARCHAR) ### Question: WHich Year has a Music director(s) of anu malik? ### Answer: SELECT SUM(year) FROM table_name_5 WHERE music_director_s_ = "anu malik" |
Which Year has a Film of baazigar? | CREATE TABLE table_name_32 (year INTEGER, film VARCHAR) | SELECT MAX(year) FROM table_name_32 WHERE film = "baazigar" | ### Context: CREATE TABLE table_name_32 (year INTEGER, film VARCHAR) ### Question: Which Year has a Film of baazigar? ### Answer: SELECT MAX(year) FROM table_name_32 WHERE film = "baazigar" |
Which Opponent has a Streak of lost 1, and a Date of april 30? | CREATE TABLE table_name_10 (opponent VARCHAR, streak VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_10 WHERE streak = "lost 1" AND date = "april 30" | ### Context: CREATE TABLE table_name_10 (opponent VARCHAR, streak VARCHAR, date VARCHAR) ### Question: Which Opponent has a Streak of lost 1, and a Date of april 30? ### Answer: SELECT opponent FROM table_name_10 WHERE streak = "lost 1" AND date = "april 30" |
What is the number of sequences for the name Alifoldz? | CREATE TABLE table_name_72 (number_of_sequences_number_of_sequences VARCHAR, name VARCHAR) | SELECT number_of_sequences_number_of_sequences AS :_ FROM table_name_72 WHERE name = "alifoldz" | ### Context: CREATE TABLE table_name_72 (number_of_sequences_number_of_sequences VARCHAR, name VARCHAR) ### Question: What is the number of sequences for the name Alifoldz? ### Answer: SELECT number_of_sequences_number_of_sequences AS :_ FROM table_name_72 WHERE name = "alifoldz" |
What is the alignment that predicts an alignment of the linuxbinary link? | CREATE TABLE table_name_27 (_ VARCHAR, alignment_alignment VARCHAR, link VARCHAR) | SELECT alignment_alignment AS :_predicts_an_alignment_, _ FROM table_name_27 WHERE link = "linuxbinary" | ### Context: CREATE TABLE table_name_27 (_ VARCHAR, alignment_alignment VARCHAR, link VARCHAR) ### Question: What is the alignment that predicts an alignment of the linuxbinary link? ### Answer: SELECT alignment_alignment AS :_predicts_an_alignment_, _ FROM table_name_27 WHERE link = "linuxbinary" |
Which Playoffs have a Year smaller than 2012, and an Open Cup of did not enter? | CREATE TABLE table_name_83 (playoffs VARCHAR, year VARCHAR, open_cup VARCHAR) | SELECT playoffs FROM table_name_83 WHERE year < 2012 AND open_cup = "did not enter" | ### Context: CREATE TABLE table_name_83 (playoffs VARCHAR, year VARCHAR, open_cup VARCHAR) ### Question: Which Playoffs have a Year smaller than 2012, and an Open Cup of did not enter? ### Answer: SELECT playoffs FROM table_name_83 WHERE year < 2012 AND open_cup = "did not enter" |
Which Year is the lowest one that has a Regular Season of 5th, atlantic, and a Division larger than 4? | CREATE TABLE table_name_12 (year INTEGER, regular_season VARCHAR, division VARCHAR) | SELECT MIN(year) FROM table_name_12 WHERE regular_season = "5th, atlantic" AND division > 4 | ### Context: CREATE TABLE table_name_12 (year INTEGER, regular_season VARCHAR, division VARCHAR) ### Question: Which Year is the lowest one that has a Regular Season of 5th, atlantic, and a Division larger than 4? ### Answer: SELECT MIN(year) FROM table_name_12 WHERE regular_season = "5th, atlantic" AND division > 4 |
Which Year has Playoffs which did not qualify? | CREATE TABLE table_name_94 (year INTEGER, playoffs VARCHAR) | SELECT AVG(year) FROM table_name_94 WHERE playoffs = "did not qualify" | ### Context: CREATE TABLE table_name_94 (year INTEGER, playoffs VARCHAR) ### Question: Which Year has Playoffs which did not qualify? ### Answer: SELECT AVG(year) FROM table_name_94 WHERE playoffs = "did not qualify" |
Can you tell me the Gold that has the Silver of south korea, and the Year of 1986? | CREATE TABLE table_name_39 (gold VARCHAR, silver VARCHAR, year VARCHAR) | SELECT gold FROM table_name_39 WHERE silver = "south korea" AND year = 1986 | ### Context: CREATE TABLE table_name_39 (gold VARCHAR, silver VARCHAR, year VARCHAR) ### Question: Can you tell me the Gold that has the Silver of south korea, and the Year of 1986? ### Answer: SELECT gold FROM table_name_39 WHERE silver = "south korea" AND year = 1986 |
When was Lee Phillips the director? | CREATE TABLE table_name_35 (year VARCHAR, director VARCHAR) | SELECT year FROM table_name_35 WHERE director = "lee phillips" | ### Context: CREATE TABLE table_name_35 (year VARCHAR, director VARCHAR) ### Question: When was Lee Phillips the director? ### Answer: SELECT year FROM table_name_35 WHERE director = "lee phillips" |
What is the movie that Paul Schneider directed? | CREATE TABLE table_name_97 (title VARCHAR, director VARCHAR) | SELECT title FROM table_name_97 WHERE director = "paul schneider" | ### Context: CREATE TABLE table_name_97 (title VARCHAR, director VARCHAR) ### Question: What is the movie that Paul Schneider directed? ### Answer: SELECT title FROM table_name_97 WHERE director = "paul schneider" |
The box office was $961,147 in what year? | CREATE TABLE table_name_18 (year VARCHAR, box_office VARCHAR) | SELECT year FROM table_name_18 WHERE box_office = "$961,147" | ### Context: CREATE TABLE table_name_18 (year VARCHAR, box_office VARCHAR) ### Question: The box office was $961,147 in what year? ### Answer: SELECT year FROM table_name_18 WHERE box_office = "$961,147" |
Three Men and a Little Lady from Touchstone Pictures was from what year? | CREATE TABLE table_name_12 (year VARCHAR, distributor_s_ VARCHAR, title VARCHAR) | SELECT year FROM table_name_12 WHERE distributor_s_ = "touchstone pictures" AND title = "three men and a little lady" | ### Context: CREATE TABLE table_name_12 (year VARCHAR, distributor_s_ VARCHAR, title VARCHAR) ### Question: Three Men and a Little Lady from Touchstone Pictures was from what year? ### Answer: SELECT year FROM table_name_12 WHERE distributor_s_ = "touchstone pictures" AND title = "three men and a little lady" |
What is the name of the movie from 1997 distributed from HBO Pictures? | CREATE TABLE table_name_99 (title VARCHAR, year VARCHAR, distributor_s_ VARCHAR) | SELECT title FROM table_name_99 WHERE year = "1997" AND distributor_s_ = "hbo pictures" | ### Context: CREATE TABLE table_name_99 (title VARCHAR, year VARCHAR, distributor_s_ VARCHAR) ### Question: What is the name of the movie from 1997 distributed from HBO Pictures? ### Answer: SELECT title FROM table_name_99 WHERE year = "1997" AND distributor_s_ = "hbo pictures" |
What movie earned $1,659,542 at the box office? | CREATE TABLE table_name_29 (title VARCHAR, box_office VARCHAR) | SELECT title FROM table_name_29 WHERE box_office = "$1,659,542" | ### Context: CREATE TABLE table_name_29 (title VARCHAR, box_office VARCHAR) ### Question: What movie earned $1,659,542 at the box office? ### Answer: SELECT title FROM table_name_29 WHERE box_office = "$1,659,542" |
Which accession number has a protein name of ccdc165, and a divergence from human lineage (MYA) smaller than 296? | CREATE TABLE table_name_29 (accession_number VARCHAR, protein_name VARCHAR, divergence_from_human_lineage__mya_ VARCHAR) | SELECT accession_number FROM table_name_29 WHERE protein_name = "ccdc165" AND divergence_from_human_lineage__mya_ < 296 | ### Context: CREATE TABLE table_name_29 (accession_number VARCHAR, protein_name VARCHAR, divergence_from_human_lineage__mya_ VARCHAR) ### Question: Which accession number has a protein name of ccdc165, and a divergence from human lineage (MYA) smaller than 296? ### Answer: SELECT accession_number FROM table_name_29 WHERE protein_name = "ccdc165" AND divergence_from_human_lineage__mya_ < 296 |
Which sequence identity to human protein has a divergence from human lineage (MYA) larger than 8.8, and a sequence length (aa) larger than 1587, and a protein name of soga2? | CREATE TABLE table_name_51 (sequence_identity_to_human_protein VARCHAR, protein_name VARCHAR, divergence_from_human_lineage__mya_ VARCHAR, sequence_length__aa_ VARCHAR) | SELECT sequence_identity_to_human_protein FROM table_name_51 WHERE divergence_from_human_lineage__mya_ > 8.8 AND sequence_length__aa_ > 1587 AND protein_name = "soga2" | ### Context: CREATE TABLE table_name_51 (sequence_identity_to_human_protein VARCHAR, protein_name VARCHAR, divergence_from_human_lineage__mya_ VARCHAR, sequence_length__aa_ VARCHAR) ### Question: Which sequence identity to human protein has a divergence from human lineage (MYA) larger than 8.8, and a sequence length (aa) larger than 1587, and a protein name of soga2? ### Answer: SELECT sequence_identity_to_human_protein FROM table_name_51 WHERE divergence_from_human_lineage__mya_ > 8.8 AND sequence_length__aa_ > 1587 AND protein_name = "soga2" |
What's the record of the team who played the Cleveland Browns? | CREATE TABLE table_name_56 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_56 WHERE opponent = "cleveland browns" | ### Context: CREATE TABLE table_name_56 (record VARCHAR, opponent VARCHAR) ### Question: What's the record of the team who played the Cleveland Browns? ### Answer: SELECT record FROM table_name_56 WHERE opponent = "cleveland browns" |
What is the hometown of the player who plays pr? | CREATE TABLE table_name_17 (hometown VARCHAR, position VARCHAR) | SELECT hometown FROM table_name_17 WHERE position = "pr" | ### Context: CREATE TABLE table_name_17 (hometown VARCHAR, position VARCHAR) ### Question: What is the hometown of the player who plays pr? ### Answer: SELECT hometown FROM table_name_17 WHERE position = "pr" |
Which college's overall number is more than 158 when Travian Robertson is the name? | CREATE TABLE table_name_87 (college VARCHAR, overall VARCHAR, name VARCHAR) | SELECT college FROM table_name_87 WHERE overall > 158 AND name = "travian robertson" | ### Context: CREATE TABLE table_name_87 (college VARCHAR, overall VARCHAR, name VARCHAR) ### Question: Which college's overall number is more than 158 when Travian Robertson is the name? ### Answer: SELECT college FROM table_name_87 WHERE overall > 158 AND name = "travian robertson" |
Which round's name is Jonathan Massaquoi? | CREATE TABLE table_name_40 (round VARCHAR, name VARCHAR) | SELECT round FROM table_name_40 WHERE name = "jonathan massaquoi" | ### Context: CREATE TABLE table_name_40 (round VARCHAR, name VARCHAR) ### Question: Which round's name is Jonathan Massaquoi? ### Answer: SELECT round FROM table_name_40 WHERE name = "jonathan massaquoi" |
What is the mean round number for center position when the pick number is less than 23? | CREATE TABLE table_name_39 (round INTEGER, position VARCHAR, pick__number VARCHAR) | SELECT AVG(round) FROM table_name_39 WHERE position = "center" AND pick__number < 23 | ### Context: CREATE TABLE table_name_39 (round INTEGER, position VARCHAR, pick__number VARCHAR) ### Question: What is the mean round number for center position when the pick number is less than 23? ### Answer: SELECT AVG(round) FROM table_name_39 WHERE position = "center" AND pick__number < 23 |
Which Altitude (mslm) has a Density (inhabitants/km 2) smaller than 1233, and a Rank of 9th? | CREATE TABLE table_name_85 (altitude__mslm_ INTEGER, density__inhabitants_km_2__ VARCHAR, rank VARCHAR) | SELECT SUM(altitude__mslm_) FROM table_name_85 WHERE density__inhabitants_km_2__ < 1233 AND rank = "9th" | ### Context: CREATE TABLE table_name_85 (altitude__mslm_ INTEGER, density__inhabitants_km_2__ VARCHAR, rank VARCHAR) ### Question: Which Altitude (mslm) has a Density (inhabitants/km 2) smaller than 1233, and a Rank of 9th? ### Answer: SELECT SUM(altitude__mslm_) FROM table_name_85 WHERE density__inhabitants_km_2__ < 1233 AND rank = "9th" |
Which Altitude (mslm) has a Density (inhabitants/km 2) smaller than 1467.5, and a Common of moncalieri? | CREATE TABLE table_name_89 (altitude__mslm_ INTEGER, density__inhabitants_km_2__ VARCHAR, common_of VARCHAR) | SELECT SUM(altitude__mslm_) FROM table_name_89 WHERE density__inhabitants_km_2__ < 1467.5 AND common_of = "moncalieri" | ### Context: CREATE TABLE table_name_89 (altitude__mslm_ INTEGER, density__inhabitants_km_2__ VARCHAR, common_of VARCHAR) ### Question: Which Altitude (mslm) has a Density (inhabitants/km 2) smaller than 1467.5, and a Common of moncalieri? ### Answer: SELECT SUM(altitude__mslm_) FROM table_name_89 WHERE density__inhabitants_km_2__ < 1467.5 AND common_of = "moncalieri" |
How much Area (km 2) has a Common of collegno, and a Population smaller than 50137? | CREATE TABLE table_name_60 (area__km_2__ VARCHAR, common_of VARCHAR, population VARCHAR) | SELECT COUNT(area__km_2__) FROM table_name_60 WHERE common_of = "collegno" AND population < 50137 | ### Context: CREATE TABLE table_name_60 (area__km_2__ VARCHAR, common_of VARCHAR, population VARCHAR) ### Question: How much Area (km 2) has a Common of collegno, and a Population smaller than 50137? ### Answer: SELECT COUNT(area__km_2__) FROM table_name_60 WHERE common_of = "collegno" AND population < 50137 |
How many people have an Altitude (mslm) larger than 302, and an Area (km 2) of 29.2? | CREATE TABLE table_name_41 (population VARCHAR, altitude__mslm_ VARCHAR, area__km_2__ VARCHAR) | SELECT COUNT(population) FROM table_name_41 WHERE altitude__mslm_ > 302 AND area__km_2__ = 29.2 | ### Context: CREATE TABLE table_name_41 (population VARCHAR, altitude__mslm_ VARCHAR, area__km_2__ VARCHAR) ### Question: How many people have an Altitude (mslm) larger than 302, and an Area (km 2) of 29.2? ### Answer: SELECT COUNT(population) FROM table_name_41 WHERE altitude__mslm_ > 302 AND area__km_2__ = 29.2 |
Which Population is the highest one that has an Altitude (mslm) smaller than 229, and an Area (km 2) larger than 32.7? | CREATE TABLE table_name_19 (population INTEGER, altitude__mslm_ VARCHAR, area__km_2__ VARCHAR) | SELECT MAX(population) FROM table_name_19 WHERE altitude__mslm_ < 229 AND area__km_2__ > 32.7 | ### Context: CREATE TABLE table_name_19 (population INTEGER, altitude__mslm_ VARCHAR, area__km_2__ VARCHAR) ### Question: Which Population is the highest one that has an Altitude (mslm) smaller than 229, and an Area (km 2) larger than 32.7? ### Answer: SELECT MAX(population) FROM table_name_19 WHERE altitude__mslm_ < 229 AND area__km_2__ > 32.7 |
what builder launched 20 jun 1953? | CREATE TABLE table_name_75 (builder VARCHAR, launched VARCHAR) | SELECT builder FROM table_name_75 WHERE launched = "20 jun 1953" | ### Context: CREATE TABLE table_name_75 (builder VARCHAR, launched VARCHAR) ### Question: what builder launched 20 jun 1953? ### Answer: SELECT builder FROM table_name_75 WHERE launched = "20 jun 1953" |
what is the commissioned date with laid down of 17 dec 1951? | CREATE TABLE table_name_8 (commissioned VARCHAR, laid_down VARCHAR) | SELECT commissioned FROM table_name_8 WHERE laid_down = "17 dec 1951" | ### Context: CREATE TABLE table_name_8 (commissioned VARCHAR, laid_down VARCHAR) ### Question: what is the commissioned date with laid down of 17 dec 1951? ### Answer: SELECT commissioned FROM table_name_8 WHERE laid_down = "17 dec 1951" |
What round was matt brait? | CREATE TABLE table_name_51 (round VARCHAR, player VARCHAR) | SELECT round FROM table_name_51 WHERE player = "matt brait" | ### Context: CREATE TABLE table_name_51 (round VARCHAR, player VARCHAR) ### Question: What round was matt brait? ### Answer: SELECT round FROM table_name_51 WHERE player = "matt brait" |
Which player is in position center for round 2? | CREATE TABLE table_name_88 (player VARCHAR, round VARCHAR, position VARCHAR) | SELECT player FROM table_name_88 WHERE round = "2" AND position = "center" | ### Context: CREATE TABLE table_name_88 (player VARCHAR, round VARCHAR, position VARCHAR) ### Question: Which player is in position center for round 2? ### Answer: SELECT player FROM table_name_88 WHERE round = "2" AND position = "center" |
What position is Sweden in round 2? | CREATE TABLE table_name_55 (position VARCHAR, nationality VARCHAR, round VARCHAR) | SELECT position FROM table_name_55 WHERE nationality = "sweden" AND round = "2" | ### Context: CREATE TABLE table_name_55 (position VARCHAR, nationality VARCHAR, round VARCHAR) ### Question: What position is Sweden in round 2? ### Answer: SELECT position FROM table_name_55 WHERE nationality = "sweden" AND round = "2" |
What is the height of number 52? | CREATE TABLE table_name_80 (height VARCHAR, number VARCHAR) | SELECT height FROM table_name_80 WHERE number = 52 | ### Context: CREATE TABLE table_name_80 (height VARCHAR, number VARCHAR) ### Question: What is the height of number 52? ### Answer: SELECT height FROM table_name_80 WHERE number = 52 |
What number is Tony Dixon? | CREATE TABLE table_name_22 (number VARCHAR, name VARCHAR) | SELECT number FROM table_name_22 WHERE name = "tony dixon" | ### Context: CREATE TABLE table_name_22 (number VARCHAR, name VARCHAR) ### Question: What number is Tony Dixon? ### Answer: SELECT number FROM table_name_22 WHERE name = "tony dixon" |
What is the average Draw for the artist(s), whose language is Swedish, and scored less than 10 points? | CREATE TABLE table_name_99 (draw INTEGER, language VARCHAR, points VARCHAR) | SELECT AVG(draw) FROM table_name_99 WHERE language = "swedish" AND points < 10 | ### Context: CREATE TABLE table_name_99 (draw INTEGER, language VARCHAR, points VARCHAR) ### Question: What is the average Draw for the artist(s), whose language is Swedish, and scored less than 10 points? ### Answer: SELECT AVG(draw) FROM table_name_99 WHERE language = "swedish" AND points < 10 |
Which Economic Class has a Barangay of imelda bliss village? | CREATE TABLE table_name_77 (economic_class VARCHAR, barangay VARCHAR) | SELECT economic_class FROM table_name_77 WHERE barangay = "imelda bliss village" | ### Context: CREATE TABLE table_name_77 (economic_class VARCHAR, barangay VARCHAR) ### Question: Which Economic Class has a Barangay of imelda bliss village? ### Answer: SELECT economic_class FROM table_name_77 WHERE barangay = "imelda bliss village" |
What 1997 has grand slams for the 1999? | CREATE TABLE table_name_23 (Id VARCHAR) | SELECT 1997 FROM table_name_23 WHERE 1999 = "grand slams" | ### Context: CREATE TABLE table_name_23 (Id VARCHAR) ### Question: What 1997 has grand slams for the 1999? ### Answer: SELECT 1997 FROM table_name_23 WHERE 1999 = "grand slams" |
What 1992 has atp masters series for the 1995? | CREATE TABLE table_name_50 (Id VARCHAR) | SELECT 1992 FROM table_name_50 WHERE 1995 = "atp masters series" | ### Context: CREATE TABLE table_name_50 (Id VARCHAR) ### Question: What 1992 has atp masters series for the 1995? ### Answer: SELECT 1992 FROM table_name_50 WHERE 1995 = "atp masters series" |
What 1995 has 1r as the 1999, and a 1998 of 4r? | CREATE TABLE table_name_48 (Id VARCHAR) | SELECT 1995 FROM table_name_48 WHERE 1999 = "1r" AND 1998 = "4r" | ### Context: CREATE TABLE table_name_48 (Id VARCHAR) ### Question: What 1995 has 1r as the 1999, and a 1998 of 4r? ### Answer: SELECT 1995 FROM table_name_48 WHERE 1999 = "1r" AND 1998 = "4r" |
What 1998 has 2r as a 1993, and 1r as a 1990? | CREATE TABLE table_name_46 (Id VARCHAR) | SELECT 1998 FROM table_name_46 WHERE 1993 = "2r" AND 1990 = "1r" | ### Context: CREATE TABLE table_name_46 (Id VARCHAR) ### Question: What 1998 has 2r as a 1993, and 1r as a 1990? ### Answer: SELECT 1998 FROM table_name_46 WHERE 1993 = "2r" AND 1990 = "1r" |
What 1997, has qf as a 1994, and 1r as a 1999? | CREATE TABLE table_name_6 (Id VARCHAR) | SELECT 1997 FROM table_name_6 WHERE 1994 = "qf" AND 1999 = "1r" | ### Context: CREATE TABLE table_name_6 (Id VARCHAR) ### Question: What 1997, has qf as a 1994, and 1r as a 1999? ### Answer: SELECT 1997 FROM table_name_6 WHERE 1994 = "qf" AND 1999 = "1r" |
What 1993 has 2r as a 1994, and 1r as a 1995? | CREATE TABLE table_name_18 (Id VARCHAR) | SELECT 1993 FROM table_name_18 WHERE 1994 = "2r" AND 1995 = "1r" | ### Context: CREATE TABLE table_name_18 (Id VARCHAR) ### Question: What 1993 has 2r as a 1994, and 1r as a 1995? ### Answer: SELECT 1993 FROM table_name_18 WHERE 1994 = "2r" AND 1995 = "1r" |
Which Driver has a Sponsor of pdvsa? | CREATE TABLE table_name_26 (driver_s_ VARCHAR, sponsor_s_ VARCHAR) | SELECT driver_s_ FROM table_name_26 WHERE sponsor_s_ = "pdvsa" | ### Context: CREATE TABLE table_name_26 (driver_s_ VARCHAR, sponsor_s_ VARCHAR) ### Question: Which Driver has a Sponsor of pdvsa? ### Answer: SELECT driver_s_ FROM table_name_26 WHERE sponsor_s_ = "pdvsa" |
What are the colours of the team with benedikt guðmundsson as head coach? | CREATE TABLE table_name_26 (colours VARCHAR, head_coach VARCHAR) | SELECT colours FROM table_name_26 WHERE head_coach = "benedikt guðmundsson" | ### Context: CREATE TABLE table_name_26 (colours VARCHAR, head_coach VARCHAR) ### Question: What are the colours of the team with benedikt guðmundsson as head coach? ### Answer: SELECT colours FROM table_name_26 WHERE head_coach = "benedikt guðmundsson" |
What is the city and region of the team in the dalhús arena? | CREATE TABLE table_name_35 (city VARCHAR, _region VARCHAR, arena VARCHAR) | SELECT city, _region FROM table_name_35 WHERE arena = "dalhús" | ### Context: CREATE TABLE table_name_35 (city VARCHAR, _region VARCHAR, arena VARCHAR) ### Question: What is the city and region of the team in the dalhús arena? ### Answer: SELECT city, _region FROM table_name_35 WHERE arena = "dalhús" |
What team is in the toyota höllin arena? | CREATE TABLE table_name_42 (team VARCHAR, arena VARCHAR) | SELECT team FROM table_name_42 WHERE arena = "toyota höllin" | ### Context: CREATE TABLE table_name_42 (team VARCHAR, arena VARCHAR) ### Question: What team is in the toyota höllin arena? ### Answer: SELECT team FROM table_name_42 WHERE arena = "toyota höllin" |
What team is in the dhl-höllin arena? | CREATE TABLE table_name_5 (team VARCHAR, arena VARCHAR) | SELECT team FROM table_name_5 WHERE arena = "dhl-höllin" | ### Context: CREATE TABLE table_name_5 (team VARCHAR, arena VARCHAR) ### Question: What team is in the dhl-höllin arena? ### Answer: SELECT team FROM table_name_5 WHERE arena = "dhl-höllin" |
What is the number of points for the team with 49 tries against and 14 lost? | CREATE TABLE table_name_19 (points_against VARCHAR, tries_against VARCHAR, lost VARCHAR) | SELECT points_against FROM table_name_19 WHERE tries_against = "49" AND lost = "14" | ### Context: CREATE TABLE table_name_19 (points_against VARCHAR, tries_against VARCHAR, lost VARCHAR) ### Question: What is the number of points for the team with 49 tries against and 14 lost? ### Answer: SELECT points_against FROM table_name_19 WHERE tries_against = "49" AND lost = "14" |
What is the losing bonus for the team that has 33 tries against and 5 lost? | CREATE TABLE table_name_35 (losing_bonus VARCHAR, tries_against VARCHAR, lost VARCHAR) | SELECT losing_bonus FROM table_name_35 WHERE tries_against = "33" AND lost = "5" | ### Context: CREATE TABLE table_name_35 (losing_bonus VARCHAR, tries_against VARCHAR, lost VARCHAR) ### Question: What is the losing bonus for the team that has 33 tries against and 5 lost? ### Answer: SELECT losing_bonus FROM table_name_35 WHERE tries_against = "33" AND lost = "5" |
What is the tries against for the team that has a losing bonus? | CREATE TABLE table_name_48 (tries_against VARCHAR, losing_bonus VARCHAR) | SELECT tries_against FROM table_name_48 WHERE losing_bonus = "losing bonus" | ### Context: CREATE TABLE table_name_48 (tries_against VARCHAR, losing_bonus VARCHAR) ### Question: What is the tries against for the team that has a losing bonus? ### Answer: SELECT tries_against FROM table_name_48 WHERE losing_bonus = "losing bonus" |
What is the number of tries for the team that has 22 plays with 33 tries against and 60 points? | CREATE TABLE table_name_22 (tries_for VARCHAR, points VARCHAR, played VARCHAR, tries_against VARCHAR) | SELECT tries_for FROM table_name_22 WHERE played = "22" AND tries_against = "33" AND points = "60" | ### Context: CREATE TABLE table_name_22 (tries_for VARCHAR, points VARCHAR, played VARCHAR, tries_against VARCHAR) ### Question: What is the number of tries for the team that has 22 plays with 33 tries against and 60 points? ### Answer: SELECT tries_for FROM table_name_22 WHERE played = "22" AND tries_against = "33" AND points = "60" |
What is the losing bonus of the team with 22 pays and 428 points against? | CREATE TABLE table_name_9 (losing_bonus VARCHAR, played VARCHAR, points_against VARCHAR) | SELECT losing_bonus FROM table_name_9 WHERE played = "22" AND points_against = "428" | ### Context: CREATE TABLE table_name_9 (losing_bonus VARCHAR, played VARCHAR, points_against VARCHAR) ### Question: What is the losing bonus of the team with 22 pays and 428 points against? ### Answer: SELECT losing_bonus FROM table_name_9 WHERE played = "22" AND points_against = "428" |
Name the years for spain with 215 goals | CREATE TABLE table_name_31 (years VARCHAR, nationality VARCHAR, goals VARCHAR) | SELECT years FROM table_name_31 WHERE nationality = "spain" AND goals = 215 | ### Context: CREATE TABLE table_name_31 (years VARCHAR, nationality VARCHAR, goals VARCHAR) ### Question: Name the years for spain with 215 goals ### Answer: SELECT years FROM table_name_31 WHERE nationality = "spain" AND goals = 215 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.