question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Who was the winner of the race at Belmont? | CREATE TABLE table_1358608_4 (winner_2nd VARCHAR, venue VARCHAR) | SELECT winner_2nd FROM table_1358608_4 WHERE venue = "Belmont" | ### Context: CREATE TABLE table_1358608_4 (winner_2nd VARCHAR, venue VARCHAR) ### Question: Who was the winner of the race at Belmont? ### Answer: SELECT winner_2nd FROM table_1358608_4 WHERE venue = "Belmont" |
On what date did Northerly place 6th? | CREATE TABLE table_1358608_4 (date VARCHAR, result VARCHAR) | SELECT date FROM table_1358608_4 WHERE result = "6th" | ### Context: CREATE TABLE table_1358608_4 (date VARCHAR, result VARCHAR) ### Question: On what date did Northerly place 6th? ### Answer: SELECT date FROM table_1358608_4 WHERE result = "6th" |
What was the weight in kg on the day of the race at Ranvet Stakes? | CREATE TABLE table_1358608_4 (weight__kg_ VARCHAR, race VARCHAR) | SELECT weight__kg_ FROM table_1358608_4 WHERE race = "Ranvet Stakes" | ### Context: CREATE TABLE table_1358608_4 (weight__kg_ VARCHAR, race VARCHAR) ### Question: What was the weight in kg on the day of the race at Ranvet Stakes? ### Answer: SELECT weight__kg_ FROM table_1358608_4 WHERE race = "Ranvet Stakes" |
What was Northerly's result at the race on 19 Oct 2002? | CREATE TABLE table_1358608_4 (result VARCHAR, date VARCHAR) | SELECT result FROM table_1358608_4 WHERE date = "19 Oct 2002" | ### Context: CREATE TABLE table_1358608_4 (result VARCHAR, date VARCHAR) ### Question: What was Northerly's result at the race on 19 Oct 2002? ### Answer: SELECT result FROM table_1358608_4 WHERE date = "19 Oct 2002" |
What was the distance of the race in which Northerly raced in group G3? | CREATE TABLE table_1358608_4 (distance VARCHAR, group VARCHAR) | SELECT distance FROM table_1358608_4 WHERE group = "G3" | ### Context: CREATE TABLE table_1358608_4 (distance VARCHAR, group VARCHAR) ### Question: What was the distance of the race in which Northerly raced in group G3? ### Answer: SELECT distance FROM table_1358608_4 WHERE group = "G3" |
what's the software executable space protection with dbeingtribution being gentoo | CREATE TABLE table_1357052_6 (software_executable_space_protection VARCHAR, distribution VARCHAR) | SELECT software_executable_space_protection FROM table_1357052_6 WHERE distribution = "Gentoo" | ### Context: CREATE TABLE table_1357052_6 (software_executable_space_protection VARCHAR, distribution VARCHAR) ### Question: what's the software executable space protection with dbeingtribution being gentoo ### Answer: SELECT software_executable_space_protection FROM table_1357052_6 WHERE distribution = "Gentoo" |
what's the dbeingtribution with grsecurity being no | CREATE TABLE table_1357052_6 (distribution VARCHAR, grsecurity VARCHAR) | SELECT distribution FROM table_1357052_6 WHERE grsecurity = "No" | ### Context: CREATE TABLE table_1357052_6 (distribution VARCHAR, grsecurity VARCHAR) ### Question: what's the dbeingtribution with grsecurity being no ### Answer: SELECT distribution FROM table_1357052_6 WHERE grsecurity = "No" |
what's the grsecurity with dbeingtribution being debian / ubuntu | CREATE TABLE table_1357052_6 (grsecurity VARCHAR, distribution VARCHAR) | SELECT grsecurity FROM table_1357052_6 WHERE distribution = "Debian / Ubuntu" | ### Context: CREATE TABLE table_1357052_6 (grsecurity VARCHAR, distribution VARCHAR) ### Question: what's the grsecurity with dbeingtribution being debian / ubuntu ### Answer: SELECT grsecurity FROM table_1357052_6 WHERE distribution = "Debian / Ubuntu" |
what's the dbeingtribution with grsecurity being optional and compile time buffer checks being yes | CREATE TABLE table_1357052_6 (distribution VARCHAR, grsecurity VARCHAR, compile_time_buffer_checks VARCHAR) | SELECT distribution FROM table_1357052_6 WHERE grsecurity = "Optional" AND compile_time_buffer_checks = "Yes" | ### Context: CREATE TABLE table_1357052_6 (distribution VARCHAR, grsecurity VARCHAR, compile_time_buffer_checks VARCHAR) ### Question: what's the dbeingtribution with grsecurity being optional and compile time buffer checks being yes ### Answer: SELECT distribution FROM table_1357052_6 WHERE grsecurity = "Optional" AND... |
what's the dbeingtribution with rsbac being unknown | CREATE TABLE table_1357052_6 (distribution VARCHAR, rsbac VARCHAR) | SELECT distribution FROM table_1357052_6 WHERE rsbac = "Unknown" | ### Context: CREATE TABLE table_1357052_6 (distribution VARCHAR, rsbac VARCHAR) ### Question: what's the dbeingtribution with rsbac being unknown ### Answer: SELECT distribution FROM table_1357052_6 WHERE rsbac = "Unknown" |
Who is on the 2002 commission from district 3? | CREATE TABLE table_136027_2 (district VARCHAR) | SELECT 2002 AS _commission FROM table_136027_2 WHERE district = "district 3" | ### Context: CREATE TABLE table_136027_2 (district VARCHAR) ### Question: Who is on the 2002 commission from district 3? ### Answer: SELECT 2002 AS _commission FROM table_136027_2 WHERE district = "district 3" |
what's the others% with parbeingh being tangipahoa | CREATE TABLE table_13608101_1 (others_percentage VARCHAR, parish VARCHAR) | SELECT others_percentage FROM table_13608101_1 WHERE parish = "Tangipahoa" | ### Context: CREATE TABLE table_13608101_1 (others_percentage VARCHAR, parish VARCHAR) ### Question: what's the others% with parbeingh being tangipahoa ### Answer: SELECT others_percentage FROM table_13608101_1 WHERE parish = "Tangipahoa" |
what is the maximum bush# with others% being 1.57% | CREATE TABLE table_13608101_1 (bush_number INTEGER, others_percentage VARCHAR) | SELECT MAX(bush_number) FROM table_13608101_1 WHERE others_percentage = "1.57%" | ### Context: CREATE TABLE table_13608101_1 (bush_number INTEGER, others_percentage VARCHAR) ### Question: what is the maximum bush# with others% being 1.57% ### Answer: SELECT MAX(bush_number) FROM table_13608101_1 WHERE others_percentage = "1.57%" |
how many bush% with total# being 191269 | CREATE TABLE table_13608101_1 (bush_percentage VARCHAR, total_number VARCHAR) | SELECT COUNT(bush_percentage) FROM table_13608101_1 WHERE total_number = 191269 | ### Context: CREATE TABLE table_13608101_1 (bush_percentage VARCHAR, total_number VARCHAR) ### Question: how many bush% with total# being 191269 ### Answer: SELECT COUNT(bush_percentage) FROM table_13608101_1 WHERE total_number = 191269 |
What is the highest game number? | CREATE TABLE table_13619027_10 (game INTEGER) | SELECT MAX(game) FROM table_13619027_10 | ### Context: CREATE TABLE table_13619027_10 (game INTEGER) ### Question: What is the highest game number? ### Answer: SELECT MAX(game) FROM table_13619027_10 |
How many entries are there for weight when the winner is 1st - defier and venue is randwick? | CREATE TABLE table_1360997_3 (weight__kg_ VARCHAR, winner_2nd VARCHAR, venue VARCHAR) | SELECT COUNT(weight__kg_) FROM table_1360997_3 WHERE winner_2nd = "1st - Defier" AND venue = "Randwick" | ### Context: CREATE TABLE table_1360997_3 (weight__kg_ VARCHAR, winner_2nd VARCHAR, venue VARCHAR) ### Question: How many entries are there for weight when the winner is 1st - defier and venue is randwick? ### Answer: SELECT COUNT(weight__kg_) FROM table_1360997_3 WHERE winner_2nd = "1st - Defier" AND venue = "Randwick... |
Who was the jockey at Rosehill and the weight was 57.5 kg? | CREATE TABLE table_1360997_3 (jockey VARCHAR, venue VARCHAR, weight__kg_ VARCHAR) | SELECT jockey FROM table_1360997_3 WHERE venue = "Rosehill" AND weight__kg_ = "57.5" | ### Context: CREATE TABLE table_1360997_3 (jockey VARCHAR, venue VARCHAR, weight__kg_ VARCHAR) ### Question: Who was the jockey at Rosehill and the weight was 57.5 kg? ### Answer: SELECT jockey FROM table_1360997_3 WHERE venue = "Rosehill" AND weight__kg_ = "57.5" |
When the time is 1:36.30 what shows as winner? | CREATE TABLE table_1360997_3 (winner_2nd VARCHAR, time VARCHAR) | SELECT winner_2nd FROM table_1360997_3 WHERE time = "1:36.30" | ### Context: CREATE TABLE table_1360997_3 (winner_2nd VARCHAR, time VARCHAR) ### Question: When the time is 1:36.30 what shows as winner? ### Answer: SELECT winner_2nd FROM table_1360997_3 WHERE time = "1:36.30" |
What was the depravitiy of earnings where international sales was 2470? | CREATE TABLE table_13618358_1 (income_poverty_f VARCHAR, exports__usd_mn__2011 VARCHAR) | SELECT income_poverty_f FROM table_13618358_1 WHERE exports__usd_mn__2011 = 2470 | ### Context: CREATE TABLE table_13618358_1 (income_poverty_f VARCHAR, exports__usd_mn__2011 VARCHAR) ### Question: What was the depravitiy of earnings where international sales was 2470? ### Answer: SELECT income_poverty_f FROM table_13618358_1 WHERE exports__usd_mn__2011 = 2470 |
What was head count in 2010 where the farm production is 6.9? | CREATE TABLE table_13618358_1 (agri_culture_b VARCHAR) | SELECT MAX(2010 AS _population__000_) FROM table_13618358_1 WHERE agri_culture_b = "6.9" | ### Context: CREATE TABLE table_13618358_1 (agri_culture_b VARCHAR) ### Question: What was head count in 2010 where the farm production is 6.9? ### Answer: SELECT MAX(2010 AS _population__000_) FROM table_13618358_1 WHERE agri_culture_b = "6.9" |
How many districts had an depravity level of 27.7 | CREATE TABLE table_13618358_1 (district VARCHAR, income_poverty_f VARCHAR) | SELECT COUNT(district) FROM table_13618358_1 WHERE income_poverty_f = "27.7" | ### Context: CREATE TABLE table_13618358_1 (district VARCHAR, income_poverty_f VARCHAR) ### Question: How many districts had an depravity level of 27.7 ### Answer: SELECT COUNT(district) FROM table_13618358_1 WHERE income_poverty_f = "27.7" |
How low was the income where services is 72.5? | CREATE TABLE table_13618358_1 (income_poverty_f VARCHAR, services_ VARCHAR, _cons_truction_b VARCHAR) | SELECT income_poverty_f FROM table_13618358_1 WHERE services_ & _cons_truction_b = "72.5" | ### Context: CREATE TABLE table_13618358_1 (income_poverty_f VARCHAR, services_ VARCHAR, _cons_truction_b VARCHAR) ### Question: How low was the income where services is 72.5? ### Answer: SELECT income_poverty_f FROM table_13618358_1 WHERE services_ & _cons_truction_b = "72.5" |
How low was the San Juan income? | CREATE TABLE table_13618358_1 (income_poverty_f VARCHAR, district VARCHAR) | SELECT income_poverty_f FROM table_13618358_1 WHERE district = "San Juan" | ### Context: CREATE TABLE table_13618358_1 (income_poverty_f VARCHAR, district VARCHAR) ### Question: How low was the San Juan income? ### Answer: SELECT income_poverty_f FROM table_13618358_1 WHERE district = "San Juan" |
who is the player with high assists on january 22? | CREATE TABLE table_13619027_7 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_13619027_7 WHERE date = "January 22" | ### Context: CREATE TABLE table_13619027_7 (high_assists VARCHAR, date VARCHAR) ### Question: who is the player with high assists on january 22? ### Answer: SELECT high_assists FROM table_13619027_7 WHERE date = "January 22" |
what is the total score for the date of january 3? | CREATE TABLE table_13619027_7 (score VARCHAR, date VARCHAR) | SELECT COUNT(score) FROM table_13619027_7 WHERE date = "January 3" | ### Context: CREATE TABLE table_13619027_7 (score VARCHAR, date VARCHAR) ### Question: what is the total score for the date of january 3? ### Answer: SELECT COUNT(score) FROM table_13619027_7 WHERE date = "January 3" |
Which team was in a game with a record of 15-63? | CREATE TABLE table_13619053_9 (team VARCHAR, record VARCHAR) | SELECT team FROM table_13619053_9 WHERE record = "15-63" | ### Context: CREATE TABLE table_13619053_9 (team VARCHAR, record VARCHAR) ### Question: Which team was in a game with a record of 15-63? ### Answer: SELECT team FROM table_13619053_9 WHERE record = "15-63" |
Which team played on April 1? | CREATE TABLE table_13619053_9 (team VARCHAR, date VARCHAR) | SELECT team FROM table_13619053_9 WHERE date = "April 1" | ### Context: CREATE TABLE table_13619053_9 (team VARCHAR, date VARCHAR) ### Question: Which team played on April 1? ### Answer: SELECT team FROM table_13619053_9 WHERE date = "April 1" |
How many players led Game #66 in scoring? | CREATE TABLE table_13619053_8 (high_points VARCHAR, game VARCHAR) | SELECT COUNT(high_points) FROM table_13619053_8 WHERE game = 66 | ### Context: CREATE TABLE table_13619053_8 (high_points VARCHAR, game VARCHAR) ### Question: How many players led Game #66 in scoring? ### Answer: SELECT COUNT(high_points) FROM table_13619053_8 WHERE game = 66 |
Who scored the most points in the game where the Raptors became 13-49? | CREATE TABLE table_13619053_8 (high_points VARCHAR, record VARCHAR) | SELECT high_points FROM table_13619053_8 WHERE record = "13-49" | ### Context: CREATE TABLE table_13619053_8 (high_points VARCHAR, record VARCHAR) ### Question: Who scored the most points in the game where the Raptors became 13-49? ### Answer: SELECT high_points FROM table_13619053_8 WHERE record = "13-49" |
Who did the Raptors play against when their record was 13-48? | CREATE TABLE table_13619053_8 (team VARCHAR, record VARCHAR) | SELECT team FROM table_13619053_8 WHERE record = "13-48" | ### Context: CREATE TABLE table_13619053_8 (team VARCHAR, record VARCHAR) ### Question: Who did the Raptors play against when their record was 13-48? ### Answer: SELECT team FROM table_13619053_8 WHERE record = "13-48" |
Who was the high scorer in the game when the team was 1-4? | CREATE TABLE table_13619105_3 (high_points VARCHAR, record VARCHAR) | SELECT high_points FROM table_13619105_3 WHERE record = "1-4" | ### Context: CREATE TABLE table_13619105_3 (high_points VARCHAR, record VARCHAR) ### Question: Who was the high scorer in the game when the team was 1-4? ### Answer: SELECT high_points FROM table_13619105_3 WHERE record = "1-4" |
Where did they play and how many attended in the game against minnesota? | CREATE TABLE table_13619105_3 (location_attendance VARCHAR, team VARCHAR) | SELECT location_attendance FROM table_13619105_3 WHERE team = "Minnesota" | ### Context: CREATE TABLE table_13619105_3 (location_attendance VARCHAR, team VARCHAR) ### Question: Where did they play and how many attended in the game against minnesota? ### Answer: SELECT location_attendance FROM table_13619105_3 WHERE team = "Minnesota" |
Who had the high point total when dee brown (5) had the high assist total? | CREATE TABLE table_13619105_4 (high_points VARCHAR, high_assists VARCHAR) | SELECT high_points FROM table_13619105_4 WHERE high_assists = "Dee Brown (5)" | ### Context: CREATE TABLE table_13619105_4 (high_points VARCHAR, high_assists VARCHAR) ### Question: Who had the high point total when dee brown (5) had the high assist total? ### Answer: SELECT high_points FROM table_13619105_4 WHERE high_assists = "Dee Brown (5)" |
How many records are there for the games that took place on January 14. | CREATE TABLE table_13619135_5 (record VARCHAR, date VARCHAR) | SELECT COUNT(record) FROM table_13619135_5 WHERE date = "January 14" | ### Context: CREATE TABLE table_13619135_5 (record VARCHAR, date VARCHAR) ### Question: How many records are there for the games that took place on January 14. ### Answer: SELECT COUNT(record) FROM table_13619135_5 WHERE date = "January 14" |
Which players scored the most points when the opposing team was Seattle and how many points did they score? | CREATE TABLE table_13619135_5 (high_points VARCHAR, team VARCHAR) | SELECT high_points FROM table_13619135_5 WHERE team = "Seattle" | ### Context: CREATE TABLE table_13619135_5 (high_points VARCHAR, team VARCHAR) ### Question: Which players scored the most points when the opposing team was Seattle and how many points did they score? ### Answer: SELECT high_points FROM table_13619135_5 WHERE team = "Seattle" |
What was the location and attendance of the game against Portland? | CREATE TABLE table_13619135_5 (location_attendance VARCHAR, team VARCHAR) | SELECT location_attendance FROM table_13619135_5 WHERE team = "Portland" | ### Context: CREATE TABLE table_13619135_5 (location_attendance VARCHAR, team VARCHAR) ### Question: What was the location and attendance of the game against Portland? ### Answer: SELECT location_attendance FROM table_13619135_5 WHERE team = "Portland" |
What was the record when the score was w 108–93 (ot)? | CREATE TABLE table_13619135_5 (record VARCHAR, score VARCHAR) | SELECT record FROM table_13619135_5 WHERE score = "W 108–93 (OT)" | ### Context: CREATE TABLE table_13619135_5 (record VARCHAR, score VARCHAR) ### Question: What was the record when the score was w 108–93 (ot)? ### Answer: SELECT record FROM table_13619135_5 WHERE score = "W 108–93 (OT)" |
how many total population with catholic being smaller than 31370649.1405057 and region being north africa | CREATE TABLE table_1364343_2 (total_population VARCHAR, catholic VARCHAR, region VARCHAR) | SELECT COUNT(total_population) FROM table_1364343_2 WHERE catholic < 31370649.1405057 AND region = "North Africa" | ### Context: CREATE TABLE table_1364343_2 (total_population VARCHAR, catholic VARCHAR, region VARCHAR) ### Question: how many total population with catholic being smaller than 31370649.1405057 and region being north africa ### Answer: SELECT COUNT(total_population) FROM table_1364343_2 WHERE catholic < 31370649.140505... |
what's the wii points with title and source being tsūshin taikyoku: igo dōjō 2700-mon | CREATE TABLE table_13663434_1 (wii_points VARCHAR, title_and_source VARCHAR) | SELECT wii_points FROM table_13663434_1 WHERE title_and_source = "Tsūshin Taikyoku: Igo Dōjō 2700-Mon" | ### Context: CREATE TABLE table_13663434_1 (wii_points VARCHAR, title_and_source VARCHAR) ### Question: what's the wii points with title and source being tsūshin taikyoku: igo dōjō 2700-mon ### Answer: SELECT wii_points FROM table_13663434_1 WHERE title_and_source = "Tsūshin Taikyoku: Igo Dōjō 2700-Mon" |
what's the na -350- with title and source being paper wars: cannon fodder | CREATE TABLE table_13663434_1 (na__350_ VARCHAR, title_and_source VARCHAR) | SELECT na__350_ FROM table_13663434_1 WHERE title_and_source = "Paper Wars: Cannon Fodder" | ### Context: CREATE TABLE table_13663434_1 (na__350_ VARCHAR, title_and_source VARCHAR) ### Question: what's the na -350- with title and source being paper wars: cannon fodder ### Answer: SELECT na__350_ FROM table_13663434_1 WHERE title_and_source = "Paper Wars: Cannon Fodder" |
how many title and source with pal -295- being yes and jp -210- being yes | CREATE TABLE table_13663434_1 (title_and_source VARCHAR, pal__295_ VARCHAR, jp__210_ VARCHAR) | SELECT COUNT(title_and_source) FROM table_13663434_1 WHERE pal__295_ = "Yes" AND jp__210_ = "Yes" | ### Context: CREATE TABLE table_13663434_1 (title_and_source VARCHAR, pal__295_ VARCHAR, jp__210_ VARCHAR) ### Question: how many title and source with pal -295- being yes and jp -210- being yes ### Answer: SELECT COUNT(title_and_source) FROM table_13663434_1 WHERE pal__295_ = "Yes" AND jp__210_ = "Yes" |
what's the jp -210- with title and source being fun! fun! minigolf | CREATE TABLE table_13663434_1 (jp__210_ VARCHAR, title_and_source VARCHAR) | SELECT jp__210_ FROM table_13663434_1 WHERE title_and_source = "Fun! Fun! Minigolf" | ### Context: CREATE TABLE table_13663434_1 (jp__210_ VARCHAR, title_and_source VARCHAR) ### Question: what's the jp -210- with title and source being fun! fun! minigolf ### Answer: SELECT jp__210_ FROM table_13663434_1 WHERE title_and_source = "Fun! Fun! Minigolf" |
how many na -350- with title and source being bokumo sekai wo sukuitai: battle tournament | CREATE TABLE table_13663434_1 (na__350_ VARCHAR, title_and_source VARCHAR) | SELECT COUNT(na__350_) FROM table_13663434_1 WHERE title_and_source = "Bokumo Sekai wo Sukuitai: Battle Tournament" | ### Context: CREATE TABLE table_13663434_1 (na__350_ VARCHAR, title_and_source VARCHAR) ### Question: how many na -350- with title and source being bokumo sekai wo sukuitai: battle tournament ### Answer: SELECT COUNT(na__350_) FROM table_13663434_1 WHERE title_and_source = "Bokumo Sekai wo Sukuitai: Battle Tournament" |
What was the gtu winning team when the gto winning team was #48 greenwood racing? | CREATE TABLE table_13657883_2 (gtu_winning_team VARCHAR, gto_winning_team VARCHAR) | SELECT gtu_winning_team FROM table_13657883_2 WHERE gto_winning_team = "#48 Greenwood Racing" | ### Context: CREATE TABLE table_13657883_2 (gtu_winning_team VARCHAR, gto_winning_team VARCHAR) ### Question: What was the gtu winning team when the gto winning team was #48 greenwood racing? ### Answer: SELECT gtu_winning_team FROM table_13657883_2 WHERE gto_winning_team = "#48 Greenwood Racing" |
What was the to winnning team when the tu winning team was #16 2002? | CREATE TABLE table_13657883_2 (to_winning_team VARCHAR, tu_winning_team VARCHAR) | SELECT to_winning_team FROM table_13657883_2 WHERE tu_winning_team = "#16 2002" | ### Context: CREATE TABLE table_13657883_2 (to_winning_team VARCHAR, tu_winning_team VARCHAR) ### Question: What was the to winnning team when the tu winning team was #16 2002? ### Answer: SELECT to_winning_team FROM table_13657883_2 WHERE tu_winning_team = "#16 2002" |
What round was the gto winning team #48 greenwood racing? | CREATE TABLE table_13657883_2 (rnd VARCHAR, gto_winning_team VARCHAR) | SELECT rnd FROM table_13657883_2 WHERE gto_winning_team = "#48 Greenwood Racing" | ### Context: CREATE TABLE table_13657883_2 (rnd VARCHAR, gto_winning_team VARCHAR) ### Question: What round was the gto winning team #48 greenwood racing? ### Answer: SELECT rnd FROM table_13657883_2 WHERE gto_winning_team = "#48 Greenwood Racing" |
What was the to winning team when the tu winning team was joe amato carson baird? | CREATE TABLE table_13657883_2 (to_winning_team VARCHAR, tu_winning_team VARCHAR) | SELECT to_winning_team FROM table_13657883_2 WHERE tu_winning_team = "Joe Amato Carson Baird" | ### Context: CREATE TABLE table_13657883_2 (to_winning_team VARCHAR, tu_winning_team VARCHAR) ### Question: What was the to winning team when the tu winning team was joe amato carson baird? ### Answer: SELECT to_winning_team FROM table_13657883_2 WHERE tu_winning_team = "Joe Amato Carson Baird" |
Who is GTU Winning Team's #27 Don Lindley's TO Winning Team? | CREATE TABLE table_13657749_2 (to_winning_team VARCHAR, gtu_winning_team VARCHAR) | SELECT to_winning_team FROM table_13657749_2 WHERE gtu_winning_team = "#27 Don Lindley" | ### Context: CREATE TABLE table_13657749_2 (to_winning_team VARCHAR, gtu_winning_team VARCHAR) ### Question: Who is GTU Winning Team's #27 Don Lindley's TO Winning Team? ### Answer: SELECT to_winning_team FROM table_13657749_2 WHERE gtu_winning_team = "#27 Don Lindley" |
What is GTO Winning Team Mike Keyser's RND number? | CREATE TABLE table_13657749_2 (rnd VARCHAR, gto_winning_team VARCHAR) | SELECT rnd FROM table_13657749_2 WHERE gto_winning_team = "Mike Keyser" | ### Context: CREATE TABLE table_13657749_2 (rnd VARCHAR, gto_winning_team VARCHAR) ### Question: What is GTO Winning Team Mike Keyser's RND number? ### Answer: SELECT rnd FROM table_13657749_2 WHERE gto_winning_team = "Mike Keyser" |
Who is Gene Felton's TO Winning Team? | CREATE TABLE table_13657749_2 (to_winning_team VARCHAR, gto_winning_team VARCHAR) | SELECT to_winning_team FROM table_13657749_2 WHERE gto_winning_team = "Gene Felton" | ### Context: CREATE TABLE table_13657749_2 (to_winning_team VARCHAR, gto_winning_team VARCHAR) ### Question: Who is Gene Felton's TO Winning Team? ### Answer: SELECT to_winning_team FROM table_13657749_2 WHERE gto_winning_team = "Gene Felton" |
What is Peter Gregg Hurley Haywood's results? | CREATE TABLE table_13657749_2 (results VARCHAR, gto_winning_team VARCHAR) | SELECT results FROM table_13657749_2 WHERE gto_winning_team = "Peter Gregg Hurley Haywood" | ### Context: CREATE TABLE table_13657749_2 (results VARCHAR, gto_winning_team VARCHAR) ### Question: What is Peter Gregg Hurley Haywood's results? ### Answer: SELECT results FROM table_13657749_2 WHERE gto_winning_team = "Peter Gregg Hurley Haywood" |
What was the least amount for Goals Olimpia? | CREATE TABLE table_13688489_1 (goals_olimpia INTEGER) | SELECT MIN(goals_olimpia) FROM table_13688489_1 | ### Context: CREATE TABLE table_13688489_1 (goals_olimpia INTEGER) ### Question: What was the least amount for Goals Olimpia? ### Answer: SELECT MIN(goals_olimpia) FROM table_13688489_1 |
How many goals Olimpia recorded for 32 matches? | CREATE TABLE table_13688489_1 (goals_olimpia VARCHAR, matches VARCHAR) | SELECT COUNT(goals_olimpia) FROM table_13688489_1 WHERE matches = 32 | ### Context: CREATE TABLE table_13688489_1 (goals_olimpia VARCHAR, matches VARCHAR) ### Question: How many goals Olimpia recorded for 32 matches? ### Answer: SELECT COUNT(goals_olimpia) FROM table_13688489_1 WHERE matches = 32 |
What was the number of matches when the Goals Olimpia was 149? | CREATE TABLE table_13688489_1 (matches VARCHAR, goals_olimpia VARCHAR) | SELECT matches FROM table_13688489_1 WHERE goals_olimpia = 149 | ### Context: CREATE TABLE table_13688489_1 (matches VARCHAR, goals_olimpia VARCHAR) ### Question: What was the number of matches when the Goals Olimpia was 149? ### Answer: SELECT matches FROM table_13688489_1 WHERE goals_olimpia = 149 |
what's the time required for prices to double with highest monthly inflation rate being 29,500% | CREATE TABLE table_13681_2 (time_required_for_prices_to_double VARCHAR, highest_monthly_inflation_rate VARCHAR) | SELECT time_required_for_prices_to_double FROM table_13681_2 WHERE highest_monthly_inflation_rate = "29,500%" | ### Context: CREATE TABLE table_13681_2 (time_required_for_prices_to_double VARCHAR, highest_monthly_inflation_rate VARCHAR) ### Question: what's the time required for prices to double with highest monthly inflation rate being 29,500% ### Answer: SELECT time_required_for_prices_to_double FROM table_13681_2 WHERE highes... |
what's the currency name with highest monthly inflation rate being 29,500% | CREATE TABLE table_13681_2 (currency_name VARCHAR, highest_monthly_inflation_rate VARCHAR) | SELECT currency_name FROM table_13681_2 WHERE highest_monthly_inflation_rate = "29,500%" | ### Context: CREATE TABLE table_13681_2 (currency_name VARCHAR, highest_monthly_inflation_rate VARCHAR) ### Question: what's the currency name with highest monthly inflation rate being 29,500% ### Answer: SELECT currency_name FROM table_13681_2 WHERE highest_monthly_inflation_rate = "29,500%" |
how many equivalent daily inflation rate with time required for prices to double being 3.7 days | CREATE TABLE table_13681_2 (equivalent_daily_inflation_rate VARCHAR, time_required_for_prices_to_double VARCHAR) | SELECT COUNT(equivalent_daily_inflation_rate) FROM table_13681_2 WHERE time_required_for_prices_to_double = "3.7 days" | ### Context: CREATE TABLE table_13681_2 (equivalent_daily_inflation_rate VARCHAR, time_required_for_prices_to_double VARCHAR) ### Question: how many equivalent daily inflation rate with time required for prices to double being 3.7 days ### Answer: SELECT COUNT(equivalent_daily_inflation_rate) FROM table_13681_2 WHERE ... |
how many country with currency name being republika srpska dinar | CREATE TABLE table_13681_2 (country VARCHAR, currency_name VARCHAR) | SELECT COUNT(country) FROM table_13681_2 WHERE currency_name = "Republika Srpska dinar" | ### Context: CREATE TABLE table_13681_2 (country VARCHAR, currency_name VARCHAR) ### Question: how many country with currency name being republika srpska dinar ### Answer: SELECT COUNT(country) FROM table_13681_2 WHERE currency_name = "Republika Srpska dinar" |
how many equivalent daily inflation rate with currency name being republika srpska dinar | CREATE TABLE table_13681_2 (equivalent_daily_inflation_rate VARCHAR, currency_name VARCHAR) | SELECT COUNT(equivalent_daily_inflation_rate) FROM table_13681_2 WHERE currency_name = "Republika Srpska dinar" | ### Context: CREATE TABLE table_13681_2 (equivalent_daily_inflation_rate VARCHAR, currency_name VARCHAR) ### Question: how many equivalent daily inflation rate with currency name being republika srpska dinar ### Answer: SELECT COUNT(equivalent_daily_inflation_rate) FROM table_13681_2 WHERE currency_name = "Republika S... |
what's the country with highest monthly inflation rate being 3.13 × 10 8 % | CREATE TABLE table_13681_2 (country VARCHAR, highest_monthly_inflation_rate VARCHAR) | SELECT country FROM table_13681_2 WHERE highest_monthly_inflation_rate = "3.13 × 10 8 %" | ### Context: CREATE TABLE table_13681_2 (country VARCHAR, highest_monthly_inflation_rate VARCHAR) ### Question: what's the country with highest monthly inflation rate being 3.13 × 10 8 % ### Answer: SELECT country FROM table_13681_2 WHERE highest_monthly_inflation_rate = "3.13 × 10 8 %" |
How many grand final dual television commentators were there in 1961? | CREATE TABLE table_1368649_9 (grand_final_dual_television_commentator VARCHAR, year_s_ VARCHAR) | SELECT COUNT(grand_final_dual_television_commentator) FROM table_1368649_9 WHERE year_s_ = 1961 | ### Context: CREATE TABLE table_1368649_9 (grand_final_dual_television_commentator VARCHAR, year_s_ VARCHAR) ### Question: How many grand final dual television commentators were there in 1961? ### Answer: SELECT COUNT(grand_final_dual_television_commentator) FROM table_1368649_9 WHERE year_s_ = 1961 |
Who was the spokesperson for France in 1970? | CREATE TABLE table_1368649_9 (spokesperson VARCHAR, year_s_ VARCHAR) | SELECT spokesperson FROM table_1368649_9 WHERE year_s_ = 1970 | ### Context: CREATE TABLE table_1368649_9 (spokesperson VARCHAR, year_s_ VARCHAR) ### Question: Who was the spokesperson for France in 1970? ### Answer: SELECT spokesperson FROM table_1368649_9 WHERE year_s_ = 1970 |
What year was Thierry Beccaro the spokesperson? | CREATE TABLE table_1368649_9 (year_s_ INTEGER, spokesperson VARCHAR) | SELECT MIN(year_s_) FROM table_1368649_9 WHERE spokesperson = "Thierry Beccaro" | ### Context: CREATE TABLE table_1368649_9 (year_s_ INTEGER, spokesperson VARCHAR) ### Question: What year was Thierry Beccaro the spokesperson? ### Answer: SELECT MIN(year_s_) FROM table_1368649_9 WHERE spokesperson = "Thierry Beccaro" |
How many games played on june 25? | CREATE TABLE table_13710464_1 (score VARCHAR, date VARCHAR) | SELECT COUNT(score) FROM table_13710464_1 WHERE date = "June 25" | ### Context: CREATE TABLE table_13710464_1 (score VARCHAR, date VARCHAR) ### Question: How many games played on june 25? ### Answer: SELECT COUNT(score) FROM table_13710464_1 WHERE date = "June 25" |
Who won the game on may 21? | CREATE TABLE table_13710464_1 (winning_team VARCHAR, date VARCHAR) | SELECT winning_team FROM table_13710464_1 WHERE date = "May 21" | ### Context: CREATE TABLE table_13710464_1 (winning_team VARCHAR, date VARCHAR) ### Question: Who won the game on may 21? ### Answer: SELECT winning_team FROM table_13710464_1 WHERE date = "May 21" |
Who was the losing pitcher when 40583 attended? | CREATE TABLE table_13710464_1 (losing_pitcher VARCHAR, attendance VARCHAR) | SELECT losing_pitcher FROM table_13710464_1 WHERE attendance = 40583 | ### Context: CREATE TABLE table_13710464_1 (losing_pitcher VARCHAR, attendance VARCHAR) ### Question: Who was the losing pitcher when 40583 attended? ### Answer: SELECT losing_pitcher FROM table_13710464_1 WHERE attendance = 40583 |
Who was the wenning witcher when ezequiel astacio was the losing pitcher? | CREATE TABLE table_13710464_1 (winning_pitcher VARCHAR, losing_pitcher VARCHAR) | SELECT winning_pitcher FROM table_13710464_1 WHERE losing_pitcher = "Ezequiel Astacio" | ### Context: CREATE TABLE table_13710464_1 (winning_pitcher VARCHAR, losing_pitcher VARCHAR) ### Question: Who was the wenning witcher when ezequiel astacio was the losing pitcher? ### Answer: SELECT winning_pitcher FROM table_13710464_1 WHERE losing_pitcher = "Ezequiel Astacio" |
Where was the game played on may 20? | CREATE TABLE table_13710464_1 (location VARCHAR, date VARCHAR) | SELECT location FROM table_13710464_1 WHERE date = "May 20" | ### Context: CREATE TABLE table_13710464_1 (location VARCHAR, date VARCHAR) ### Question: Where was the game played on may 20? ### Answer: SELECT location FROM table_13710464_1 WHERE date = "May 20" |
On what position number is the club with a w-l-d of 5-7-4? | CREATE TABLE table_13713206_1 (club__city_town_ VARCHAR, w_l_d VARCHAR) | SELECT COUNT(club__city_town_) FROM table_13713206_1 WHERE w_l_d = "5-7-4" | ### Context: CREATE TABLE table_13713206_1 (club__city_town_ VARCHAR, w_l_d VARCHAR) ### Question: On what position number is the club with a w-l-d of 5-7-4? ### Answer: SELECT COUNT(club__city_town_) FROM table_13713206_1 WHERE w_l_d = "5-7-4" |
What's the position of the club with w-l-d of 6-2-8? | CREATE TABLE table_13713206_1 (position INTEGER, w_l_d VARCHAR) | SELECT MAX(position) FROM table_13713206_1 WHERE w_l_d = "6-2-8" | ### Context: CREATE TABLE table_13713206_1 (position INTEGER, w_l_d VARCHAR) ### Question: What's the position of the club with w-l-d of 6-2-8? ### Answer: SELECT MAX(position) FROM table_13713206_1 WHERE w_l_d = "6-2-8" |
How many games has the club with 29-24 goals for/against score played? | CREATE TABLE table_13713206_1 (games_played VARCHAR, goals_for_against VARCHAR) | SELECT games_played FROM table_13713206_1 WHERE goals_for_against = "29-24" | ### Context: CREATE TABLE table_13713206_1 (games_played VARCHAR, goals_for_against VARCHAR) ### Question: How many games has the club with 29-24 goals for/against score played? ### Answer: SELECT games_played FROM table_13713206_1 WHERE goals_for_against = "29-24" |
How many films titled Gie have been nominated? | CREATE TABLE table_13719788_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR) | SELECT COUNT(original_title) FROM table_13719788_1 WHERE film_title_used_in_nomination = "Gie" | ### Context: CREATE TABLE table_13719788_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR) ### Question: How many films titled Gie have been nominated? ### Answer: SELECT COUNT(original_title) FROM table_13719788_1 WHERE film_title_used_in_nomination = "Gie" |
Who is the director of the fimm Biola Tak Berdawai? | CREATE TABLE table_13719788_1 (director VARCHAR, original_title VARCHAR) | SELECT director FROM table_13719788_1 WHERE original_title = "Biola tak berdawai" | ### Context: CREATE TABLE table_13719788_1 (director VARCHAR, original_title VARCHAR) ### Question: Who is the director of the fimm Biola Tak Berdawai? ### Answer: SELECT director FROM table_13719788_1 WHERE original_title = "Biola tak berdawai" |
What title was used in the nomination for the title Biola Tak Berdawai? | CREATE TABLE table_13719788_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR) | SELECT film_title_used_in_nomination FROM table_13719788_1 WHERE original_title = "Biola tak berdawai" | ### Context: CREATE TABLE table_13719788_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR) ### Question: What title was used in the nomination for the title Biola Tak Berdawai? ### Answer: SELECT film_title_used_in_nomination FROM table_13719788_1 WHERE original_title = "Biola tak berdawai" |
How many years have a film that uses the title "Nagabonar" in the nomination? | CREATE TABLE table_13719788_1 (year__ceremony_ VARCHAR, film_title_used_in_nomination VARCHAR) | SELECT COUNT(year__ceremony_) FROM table_13719788_1 WHERE film_title_used_in_nomination = "Nagabonar" | ### Context: CREATE TABLE table_13719788_1 (year__ceremony_ VARCHAR, film_title_used_in_nomination VARCHAR) ### Question: How many years have a film that uses the title "Nagabonar" in the nomination? ### Answer: SELECT COUNT(year__ceremony_) FROM table_13719788_1 WHERE film_title_used_in_nomination = "Nagabonar" |
Who is the director of the film Gie? | CREATE TABLE table_13719788_1 (director VARCHAR, film_title_used_in_nomination VARCHAR) | SELECT director FROM table_13719788_1 WHERE film_title_used_in_nomination = "Gie" | ### Context: CREATE TABLE table_13719788_1 (director VARCHAR, film_title_used_in_nomination VARCHAR) ### Question: Who is the director of the film Gie? ### Answer: SELECT director FROM table_13719788_1 WHERE film_title_used_in_nomination = "Gie" |
Name the try bonus for tries against is 70 | CREATE TABLE table_13741576_4 (try_bonus VARCHAR, tries_against VARCHAR) | SELECT try_bonus FROM table_13741576_4 WHERE tries_against = "70" | ### Context: CREATE TABLE table_13741576_4 (try_bonus VARCHAR, tries_against VARCHAR) ### Question: Name the try bonus for tries against is 70 ### Answer: SELECT try_bonus FROM table_13741576_4 WHERE tries_against = "70" |
What is the try bonus for when tries against is 43? | CREATE TABLE table_13741576_4 (try_bonus VARCHAR, tries_against VARCHAR) | SELECT try_bonus FROM table_13741576_4 WHERE tries_against = "43" | ### Context: CREATE TABLE table_13741576_4 (try_bonus VARCHAR, tries_against VARCHAR) ### Question: What is the try bonus for when tries against is 43? ### Answer: SELECT try_bonus FROM table_13741576_4 WHERE tries_against = "43" |
Name the drawn for llandaff rfc | CREATE TABLE table_13741576_4 (drawn VARCHAR, club VARCHAR) | SELECT drawn FROM table_13741576_4 WHERE club = "Llandaff RFC" | ### Context: CREATE TABLE table_13741576_4 (drawn VARCHAR, club VARCHAR) ### Question: Name the drawn for llandaff rfc ### Answer: SELECT drawn FROM table_13741576_4 WHERE club = "Llandaff RFC" |
Name the won for try bonus of 10 | CREATE TABLE table_13741576_4 (won VARCHAR, try_bonus VARCHAR) | SELECT won FROM table_13741576_4 WHERE try_bonus = "10" | ### Context: CREATE TABLE table_13741576_4 (won VARCHAR, try_bonus VARCHAR) ### Question: Name the won for try bonus of 10 ### Answer: SELECT won FROM table_13741576_4 WHERE try_bonus = "10" |
It was announced on July 2, 2006 that what asset was acquired? | CREATE TABLE table_1373542_1 (asset_acquired VARCHAR, date_announced VARCHAR) | SELECT asset_acquired FROM table_1373542_1 WHERE date_announced = "July 2, 2006" | ### Context: CREATE TABLE table_1373542_1 (asset_acquired VARCHAR, date_announced VARCHAR) ### Question: It was announced on July 2, 2006 that what asset was acquired? ### Answer: SELECT asset_acquired FROM table_1373542_1 WHERE date_announced = "July 2, 2006" |
On what date was it announced that an asset was acquired for US$9 Million? | CREATE TABLE table_1373542_1 (date_announced VARCHAR, reported_cost VARCHAR) | SELECT date_announced FROM table_1373542_1 WHERE reported_cost = "US$9 million" | ### Context: CREATE TABLE table_1373542_1 (date_announced VARCHAR, reported_cost VARCHAR) ### Question: On what date was it announced that an asset was acquired for US$9 Million? ### Answer: SELECT date_announced FROM table_1373542_1 WHERE reported_cost = "US$9 million" |
On what date was the asset acquisition that was announced on February 22, 2007 completed? | CREATE TABLE table_1373542_1 (date_completed VARCHAR, date_announced VARCHAR) | SELECT date_completed FROM table_1373542_1 WHERE date_announced = "February 22, 2007" | ### Context: CREATE TABLE table_1373542_1 (date_completed VARCHAR, date_announced VARCHAR) ### Question: On what date was the asset acquisition that was announced on February 22, 2007 completed? ### Answer: SELECT date_completed FROM table_1373542_1 WHERE date_announced = "February 22, 2007" |
What was the reported cost of the asset acquired from Standard & Poor's? | CREATE TABLE table_1373542_1 (reported_cost VARCHAR, acquired_from VARCHAR) | SELECT reported_cost FROM table_1373542_1 WHERE acquired_from = "Standard & Poor's" | ### Context: CREATE TABLE table_1373542_1 (reported_cost VARCHAR, acquired_from VARCHAR) ### Question: What was the reported cost of the asset acquired from Standard & Poor's? ### Answer: SELECT reported_cost FROM table_1373542_1 WHERE acquired_from = "Standard & Poor's" |
what's the trim with fuel mileage (latest epa mpg - us ) being 22 city, 30 hwy, 25 comb | CREATE TABLE table_1373768_1 (trim VARCHAR, fuel_mileage__latest_epa_mpg___us__ VARCHAR) | SELECT trim FROM table_1373768_1 WHERE fuel_mileage__latest_epa_mpg___us__ = "22 city, 30 hwy, 25 comb" | ### Context: CREATE TABLE table_1373768_1 (trim VARCHAR, fuel_mileage__latest_epa_mpg___us__ VARCHAR) ### Question: what's the trim with fuel mileage (latest epa mpg - us ) being 22 city, 30 hwy, 25 comb ### Answer: SELECT trim FROM table_1373768_1 WHERE fuel_mileage__latest_epa_mpg___us__ = "22 city, 30 hwy, 25 comb" |
what's the trim with engine being 3.5l lz4 v6 | CREATE TABLE table_1373768_1 (trim VARCHAR, engine VARCHAR) | SELECT trim FROM table_1373768_1 WHERE engine = "3.5L LZ4 V6" | ### Context: CREATE TABLE table_1373768_1 (trim VARCHAR, engine VARCHAR) ### Question: what's the trim with engine being 3.5l lz4 v6 ### Answer: SELECT trim FROM table_1373768_1 WHERE engine = "3.5L LZ4 V6" |
what's the torque with fuel mileage (latest epa mpg - us ) being 22 city, 30 hwy, 25 comb | CREATE TABLE table_1373768_1 (torque VARCHAR, fuel_mileage__latest_epa_mpg___us__ VARCHAR) | SELECT torque FROM table_1373768_1 WHERE fuel_mileage__latest_epa_mpg___us__ = "22 city, 30 hwy, 25 comb" | ### Context: CREATE TABLE table_1373768_1 (torque VARCHAR, fuel_mileage__latest_epa_mpg___us__ VARCHAR) ### Question: what's the torque with fuel mileage (latest epa mpg - us ) being 22 city, 30 hwy, 25 comb ### Answer: SELECT torque FROM table_1373768_1 WHERE fuel_mileage__latest_epa_mpg___us__ = "22 city, 30 hwy, 25 ... |
what's the torque with trim being xe (2009) | CREATE TABLE table_1373768_1 (torque VARCHAR, trim VARCHAR) | SELECT torque FROM table_1373768_1 WHERE trim = "XE (2009)" | ### Context: CREATE TABLE table_1373768_1 (torque VARCHAR, trim VARCHAR) ### Question: what's the torque with trim being xe (2009) ### Answer: SELECT torque FROM table_1373768_1 WHERE trim = "XE (2009)" |
what's the transmbeingsion with trim being xe (2009) | CREATE TABLE table_1373768_1 (transmission VARCHAR, trim VARCHAR) | SELECT transmission FROM table_1373768_1 WHERE trim = "XE (2009)" | ### Context: CREATE TABLE table_1373768_1 (transmission VARCHAR, trim VARCHAR) ### Question: what's the transmbeingsion with trim being xe (2009) ### Answer: SELECT transmission FROM table_1373768_1 WHERE trim = "XE (2009)" |
Nantyglo RFC had 546 points for and how many points? | CREATE TABLE table_13741576_6 (points VARCHAR, points_for VARCHAR) | SELECT points FROM table_13741576_6 WHERE points_for = "546" | ### Context: CREATE TABLE table_13741576_6 (points VARCHAR, points_for VARCHAR) ### Question: Nantyglo RFC had 546 points for and how many points? ### Answer: SELECT points FROM table_13741576_6 WHERE points_for = "546" |
What club had 523 points against? | CREATE TABLE table_13741576_6 (club VARCHAR, points_against VARCHAR) | SELECT club FROM table_13741576_6 WHERE points_against = "523" | ### Context: CREATE TABLE table_13741576_6 (club VARCHAR, points_against VARCHAR) ### Question: What club had 523 points against? ### Answer: SELECT club FROM table_13741576_6 WHERE points_against = "523" |
What club has 536 points for? | CREATE TABLE table_13741576_6 (club VARCHAR, points_for VARCHAR) | SELECT club FROM table_13741576_6 WHERE points_for = "536" | ### Context: CREATE TABLE table_13741576_6 (club VARCHAR, points_for VARCHAR) ### Question: What club has 536 points for? ### Answer: SELECT club FROM table_13741576_6 WHERE points_for = "536" |
How many clubs had 7 wins? | CREATE TABLE table_13741576_6 (club VARCHAR, won VARCHAR) | SELECT COUNT(club) FROM table_13741576_6 WHERE won = "7" | ### Context: CREATE TABLE table_13741576_6 (club VARCHAR, won VARCHAR) ### Question: How many clubs had 7 wins? ### Answer: SELECT COUNT(club) FROM table_13741576_6 WHERE won = "7" |
What club had 404 points against? | CREATE TABLE table_13741576_6 (club VARCHAR, points_against VARCHAR) | SELECT club FROM table_13741576_6 WHERE points_against = "404" | ### Context: CREATE TABLE table_13741576_6 (club VARCHAR, points_against VARCHAR) ### Question: What club had 404 points against? ### Answer: SELECT club FROM table_13741576_6 WHERE points_against = "404" |
Risca RFC has 54 tries for and how many draws? | CREATE TABLE table_13741576_6 (drawn VARCHAR, tries_for VARCHAR) | SELECT drawn FROM table_13741576_6 WHERE tries_for = "54" | ### Context: CREATE TABLE table_13741576_6 (drawn VARCHAR, tries_for VARCHAR) ### Question: Risca RFC has 54 tries for and how many draws? ### Answer: SELECT drawn FROM table_13741576_6 WHERE tries_for = "54" |
What club has 36 points? | CREATE TABLE table_13758945_1 (club VARCHAR, points VARCHAR) | SELECT club FROM table_13758945_1 WHERE points = "36" | ### Context: CREATE TABLE table_13758945_1 (club VARCHAR, points VARCHAR) ### Question: What club has 36 points? ### Answer: SELECT club FROM table_13758945_1 WHERE points = "36" |
What are the lost where points lost is 353? | CREATE TABLE table_13758945_1 (lost VARCHAR, points_for VARCHAR) | SELECT lost FROM table_13758945_1 WHERE points_for = "353" | ### Context: CREATE TABLE table_13758945_1 (lost VARCHAR, points_for VARCHAR) ### Question: What are the lost where points lost is 353? ### Answer: SELECT lost FROM table_13758945_1 WHERE points_for = "353" |
What are the won games with losing bonus of 0? | CREATE TABLE table_13758945_1 (won VARCHAR, losing_bonus VARCHAR) | SELECT won FROM table_13758945_1 WHERE losing_bonus = "0" | ### Context: CREATE TABLE table_13758945_1 (won VARCHAR, losing_bonus VARCHAR) ### Question: What are the won games with losing bonus of 0? ### Answer: SELECT won FROM table_13758945_1 WHERE losing_bonus = "0" |
Which club has 565 points? | CREATE TABLE table_13758945_1 (club VARCHAR, points_for VARCHAR) | SELECT club FROM table_13758945_1 WHERE points_for = "565" | ### Context: CREATE TABLE table_13758945_1 (club VARCHAR, points_for VARCHAR) ### Question: Which club has 565 points? ### Answer: SELECT club FROM table_13758945_1 WHERE points_for = "565" |
How many tries where points is 77? | CREATE TABLE table_13758945_1 (tries_for VARCHAR, points VARCHAR) | SELECT tries_for FROM table_13758945_1 WHERE points = "77" | ### Context: CREATE TABLE table_13758945_1 (tries_for VARCHAR, points VARCHAR) ### Question: How many tries where points is 77? ### Answer: SELECT tries_for FROM table_13758945_1 WHERE points = "77" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.