combined_text stringlengths 106 1.05k |
|---|
###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"###context:CREATE TABLE table_name_97 (leading_scorer VARCHAR, attendance 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"###context:CREATE TABLE table_name_59 (leading_scorer VARCHAR, visitor 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"###context:CREATE TABLE table_name_7 (date VARCHAR, attendance 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"###context:CREATE TABLE table_name_58 (time VARCHAR, track_number VARCHAR, song_title VARCHAR) |
###question:Name the orchestra for ted varnick###answer: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 songwriter for track number 12###answer:SELECT songwriter_s_ FROM table_name_60 WHERE track_number = 12###context:CREATE TABLE table_name_60 (songwriter_s_ VARCHAR, track_number 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###context:CREATE TABLE table_name_59 (round INTEGER, player VARCHAR, pick VARCHAR) |
###question:College of villanova has what round?###answer:SELECT round FROM table_name_65 WHERE college = "villanova"###context:CREATE TABLE table_name_65 (round VARCHAR, college VARCHAR) |
###question:College of boston college has what pick?###answer:SELECT pick FROM table_name_61 WHERE college = "boston college"###context:CREATE TABLE table_name_61 (pick VARCHAR, college 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###context:CREATE TABLE table_name_47 (finalists INTEGER, years_won VARCHAR, _percentage_won 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"###context:CREATE TABLE table_name_37 (game_site VARCHAR, record 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"###context:CREATE TABLE table_name_42 (final_score VARCHAR, game_site 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"###context:CREATE TABLE table_name_12 (match_report VARCHAR, opponent 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"###context:CREATE TABLE table_name_29 (game_site VARCHAR, record 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"###context:CREATE TABLE table_name_10 (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"###context:CREATE TABLE table_name_85 (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"###context:CREATE TABLE table_name_16 (record VARCHAR, score 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%"###context:CREATE TABLE table_name_92 (points INTEGER, percentage_of_possible_points 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%"###context:CREATE TABLE table_name_77 (races 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###context:CREATE TABLE table_name_31 (sea... |
###question:Who remixed the version after 1999?###answer: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 with a length of 3:58?###answer:SELECT remixed_by FROM table_name_74 WHERE length = "3:58"###context:CREATE TABLE table_name_74 (remixed_by VARCHAR, length 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"###context:CREATE TABLE table_name_20 (album VARCHAR, remixed_by VARCHAR, version 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"###context:CREATE TABLE table_name_81 (attendance VARCHAR, week VARCHAR, record 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"###context:CREATE TABLE table_name_78 (attendance VARCHAR, game_site VARCHAR, opponent VARCHAR) |
###question:In what week was the attendance 25,000?###answer:SELECT week FROM table_name_92 WHERE attendance = "25,000"###context:CREATE TABLE table_name_92 (week VARCHAR, attendance 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"###context:CREATE TABLE table_name_27 (game_site VARCHAR, result VARCHAR) |
###question:What score has 34-19-6 as the record?###answer:SELECT score FROM table_name_18 WHERE record = "34-19-6"###context:CREATE TABLE table_name_18 (score VARCHAR, record VARCHAR) |
###question:What is the average February that has 56 as the game?###answer:SELECT AVG(february) FROM table_name_77 WHERE game = 56###context:CREATE TABLE table_name_77 (february INTEGER, game 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"###context:CREATE TABLE table_name_64 (round INTEGER, team VARCHAR, date VARCHAR) |
###question:what is the pole position of Round 9###answer: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 lowest round pole position of satoshi motoyama###answer: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 was the home team with the away team of rushden & diamonds?###answer: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: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"###context:CREATE TABLE table_name_5 (tie_no VARCHAR, attendance VARCHAR, home_team 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###context:CREATE TABLE table_name_8 (lost INTEGER, drawn VARCHAR, games VARCHAR) |
###question:Which Drawn has Games smaller than 7?###answer:SELECT SUM(drawn) FROM table_name_41 WHERE games < 7###context:CREATE TABLE table_name_41 (drawn INTEGER, games INTEGER) |
###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###context:CREATE TABLE table_name_5 (games VARCHAR, drawn VARCHAR, lost VARCHAR) |
###question:what is the winning driver in taunus###answer:SELECT winning_driver FROM table_name_19 WHERE circuit = "taunus"###context:CREATE TABLE table_name_19 (winning_driver VARCHAR, circuit 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"###context:CREATE TABLE table_name_49 (record 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"###context:CREATE TABLE table_name_74 (score VARCHAR, home VARCHAR, date VARCHAR) |
###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###context:CREATE TABLE table_name_68 (bronze INTEGER, gold 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###context:CREATE TABLE table_name_1 (silver INTEGER, total INTEGER) |
###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###context:CREATE TABLE table_name_94 (rank VARCHAR, total VARCHAR, silver 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"###context:CREATE TABLE table_name_29 (total INTEGER, gold VARCHAR, nation VARCHAR) |
###question:How much Total has a Silver smaller than 0?###answer:SELECT COUNT(total) FROM table_name_38 WHERE silver < 0###context:CREATE TABLE table_name_38 (total VARCHAR, silver INTEGER) |
###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###context:CREATE TABLE table_name_36 (total INTEGER, rank VARCHAR, silver 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###context:CREATE TABLE table_name_56 (silver INTEGER, bronze VARCHAR, gold 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"###context:CREATE TABLE table_name_5 (year INTEGER, music_director_s_ VARCHAR) |
###question:Which Year has a Film of baazigar?###answer:SELECT MAX(year) FROM table_name_32 WHERE film = "baazigar"###context:CREATE TABLE table_name_32 (year INTEGER, film 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"###context:CREATE TABLE table_name_10 (opponent VARCHAR, streak VARCHAR, date 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"###context:CREATE TABLE table_name_72 (number_of_sequences_number_of_sequences VARCHAR, name 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"###context:CREATE TABLE table_name_27 (_ VARCHAR, alignment_alignment VARCHAR, link 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"###context:CREATE TABLE table_name_83 (playoffs VARCHAR, year VARCHAR, open_cup 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###context:CREATE TABLE table_name_12 (year INTEGER, regular_season VARCHAR, division VARCHAR) |
###question:Which Year has Playoffs which did not qualify?###answer:SELECT AVG(year) FROM table_name_94 WHERE playoffs = "did not qualify"###context:CREATE TABLE table_name_94 (year INTEGER, playoffs 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###context:CREATE TABLE table_name_39 (gold VARCHAR, silver VARCHAR, year VARCHAR) |
###question:When was Lee Phillips the director?###answer:SELECT year FROM table_name_35 WHERE director = "lee phillips"###context:CREATE TABLE table_name_35 (year VARCHAR, director VARCHAR) |
###question:What is the movie that Paul Schneider directed?###answer:SELECT title FROM table_name_97 WHERE director = "paul schneider"###context:CREATE TABLE table_name_97 (title VARCHAR, director VARCHAR) |
###question:The box office was $961,147 in what year?###answer:SELECT year FROM table_name_18 WHERE box_office = "$961,147"###context:CREATE TABLE table_name_18 (year VARCHAR, box_office 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"###context:CREATE TABLE table_name_12 (year VARCHAR, distributor_s_ VARCHAR, title 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"###context:CREATE TABLE table_name_99 (title VARCHAR, year VARCHAR, distributor_s_ 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"###context:CREATE TABLE table_name_29 (title VARCHAR, box_office 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###context:CREATE TABLE table_name_29 (accession_number VARCHAR, p... |
###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_len... |
###question:What's the record of the team who played the Cleveland Browns?###answer:SELECT record FROM table_name_56 WHERE opponent = "cleveland browns"###context:CREATE TABLE table_name_56 (record VARCHAR, opponent VARCHAR) |
###question:What is the hometown of the player who plays pr?###answer:SELECT hometown FROM table_name_17 WHERE position = "pr"###context:CREATE TABLE table_name_17 (hometown VARCHAR, position 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"###context:CREATE TABLE table_name_87 (college VARCHAR, overall VARCHAR, name VARCHAR) |
###question:Which round's name is Jonathan Massaquoi?###answer:SELECT round FROM table_name_40 WHERE name = "jonathan massaquoi"###context:CREATE TABLE table_name_40 (round VARCHAR, name 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###context:CREATE TABLE table_name_39 (round INTEGER, position VARCHAR, pick__number 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"###context:CREATE TABLE table_name_85 (altitude__mslm_ INTEGER, density__inhabitants_km_2__ VARCHAR, r... |
###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"###context:CREATE TABLE table_name_89 (altitude__mslm_ INTEGER, density__inha... |
###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###context:CREATE TABLE table_name_60 (area__km_2__ VARCHAR, common_of VARCHAR, population 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###context:CREATE TABLE table_name_41 (population VARCHAR, 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###context:CREATE TABLE table_name_19 (population INTEGER, altitude__mslm_ VARCHAR, are... |
###question:what builder launched 20 jun 1953?###answer:SELECT builder FROM table_name_75 WHERE launched = "20 jun 1953"###context:CREATE TABLE table_name_75 (builder VARCHAR, launched 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"###context:CREATE TABLE table_name_8 (commissioned VARCHAR, laid_down VARCHAR) |
###question:What round was matt brait?###answer:SELECT round FROM table_name_51 WHERE player = "matt brait"###context:CREATE TABLE table_name_51 (round VARCHAR, player VARCHAR) |
###question:Which player is in position center for round 2?###answer: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:What position is Sweden in round 2?###answer: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 is the height of number 52?###answer:SELECT height FROM table_name_80 WHERE number = 52###context:CREATE TABLE table_name_80 (height VARCHAR, number VARCHAR) |
###question:What number is Tony Dixon?###answer:SELECT number FROM table_name_22 WHERE name = "tony dixon"###context:CREATE TABLE table_name_22 (number VARCHAR, name 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###context:CREATE TABLE table_name_99 (draw INTEGER, language VARCHAR, points 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"###context:CREATE TABLE table_name_77 (economic_class VARCHAR, barangay VARCHAR) |
###question:What 1997 has grand slams for the 1999?###answer:SELECT 1997 FROM table_name_23 WHERE 1999 = "grand slams"###context:CREATE TABLE table_name_23 (Id VARCHAR) |
###question:What 1992 has atp masters series for the 1995?###answer:SELECT 1992 FROM table_name_50 WHERE 1995 = "atp masters series"###context:CREATE TABLE table_name_50 (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"###context:CREATE TABLE table_name_48 (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"###context:CREATE TABLE table_name_46 (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"###context:CREATE TABLE table_name_6 (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"###context:CREATE TABLE table_name_18 (Id VARCHAR) |
###question:Which Driver has a Sponsor of pdvsa?###answer:SELECT driver_s_ FROM table_name_26 WHERE sponsor_s_ = "pdvsa"###context:CREATE TABLE table_name_26 (driver_s_ VARCHAR, sponsor_s_ 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"###context:CREATE TABLE table_name_26 (colours VARCHAR, head_coach 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"###context:CREATE TABLE table_name_35 (city VARCHAR, _region 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"###context:CREATE TABLE table_name_42 (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"###context:CREATE TABLE table_name_5 (team VARCHAR, arena 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"###context:CREATE TABLE table_name_19 (points_against 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"###context:CREATE TABLE table_name_35 (losing_bonus VARCHAR, tries_against VARCHAR, lost 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"###context:CREATE TABLE table_name_48 (tries_against VARCHAR, losing_bonus 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"###context:CREATE TABLE table_name_22 (tries_for VARCHAR, points VARCHAR, played VARCHAR, tries_against V... |
###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"###context:CREATE TABLE table_name_9 (losing_bonus VARCHAR, played VARCHAR, points_against VARCHAR) |
###question:Name the years for spain with 215 goals###answer:SELECT years FROM table_name_31 WHERE nationality = "spain" AND goals = 215###context:CREATE TABLE table_name_31 (years VARCHAR, nationality VARCHAR, goals VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.