question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Which frequency is station wlfv-fm?
CREATE TABLE table_19131921_1 (frequency VARCHAR, station VARCHAR)
SELECT frequency FROM table_19131921_1 WHERE station = "WLFV-FM"
### Context: CREATE TABLE table_19131921_1 (frequency VARCHAR, station VARCHAR) ### Question: Which frequency is station wlfv-fm? ### Answer: SELECT frequency FROM table_19131921_1 WHERE station = "WLFV-FM"
Which station has the frequency of 107.3?
CREATE TABLE table_19131921_1 (station VARCHAR, frequency VARCHAR)
SELECT station FROM table_19131921_1 WHERE frequency = "107.3"
### Context: CREATE TABLE table_19131921_1 (station VARCHAR, frequency VARCHAR) ### Question: Which station has the frequency of 107.3? ### Answer: SELECT station FROM table_19131921_1 WHERE frequency = "107.3"
What is dma?
CREATE TABLE table_19131921_1 (dma INTEGER)
SELECT MIN(dma) FROM table_19131921_1
### Context: CREATE TABLE table_19131921_1 (dma INTEGER) ### Question: What is dma? ### Answer: SELECT MIN(dma) FROM table_19131921_1
What is the dma of branding is big oldies 107.3 with the station warv-fm?
CREATE TABLE table_19131921_1 (dma VARCHAR, branding VARCHAR, station VARCHAR)
SELECT dma FROM table_19131921_1 WHERE branding = "Big Oldies 107.3" AND station = "WARV-FM"
### Context: CREATE TABLE table_19131921_1 (dma VARCHAR, branding VARCHAR, station VARCHAR) ### Question: What is the dma of branding is big oldies 107.3 with the station warv-fm? ### Answer: SELECT dma FROM table_19131921_1 WHERE branding = "Big Oldies 107.3" AND station = "WARV-FM"
Which branding has the format of southern country?
CREATE TABLE table_19131921_1 (branding VARCHAR, format VARCHAR)
SELECT branding FROM table_19131921_1 WHERE format = "Southern Country"
### Context: CREATE TABLE table_19131921_1 (branding VARCHAR, format VARCHAR) ### Question: Which branding has the format of southern country? ### Answer: SELECT branding FROM table_19131921_1 WHERE format = "Southern Country"
What is the total number of gentle personalities?
CREATE TABLE table_1912713_2 (方位_direction VARCHAR, 性情_personality VARCHAR)
SELECT COUNT(方位_direction) FROM table_1912713_2 WHERE 性情_personality = "Gentle"
### Context: CREATE TABLE table_1912713_2 (方位_direction VARCHAR, 性情_personality VARCHAR) ### Question: What is the total number of gentle personalities? ### Answer: SELECT COUNT(方位_direction) FROM table_1912713_2 WHERE 性情_personality = "Gentle"
What is the meaning of a gentle personality?
CREATE TABLE table_1912713_2 (意義_meaning VARCHAR, 性情_personality VARCHAR)
SELECT 意義_meaning FROM table_1912713_2 WHERE 性情_personality = "Gentle"
### Context: CREATE TABLE table_1912713_2 (意義_meaning VARCHAR, 性情_personality VARCHAR) ### Question: What is the meaning of a gentle personality? ### Answer: SELECT 意義_meaning FROM table_1912713_2 WHERE 性情_personality = "Gentle"
Who in the family has a gentle personality?
CREATE TABLE table_1912713_2 (家族_family VARCHAR, 性情_personality VARCHAR)
SELECT 家族_family FROM table_1912713_2 WHERE 性情_personality = "Gentle"
### Context: CREATE TABLE table_1912713_2 (家族_family VARCHAR, 性情_personality VARCHAR) ### Question: Who in the family has a gentle personality? ### Answer: SELECT 家族_family FROM table_1912713_2 WHERE 性情_personality = "Gentle"
Which mission number has alternate name 1962-f01
CREATE TABLE table_191323_2 (mission_no VARCHAR, alt_name VARCHAR)
SELECT mission_no FROM table_191323_2 WHERE alt_name = "1962-F01"
### Context: CREATE TABLE table_191323_2 (mission_no VARCHAR, alt_name VARCHAR) ### Question: Which mission number has alternate name 1962-f01 ### Answer: SELECT mission_no FROM table_191323_2 WHERE alt_name = "1962-F01"
What are the notes of the satellite whose nssdc id number is 1959-002a?
CREATE TABLE table_191323_2 (notes VARCHAR, nssdc_id_no VARCHAR)
SELECT notes FROM table_191323_2 WHERE nssdc_id_no = "1959-002A"
### Context: CREATE TABLE table_191323_2 (notes VARCHAR, nssdc_id_no VARCHAR) ### Question: What are the notes of the satellite whose nssdc id number is 1959-002a? ### Answer: SELECT notes FROM table_191323_2 WHERE nssdc_id_no = "1959-002A"
What are the alternative name/s of those satellites whose nssdc id number is 1970-054a?
CREATE TABLE table_191323_2 (alt_name VARCHAR, nssdc_id_no VARCHAR)
SELECT alt_name FROM table_191323_2 WHERE nssdc_id_no = "1970-054A"
### Context: CREATE TABLE table_191323_2 (alt_name VARCHAR, nssdc_id_no VARCHAR) ### Question: What are the alternative name/s of those satellites whose nssdc id number is 1970-054a? ### Answer: SELECT alt_name FROM table_191323_2 WHERE nssdc_id_no = "1970-054A"
What are the alternative names of those satellites where the notes are: mission failed. guidance system failed. no orbit.
CREATE TABLE table_191323_2 (alt_name VARCHAR, notes VARCHAR)
SELECT alt_name FROM table_191323_2 WHERE notes = "Mission failed. Guidance system failed. No orbit."
### Context: CREATE TABLE table_191323_2 (alt_name VARCHAR, notes VARCHAR) ### Question: What are the alternative names of those satellites where the notes are: mission failed. guidance system failed. no orbit. ### Answer: SELECT alt_name FROM table_191323_2 WHERE notes = "Mission failed. Guidance system failed. No orb...
If -750m is 46.436, what is the name of the cyclist?
CREATE TABLE table_1912276_2 (name VARCHAR, __750m VARCHAR)
SELECT name FROM table_1912276_2 WHERE __750m = "46.436"
### Context: CREATE TABLE table_1912276_2 (name VARCHAR, __750m VARCHAR) ### Question: If -750m is 46.436, what is the name of the cyclist? ### Answer: SELECT name FROM table_1912276_2 WHERE __750m = "46.436"
What is the -500 number for Theo Bos?
CREATE TABLE table_1912276_2 (__500m VARCHAR, name VARCHAR)
SELECT __500m FROM table_1912276_2 WHERE name = "Theo Bos"
### Context: CREATE TABLE table_1912276_2 (__500m VARCHAR, name VARCHAR) ### Question: What is the -500 number for Theo Bos? ### Answer: SELECT __500m FROM table_1912276_2 WHERE name = "Theo Bos"
If the -250m is 18.852, what is the
CREATE TABLE table_1912276_2 (__750m VARCHAR, __250m VARCHAR)
SELECT __750m FROM table_1912276_2 WHERE __250m = "18.852"
### Context: CREATE TABLE table_1912276_2 (__750m VARCHAR, __250m VARCHAR) ### Question: If the -250m is 18.852, what is the ### Answer: SELECT __750m FROM table_1912276_2 WHERE __250m = "18.852"
If -750 is 45.505, what is the maximum rank?
CREATE TABLE table_1912276_2 (rank INTEGER, __750m VARCHAR)
SELECT MAX(rank) FROM table_1912276_2 WHERE __750m = "45.505"
### Context: CREATE TABLE table_1912276_2 (rank INTEGER, __750m VARCHAR) ### Question: If -750 is 45.505, what is the maximum rank? ### Answer: SELECT MAX(rank) FROM table_1912276_2 WHERE __750m = "45.505"
Where are there 25 episodes in Catfights and Brawls?
CREATE TABLE table_191591_5 (region_2 VARCHAR, number_of_episodes VARCHAR, dvd_title VARCHAR)
SELECT region_2 FROM table_191591_5 WHERE number_of_episodes = "25" AND dvd_title = "Catfights and Brawls"
### Context: CREATE TABLE table_191591_5 (region_2 VARCHAR, number_of_episodes VARCHAR, dvd_title VARCHAR) ### Question: Where are there 25 episodes in Catfights and Brawls? ### Answer: SELECT region_2 FROM table_191591_5 WHERE number_of_episodes = "25" AND dvd_title = "Catfights and Brawls"
Name the missouri for 2002
CREATE TABLE table_19153842_1 (missouri VARCHAR, year VARCHAR)
SELECT missouri FROM table_19153842_1 WHERE year = 2002
### Context: CREATE TABLE table_19153842_1 (missouri VARCHAR, year VARCHAR) ### Question: Name the missouri for 2002 ### Answer: SELECT missouri FROM table_19153842_1 WHERE year = 2002
How many Bangladeshi citizens are there in the borough ranked at number 7?
CREATE TABLE table_19149550_9 (bangladeshi_population INTEGER, rank VARCHAR)
SELECT MIN(bangladeshi_population) FROM table_19149550_9 WHERE rank = 7
### Context: CREATE TABLE table_19149550_9 (bangladeshi_population INTEGER, rank VARCHAR) ### Question: How many Bangladeshi citizens are there in the borough ranked at number 7? ### Answer: SELECT MIN(bangladeshi_population) FROM table_19149550_9 WHERE rank = 7
What's the London borough with 7797 Pakistani citizens?
CREATE TABLE table_19149550_9 (london_borough VARCHAR, pakistani_population VARCHAR)
SELECT london_borough FROM table_19149550_9 WHERE pakistani_population = 7797
### Context: CREATE TABLE table_19149550_9 (london_borough VARCHAR, pakistani_population VARCHAR) ### Question: What's the London borough with 7797 Pakistani citizens? ### Answer: SELECT london_borough FROM table_19149550_9 WHERE pakistani_population = 7797
How many boroughs with different ranks have a total Asian population of 33338?
CREATE TABLE table_19149550_9 (rank VARCHAR, total_asian_population VARCHAR)
SELECT COUNT(rank) FROM table_19149550_9 WHERE total_asian_population = 33338
### Context: CREATE TABLE table_19149550_9 (rank VARCHAR, total_asian_population VARCHAR) ### Question: How many boroughs with different ranks have a total Asian population of 33338? ### Answer: SELECT COUNT(rank) FROM table_19149550_9 WHERE total_asian_population = 33338
What's the Chinese population in the borough with 26347 Pakistanis?
CREATE TABLE table_19149550_9 (chinese_population VARCHAR, pakistani_population VARCHAR)
SELECT chinese_population FROM table_19149550_9 WHERE pakistani_population = 26347
### Context: CREATE TABLE table_19149550_9 (chinese_population VARCHAR, pakistani_population VARCHAR) ### Question: What's the Chinese population in the borough with 26347 Pakistanis? ### Answer: SELECT chinese_population FROM table_19149550_9 WHERE pakistani_population = 26347
How many Asians live in the borough with 8109 Chinese population?
CREATE TABLE table_19149550_9 (total_asian_population INTEGER, chinese_population VARCHAR)
SELECT MIN(total_asian_population) FROM table_19149550_9 WHERE chinese_population = 8109
### Context: CREATE TABLE table_19149550_9 (total_asian_population INTEGER, chinese_population VARCHAR) ### Question: How many Asians live in the borough with 8109 Chinese population? ### Answer: SELECT MIN(total_asian_population) FROM table_19149550_9 WHERE chinese_population = 8109
How many Bangladeshi citizens live in the borough ranked at number 14?
CREATE TABLE table_19149550_9 (bangladeshi_population INTEGER, rank VARCHAR)
SELECT MAX(bangladeshi_population) FROM table_19149550_9 WHERE rank = 14
### Context: CREATE TABLE table_19149550_9 (bangladeshi_population INTEGER, rank VARCHAR) ### Question: How many Bangladeshi citizens live in the borough ranked at number 14? ### Answer: SELECT MAX(bangladeshi_population) FROM table_19149550_9 WHERE rank = 14
How many members did Africa have the year that Australia had 94615?
CREATE TABLE table_1914090_2 (africa VARCHAR, australia VARCHAR)
SELECT africa FROM table_1914090_2 WHERE australia = 94615
### Context: CREATE TABLE table_1914090_2 (africa VARCHAR, australia VARCHAR) ### Question: How many members did Africa have the year that Australia had 94615? ### Answer: SELECT africa FROM table_1914090_2 WHERE australia = 94615
How many members did Europe have the year that America had 403892?
CREATE TABLE table_1914090_2 (europe VARCHAR, america VARCHAR)
SELECT europe FROM table_1914090_2 WHERE america = 403892
### Context: CREATE TABLE table_1914090_2 (europe VARCHAR, america VARCHAR) ### Question: How many members did Europe have the year that America had 403892? ### Answer: SELECT europe FROM table_1914090_2 WHERE america = 403892
What is the minimum number of members Europe had at the time Africa had 7375139?
CREATE TABLE table_1914090_2 (europe INTEGER, africa VARCHAR)
SELECT MIN(europe) FROM table_1914090_2 WHERE africa = 7375139
### Context: CREATE TABLE table_1914090_2 (europe INTEGER, africa VARCHAR) ### Question: What is the minimum number of members Europe had at the time Africa had 7375139? ### Answer: SELECT MIN(europe) FROM table_1914090_2 WHERE africa = 7375139
What is the minimum number of members Africa had in 2001?
CREATE TABLE table_1914090_2 (africa INTEGER, year VARCHAR)
SELECT MIN(africa) FROM table_1914090_2 WHERE year = 2001
### Context: CREATE TABLE table_1914090_2 (africa INTEGER, year VARCHAR) ### Question: What is the minimum number of members Africa had in 2001? ### Answer: SELECT MIN(africa) FROM table_1914090_2 WHERE year = 2001
What is the most members Europe had when Australia had 94615?
CREATE TABLE table_1914090_2 (europe INTEGER, australia VARCHAR)
SELECT MAX(europe) FROM table_1914090_2 WHERE australia = 94615
### Context: CREATE TABLE table_1914090_2 (europe INTEGER, australia VARCHAR) ### Question: What is the most members Europe had when Australia had 94615? ### Answer: SELECT MAX(europe) FROM table_1914090_2 WHERE australia = 94615
What is the latest year that Europe had 471895?
CREATE TABLE table_1914090_2 (year INTEGER, europe VARCHAR)
SELECT MAX(year) FROM table_1914090_2 WHERE europe = 471895
### Context: CREATE TABLE table_1914090_2 (year INTEGER, europe VARCHAR) ### Question: What is the latest year that Europe had 471895? ### Answer: SELECT MAX(year) FROM table_1914090_2 WHERE europe = 471895
What's the bus width (in bit) of the model whose core is 650 MHz?
CREATE TABLE table_19161046_1 (bus_width___bit__ VARCHAR, core___mhz__ VARCHAR)
SELECT COUNT(bus_width___bit__) FROM table_19161046_1 WHERE core___mhz__ = 650
### Context: CREATE TABLE table_19161046_1 (bus_width___bit__ VARCHAR, core___mhz__ VARCHAR) ### Question: What's the bus width (in bit) of the model whose core is 650 MHz? ### Answer: SELECT COUNT(bus_width___bit__) FROM table_19161046_1 WHERE core___mhz__ = 650
What's the directx of the model with code name RV770 PRO and a core bigger than 650.0 MHz?
CREATE TABLE table_19161046_1 (directx VARCHAR, code_name VARCHAR, core___mhz__ VARCHAR)
SELECT directx FROM table_19161046_1 WHERE code_name = "RV770 PRO" AND core___mhz__ > 650.0
### Context: CREATE TABLE table_19161046_1 (directx VARCHAR, code_name VARCHAR, core___mhz__ VARCHAR) ### Question: What's the directx of the model with code name RV770 PRO and a core bigger than 650.0 MHz? ### Answer: SELECT directx FROM table_19161046_1 WHERE code_name = "RV770 PRO" AND core___mhz__ > 650.0
What are the notes recorded for the model HIS HD4850 (512MB)?
CREATE TABLE table_19161046_1 (notes VARCHAR, model VARCHAR)
SELECT notes FROM table_19161046_1 WHERE model = "HIS HD4850 (512MB)"
### Context: CREATE TABLE table_19161046_1 (notes VARCHAR, model VARCHAR) ### Question: What are the notes recorded for the model HIS HD4850 (512MB)? ### Answer: SELECT notes FROM table_19161046_1 WHERE model = "HIS HD4850 (512MB)"
What is the title of episode number 14?
CREATE TABLE table_19161605_2 (title VARCHAR, _number VARCHAR)
SELECT title FROM table_19161605_2 WHERE _number = 14
### Context: CREATE TABLE table_19161605_2 (title VARCHAR, _number VARCHAR) ### Question: What is the title of episode number 14? ### Answer: SELECT title FROM table_19161605_2 WHERE _number = 14
If the net worth of fixed assets is 621, what is the current ratio?
CREATE TABLE table_19166421_1 (current_ratio VARCHAR, net_worth_to_fixed_assets VARCHAR)
SELECT current_ratio FROM table_19166421_1 WHERE net_worth_to_fixed_assets = 621
### Context: CREATE TABLE table_19166421_1 (current_ratio VARCHAR, net_worth_to_fixed_assets VARCHAR) ### Question: If the net worth of fixed assets is 621, what is the current ratio? ### Answer: SELECT current_ratio FROM table_19166421_1 WHERE net_worth_to_fixed_assets = 621
Name the score for opponent of cleveland
CREATE TABLE table_19169116_8 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_19169116_8 WHERE opponent = "Cleveland"
### Context: CREATE TABLE table_19169116_8 (score VARCHAR, opponent VARCHAR) ### Question: Name the score for opponent of cleveland ### Answer: SELECT score FROM table_19169116_8 WHERE opponent = "Cleveland"
Featherstone Rovers club played a total of how many games?
CREATE TABLE table_19179465_1 (played VARCHAR, club VARCHAR)
SELECT COUNT(played) FROM table_19179465_1 WHERE club = "Featherstone Rovers"
### Context: CREATE TABLE table_19179465_1 (played VARCHAR, club VARCHAR) ### Question: Featherstone Rovers club played a total of how many games? ### Answer: SELECT COUNT(played) FROM table_19179465_1 WHERE club = "Featherstone Rovers"
How many games were lost when the club got 34 points
CREATE TABLE table_19179465_1 (lost INTEGER, points VARCHAR)
SELECT MIN(lost) FROM table_19179465_1 WHERE points = 34
### Context: CREATE TABLE table_19179465_1 (lost INTEGER, points VARCHAR) ### Question: How many games were lost when the club got 34 points ### Answer: SELECT MIN(lost) FROM table_19179465_1 WHERE points = 34
What was the B.P. of club Halifax?
CREATE TABLE table_19179465_1 (bp VARCHAR, club VARCHAR)
SELECT bp FROM table_19179465_1 WHERE club = "Halifax"
### Context: CREATE TABLE table_19179465_1 (bp VARCHAR, club VARCHAR) ### Question: What was the B.P. of club Halifax? ### Answer: SELECT bp FROM table_19179465_1 WHERE club = "Halifax"
What is the first year she played in the french open?
CREATE TABLE table_1920271_2 (year INTEGER, championship VARCHAR)
SELECT MIN(year) FROM table_1920271_2 WHERE championship = "French Open"
### Context: CREATE TABLE table_1920271_2 (year INTEGER, championship VARCHAR) ### Question: What is the first year she played in the french open? ### Answer: SELECT MIN(year) FROM table_1920271_2 WHERE championship = "French Open"
How many times was the score 6–7(5), 6–2, 6–3?
CREATE TABLE table_1920271_2 (opponents VARCHAR, score VARCHAR)
SELECT COUNT(opponents) FROM table_1920271_2 WHERE score = "6–7(5), 6–2, 6–3"
### Context: CREATE TABLE table_1920271_2 (opponents VARCHAR, score VARCHAR) ### Question: How many times was the score 6–7(5), 6–2, 6–3? ### Answer: SELECT COUNT(opponents) FROM table_1920271_2 WHERE score = "6–7(5), 6–2, 6–3"
Who was her partner at the US Open and they were runner-up?
CREATE TABLE table_1920271_3 (partner VARCHAR, championship VARCHAR, outcome VARCHAR)
SELECT partner FROM table_1920271_3 WHERE championship = "US Open" AND outcome = "Runner-up"
### Context: CREATE TABLE table_1920271_3 (partner VARCHAR, championship VARCHAR, outcome VARCHAR) ### Question: Who was her partner at the US Open and they were runner-up? ### Answer: SELECT partner FROM table_1920271_3 WHERE championship = "US Open" AND outcome = "Runner-up"
Who was her partner at the US Open and they were runner-up?
CREATE TABLE table_1920271_3 (partner VARCHAR, outcome VARCHAR, championship VARCHAR)
SELECT partner FROM table_1920271_3 WHERE outcome = "Runner-up" AND championship = "US Open"
### Context: CREATE TABLE table_1920271_3 (partner VARCHAR, outcome VARCHAR, championship VARCHAR) ### Question: Who was her partner at the US Open and they were runner-up? ### Answer: SELECT partner FROM table_1920271_3 WHERE outcome = "Runner-up" AND championship = "US Open"
Who did she play with on clay?
CREATE TABLE table_1920271_3 (partner VARCHAR, surface VARCHAR)
SELECT partner FROM table_1920271_3 WHERE surface = "Clay"
### Context: CREATE TABLE table_1920271_3 (partner VARCHAR, surface VARCHAR) ### Question: Who did she play with on clay? ### Answer: SELECT partner FROM table_1920271_3 WHERE surface = "Clay"
state the number of surface where championship is australian open and score in the final is 6–3, 4–6, 11–9
CREATE TABLE table_1918850_2 (surface VARCHAR, championship VARCHAR, score_in_the_final VARCHAR)
SELECT COUNT(surface) FROM table_1918850_2 WHERE championship = "Australian Open" AND score_in_the_final = "6–3, 4–6, 11–9"
### Context: CREATE TABLE table_1918850_2 (surface VARCHAR, championship VARCHAR, score_in_the_final VARCHAR) ### Question: state the number of surface where championship is australian open and score in the final is 6–3, 4–6, 11–9 ### Answer: SELECT COUNT(surface) FROM table_1918850_2 WHERE championship = "Australian O...
which championship had arantxa sánchez vicario todd woodbridge as opponents in the final
CREATE TABLE table_1918850_2 (championship VARCHAR, opponents_in_the_final VARCHAR)
SELECT championship FROM table_1918850_2 WHERE opponents_in_the_final = "Arantxa Sánchez Vicario Todd Woodbridge"
### Context: CREATE TABLE table_1918850_2 (championship VARCHAR, opponents_in_the_final VARCHAR) ### Question: which championship had arantxa sánchez vicario todd woodbridge as opponents in the final ### Answer: SELECT championship FROM table_1918850_2 WHERE opponents_in_the_final = "Arantxa Sánchez Vicario Todd Woodb...
what is the surface of the final which had score 6-2, 6-3
CREATE TABLE table_1918850_2 (surface VARCHAR, score_in_the_final VARCHAR)
SELECT surface FROM table_1918850_2 WHERE score_in_the_final = "6-2, 6-3"
### Context: CREATE TABLE table_1918850_2 (surface VARCHAR, score_in_the_final VARCHAR) ### Question: what is the surface of the final which had score 6-2, 6-3 ### Answer: SELECT surface FROM table_1918850_2 WHERE score_in_the_final = "6-2, 6-3"
when were helena suková todd woodbridge the opponents in the final
CREATE TABLE table_1918850_2 (year VARCHAR, opponents_in_the_final VARCHAR)
SELECT year FROM table_1918850_2 WHERE opponents_in_the_final = "Helena Suková Todd Woodbridge"
### Context: CREATE TABLE table_1918850_2 (year VARCHAR, opponents_in_the_final VARCHAR) ### Question: when were helena suková todd woodbridge the opponents in the final ### Answer: SELECT year FROM table_1918850_2 WHERE opponents_in_the_final = "Helena Suková Todd Woodbridge"
which championship had helena suková tom nijssen as opponents in the final and nicole provis as partner, the surface was hard and the outcome was winner
CREATE TABLE table_1918850_2 (championship VARCHAR, opponents_in_the_final VARCHAR, partner VARCHAR, outcome VARCHAR, surface VARCHAR)
SELECT championship FROM table_1918850_2 WHERE outcome = "Winner" AND surface = "Hard" AND partner = "Nicole Provis" AND opponents_in_the_final = "Helena Suková Tom Nijssen"
### Context: CREATE TABLE table_1918850_2 (championship VARCHAR, opponents_in_the_final VARCHAR, partner VARCHAR, outcome VARCHAR, surface VARCHAR) ### Question: which championship had helena suková tom nijssen as opponents in the final and nicole provis as partner, the surface was hard and the outcome was winner ### A...
when was the last performance of the first performance on 11/15/1909
CREATE TABLE table_19189856_1 (last_performance VARCHAR, first_performance VARCHAR)
SELECT last_performance FROM table_19189856_1 WHERE first_performance = "11/15/1909"
### Context: CREATE TABLE table_19189856_1 (last_performance VARCHAR, first_performance VARCHAR) ### Question: when was the last performance of the first performance on 11/15/1909 ### Answer: SELECT last_performance FROM table_19189856_1 WHERE first_performance = "11/15/1909"
how many first performances where performer is wilfred engelman category:articles with hcards
CREATE TABLE table_19189856_1 (first_performance VARCHAR, performer VARCHAR)
SELECT COUNT(first_performance) FROM table_19189856_1 WHERE performer = "Wilfred Engelman category:Articles with hCards"
### Context: CREATE TABLE table_19189856_1 (first_performance VARCHAR, performer VARCHAR) ### Question: how many first performances where performer is wilfred engelman category:articles with hcards ### Answer: SELECT COUNT(first_performance) FROM table_19189856_1 WHERE performer = "Wilfred Engelman category:Articles wi...
who was the performer that did last performance on 04/08/1963
CREATE TABLE table_19189856_1 (performer VARCHAR, last_performance VARCHAR)
SELECT performer FROM table_19189856_1 WHERE last_performance = "04/08/1963"
### Context: CREATE TABLE table_19189856_1 (performer VARCHAR, last_performance VARCHAR) ### Question: who was the performer that did last performance on 04/08/1963 ### Answer: SELECT performer FROM table_19189856_1 WHERE last_performance = "04/08/1963"
what is the first performance of the last performance on 03/29/1957
CREATE TABLE table_19189856_1 (first_performance VARCHAR, last_performance VARCHAR)
SELECT first_performance FROM table_19189856_1 WHERE last_performance = "03/29/1957"
### Context: CREATE TABLE table_19189856_1 (first_performance VARCHAR, last_performance VARCHAR) ### Question: what is the first performance of the last performance on 03/29/1957 ### Answer: SELECT first_performance FROM table_19189856_1 WHERE last_performance = "03/29/1957"
what is the last performance of leon varkas category:articles with hcards
CREATE TABLE table_19189856_1 (last_performance VARCHAR, performer VARCHAR)
SELECT last_performance FROM table_19189856_1 WHERE performer = "Leon Varkas category:Articles with hCards"
### Context: CREATE TABLE table_19189856_1 (last_performance VARCHAR, performer VARCHAR) ### Question: what is the last performance of leon varkas category:articles with hcards ### Answer: SELECT last_performance FROM table_19189856_1 WHERE performer = "Leon Varkas category:Articles with hCards"
How many different finales had the English title "Beyond the Realm of Conscience"?
CREATE TABLE table_19210674_1 (finale VARCHAR, english_title VARCHAR)
SELECT COUNT(finale) FROM table_19210674_1 WHERE english_title = "Beyond the Realm of Conscience"
### Context: CREATE TABLE table_19210674_1 (finale VARCHAR, english_title VARCHAR) ### Question: How many different finales had the English title "Beyond the Realm of Conscience"? ### Answer: SELECT COUNT(finale) FROM table_19210674_1 WHERE english_title = "Beyond the Realm of Conscience"
What was the maximum average of the episode with a Chinese title 古靈精探b?
CREATE TABLE table_19210674_1 (average INTEGER, chinese_title VARCHAR)
SELECT MAX(average) FROM table_19210674_1 WHERE chinese_title = "古靈精探B"
### Context: CREATE TABLE table_19210674_1 (average INTEGER, chinese_title VARCHAR) ### Question: What was the maximum average of the episode with a Chinese title 古靈精探b? ### Answer: SELECT MAX(average) FROM table_19210674_1 WHERE chinese_title = "古靈精探B"
How was the episode seen by 2.26 million HK viewers ranked?
CREATE TABLE table_19210674_1 (rank VARCHAR, hk_viewers VARCHAR)
SELECT rank FROM table_19210674_1 WHERE hk_viewers = "2.26 million"
### Context: CREATE TABLE table_19210674_1 (rank VARCHAR, hk_viewers VARCHAR) ### Question: How was the episode seen by 2.26 million HK viewers ranked? ### Answer: SELECT rank FROM table_19210674_1 WHERE hk_viewers = "2.26 million"
What is the finale number ranked at number 7?
CREATE TABLE table_19210674_1 (finale VARCHAR, rank VARCHAR)
SELECT finale FROM table_19210674_1 WHERE rank = 7
### Context: CREATE TABLE table_19210674_1 (finale VARCHAR, rank VARCHAR) ### Question: What is the finale number ranked at number 7? ### Answer: SELECT finale FROM table_19210674_1 WHERE rank = 7
What is every conflict in Iraq?
CREATE TABLE table_1921_1 (conflict VARCHAR, location VARCHAR)
SELECT conflict FROM table_1921_1 WHERE location = "Iraq"
### Context: CREATE TABLE table_1921_1 (conflict VARCHAR, location VARCHAR) ### Question: What is every conflict in Iraq? ### Answer: SELECT conflict FROM table_1921_1 WHERE location = "Iraq"
What is every branch involved in Afghanistan?
CREATE TABLE table_1921_1 (branches_involved VARCHAR, location VARCHAR)
SELECT branches_involved FROM table_1921_1 WHERE location = "Afghanistan"
### Context: CREATE TABLE table_1921_1 (branches_involved VARCHAR, location VARCHAR) ### Question: What is every branch involved in Afghanistan? ### Answer: SELECT branches_involved FROM table_1921_1 WHERE location = "Afghanistan"
Which conflicts took place in Yemen?
CREATE TABLE table_1921_1 (conflict VARCHAR, location VARCHAR)
SELECT conflict FROM table_1921_1 WHERE location = "Yemen"
### Context: CREATE TABLE table_1921_1 (conflict VARCHAR, location VARCHAR) ### Question: Which conflicts took place in Yemen? ### Answer: SELECT conflict FROM table_1921_1 WHERE location = "Yemen"
How many conflicts started in Afghanistan?
CREATE TABLE table_1921_1 (start_of_conflict VARCHAR, location VARCHAR)
SELECT COUNT(start_of_conflict) FROM table_1921_1 WHERE location = "Afghanistan"
### Context: CREATE TABLE table_1921_1 (start_of_conflict VARCHAR, location VARCHAR) ### Question: How many conflicts started in Afghanistan? ### Answer: SELECT COUNT(start_of_conflict) FROM table_1921_1 WHERE location = "Afghanistan"
How many u.s. viewers (million) have the number 16?
CREATE TABLE table_19229713_6 (us_viewers__million_ VARCHAR, _number VARCHAR)
SELECT us_viewers__million_ FROM table_19229713_6 WHERE _number = 16
### Context: CREATE TABLE table_19229713_6 (us_viewers__million_ VARCHAR, _number VARCHAR) ### Question: How many u.s. viewers (million) have the number 16? ### Answer: SELECT us_viewers__million_ FROM table_19229713_6 WHERE _number = 16
How many u.s. viewers (million) have the production code of 5.09?
CREATE TABLE table_19229713_6 (us_viewers__million_ VARCHAR, production_code VARCHAR)
SELECT us_viewers__million_ FROM table_19229713_6 WHERE production_code = "5.09"
### Context: CREATE TABLE table_19229713_6 (us_viewers__million_ VARCHAR, production_code VARCHAR) ### Question: How many u.s. viewers (million) have the production code of 5.09? ### Answer: SELECT us_viewers__million_ FROM table_19229713_6 WHERE production_code = "5.09"
When middle prut valley is the land formation what is the highest of which currently forests, km² ?
CREATE TABLE table_19242_5 (_km² VARCHAR, of_which_currently_forests INTEGER, land_formation VARCHAR)
SELECT MAX(of_which_currently_forests), _km² FROM table_19242_5 WHERE land_formation = "Middle Prut Valley"
### Context: CREATE TABLE table_19242_5 (_km² VARCHAR, of_which_currently_forests INTEGER, land_formation VARCHAR) ### Question: When middle prut valley is the land formation what is the highest of which currently forests, km² ? ### Answer: SELECT MAX(of_which_currently_forests), _km² FROM table_19242_5 WHERE land_form...
What's the series number of the episode with season number 2?
CREATE TABLE table_19236587_4 (series_no INTEGER, season_no VARCHAR)
SELECT MIN(series_no) FROM table_19236587_4 WHERE season_no = 2
### Context: CREATE TABLE table_19236587_4 (series_no INTEGER, season_no VARCHAR) ### Question: What's the series number of the episode with season number 2? ### Answer: SELECT MIN(series_no) FROM table_19236587_4 WHERE season_no = 2
What's the series number of the episode seen by 2.43 million viewers in the UK?
CREATE TABLE table_19236587_4 (series_no VARCHAR, uk_viewers__million_ VARCHAR)
SELECT series_no FROM table_19236587_4 WHERE uk_viewers__million_ = "2.43"
### Context: CREATE TABLE table_19236587_4 (series_no VARCHAR, uk_viewers__million_ VARCHAR) ### Question: What's the series number of the episode seen by 2.43 million viewers in the UK? ### Answer: SELECT series_no FROM table_19236587_4 WHERE uk_viewers__million_ = "2.43"
How many different original air dates does the episode with series number 13 have?
CREATE TABLE table_19236587_4 (original_air_date VARCHAR, series_no VARCHAR)
SELECT COUNT(original_air_date) FROM table_19236587_4 WHERE series_no = 13
### Context: CREATE TABLE table_19236587_4 (original_air_date VARCHAR, series_no VARCHAR) ### Question: How many different original air dates does the episode with series number 13 have? ### Answer: SELECT COUNT(original_air_date) FROM table_19236587_4 WHERE series_no = 13
Name the number for viewers being 1.87
CREATE TABLE table_19229713_4 (_number INTEGER, us_viewers__million_ VARCHAR)
SELECT MAX(_number) FROM table_19229713_4 WHERE us_viewers__million_ = "1.87"
### Context: CREATE TABLE table_19229713_4 (_number INTEGER, us_viewers__million_ VARCHAR) ### Question: Name the number for viewers being 1.87 ### Answer: SELECT MAX(_number) FROM table_19229713_4 WHERE us_viewers__million_ = "1.87"
Name the production code for viewers for 1.69
CREATE TABLE table_19229713_4 (production_code VARCHAR, us_viewers__million_ VARCHAR)
SELECT production_code FROM table_19229713_4 WHERE us_viewers__million_ = "1.69"
### Context: CREATE TABLE table_19229713_4 (production_code VARCHAR, us_viewers__million_ VARCHAR) ### Question: Name the production code for viewers for 1.69 ### Answer: SELECT production_code FROM table_19229713_4 WHERE us_viewers__million_ = "1.69"
whare are al of the launche dates where th carrier is orange and the up is 5.76 mbit/s
CREATE TABLE table_19246_2 (launch_date__ddmmyyyy_ VARCHAR, _up_ VARCHAR, carrier VARCHAR)
SELECT launch_date__ddmmyyyy_ FROM table_19246_2 WHERE _up_ = "5.76 Mbit/s" AND carrier = "Orange"
### Context: CREATE TABLE table_19246_2 (launch_date__ddmmyyyy_ VARCHAR, _up_ VARCHAR, carrier VARCHAR) ### Question: whare are al of the launche dates where th carrier is orange and the up is 5.76 mbit/s ### Answer: SELECT launch_date__ddmmyyyy_ FROM table_19246_2 WHERE _up_ = "5.76 Mbit/s" AND carrier = "Orange"
With the country of Sweden and the result is out, what is the song?
CREATE TABLE table_19249824_1 (song VARCHAR, result VARCHAR, country VARCHAR)
SELECT song FROM table_19249824_1 WHERE result = "Out" AND country = "Sweden"
### Context: CREATE TABLE table_19249824_1 (song VARCHAR, result VARCHAR, country VARCHAR) ### Question: With the country of Sweden and the result is out, what is the song? ### Answer: SELECT song FROM table_19249824_1 WHERE result = "Out" AND country = "Sweden"
If the English translation is hello girl, what was the language?
CREATE TABLE table_19249824_1 (language VARCHAR, english_translation VARCHAR)
SELECT language FROM table_19249824_1 WHERE english_translation = "Hello girl"
### Context: CREATE TABLE table_19249824_1 (language VARCHAR, english_translation VARCHAR) ### Question: If the English translation is hello girl, what was the language? ### Answer: SELECT language FROM table_19249824_1 WHERE english_translation = "Hello girl"
What was the connection speed when launched on 07.06.2005?
CREATE TABLE table_19246_1 (connection_speed VARCHAR, launch_date__ddmmyyyy_ VARCHAR)
SELECT connection_speed FROM table_19246_1 WHERE launch_date__ddmmyyyy_ = "07.06.2005"
### Context: CREATE TABLE table_19246_1 (connection_speed VARCHAR, launch_date__ddmmyyyy_ VARCHAR) ### Question: What was the connection speed when launched on 07.06.2005? ### Answer: SELECT connection_speed FROM table_19246_1 WHERE launch_date__ddmmyyyy_ = "07.06.2005"
When the carrier is idc, what are the frequencies?
CREATE TABLE table_19246_1 (frequency VARCHAR, carrier VARCHAR)
SELECT frequency FROM table_19246_1 WHERE carrier = "IDC"
### Context: CREATE TABLE table_19246_1 (frequency VARCHAR, carrier VARCHAR) ### Question: When the carrier is idc, what are the frequencies? ### Answer: SELECT frequency FROM table_19246_1 WHERE carrier = "IDC"
When the launch date is 14.09.2005, and the frequency is 900mhz and 1800mhz, how many carriers are there?
CREATE TABLE table_19246_1 (carrier VARCHAR, frequency VARCHAR, launch_date__ddmmyyyy_ VARCHAR)
SELECT COUNT(carrier) FROM table_19246_1 WHERE frequency = "900MHz and 1800MHz" AND launch_date__ddmmyyyy_ = "14.09.2005"
### Context: CREATE TABLE table_19246_1 (carrier VARCHAR, frequency VARCHAR, launch_date__ddmmyyyy_ VARCHAR) ### Question: When the launch date is 14.09.2005, and the frequency is 900mhz and 1800mhz, how many carriers are there? ### Answer: SELECT COUNT(carrier) FROM table_19246_1 WHERE frequency = "900MHz and 1800MHz"...
How many standards are there, when the launch date was 17.04.2006?
CREATE TABLE table_19246_1 (standard VARCHAR, launch_date__ddmmyyyy_ VARCHAR)
SELECT COUNT(standard) FROM table_19246_1 WHERE launch_date__ddmmyyyy_ = "17.04.2006"
### Context: CREATE TABLE table_19246_1 (standard VARCHAR, launch_date__ddmmyyyy_ VARCHAR) ### Question: How many standards are there, when the launch date was 17.04.2006? ### Answer: SELECT COUNT(standard) FROM table_19246_1 WHERE launch_date__ddmmyyyy_ = "17.04.2006"
Name the 2 car sets for 622
CREATE TABLE table_19255192_2 (total_vehicles VARCHAR)
SELECT 2 AS _car_sets FROM table_19255192_2 WHERE total_vehicles = 622
### Context: CREATE TABLE table_19255192_2 (total_vehicles VARCHAR) ### Question: Name the 2 car sets for 622 ### Answer: SELECT 2 AS _car_sets FROM table_19255192_2 WHERE total_vehicles = 622
Name the most 3 car sets
CREATE TABLE table_19255192_2 (Id VARCHAR)
SELECT MAX(3 AS _car_sets) FROM table_19255192_2
### Context: CREATE TABLE table_19255192_2 (Id VARCHAR) ### Question: Name the most 3 car sets ### Answer: SELECT MAX(3 AS _car_sets) FROM table_19255192_2
Name the least 4 car sets
CREATE TABLE table_19255192_2 (Id VARCHAR)
SELECT MIN(4 AS _car_sets) FROM table_19255192_2
### Context: CREATE TABLE table_19255192_2 (Id VARCHAR) ### Question: Name the least 4 car sets ### Answer: SELECT MIN(4 AS _car_sets) FROM table_19255192_2
Name the % for core moldova being 4.36%
CREATE TABLE table_19260_1 (_percentage VARCHAR, _percentage_core_moldova VARCHAR)
SELECT _percentage FROM table_19260_1 WHERE _percentage_core_moldova = "4.36_percentage"
### Context: CREATE TABLE table_19260_1 (_percentage VARCHAR, _percentage_core_moldova VARCHAR) ### Question: Name the % for core moldova being 4.36% ### Answer: SELECT _percentage FROM table_19260_1 WHERE _percentage_core_moldova = "4.36_percentage"
Name the % for total being 57613
CREATE TABLE table_19260_1 (_percentage VARCHAR, total VARCHAR)
SELECT _percentage FROM table_19260_1 WHERE total = 57613
### Context: CREATE TABLE table_19260_1 (_percentage VARCHAR, total VARCHAR) ### Question: Name the % for total being 57613 ### Answer: SELECT _percentage FROM table_19260_1 WHERE total = 57613
Name the total for % core moldova for 4.36%
CREATE TABLE table_19260_1 (total VARCHAR, _percentage_core_moldova VARCHAR)
SELECT total FROM table_19260_1 WHERE _percentage_core_moldova = "4.36_percentage"
### Context: CREATE TABLE table_19260_1 (total VARCHAR, _percentage_core_moldova VARCHAR) ### Question: Name the total for % core moldova for 4.36% ### Answer: SELECT total FROM table_19260_1 WHERE _percentage_core_moldova = "4.36_percentage"
What was the waveform of the encoding with a bit rate of 6.203?
CREATE TABLE table_1926240_1 (waveform VARCHAR, bit_rate_ VARCHAR, _mbit_s_ VARCHAR)
SELECT waveform FROM table_1926240_1 WHERE bit_rate_[_mbit_s_] = "6.203"
### Context: CREATE TABLE table_1926240_1 (waveform VARCHAR, bit_rate_ VARCHAR, _mbit_s_ VARCHAR) ### Question: What was the waveform of the encoding with a bit rate of 6.203? ### Answer: SELECT waveform FROM table_1926240_1 WHERE bit_rate_[_mbit_s_] = "6.203"
What was the informational CVBS Lines of the encoding with max character of 32 and has B (global) standard?
CREATE TABLE table_1926240_1 (informational_cvbs_lines VARCHAR, max_characters__per_page_row_ VARCHAR, standard VARCHAR)
SELECT informational_cvbs_lines FROM table_1926240_1 WHERE max_characters__per_page_row_ = 32 AND standard = "B (global)"
### Context: CREATE TABLE table_1926240_1 (informational_cvbs_lines VARCHAR, max_characters__per_page_row_ VARCHAR, standard VARCHAR) ### Question: What was the informational CVBS Lines of the encoding with max character of 32 and has B (global) standard? ### Answer: SELECT informational_cvbs_lines FROM table_1926240_1...
How many color systems has a bit rate of 5.734?
CREATE TABLE table_1926240_1 (color_system VARCHAR, bit_rate_ VARCHAR, _mbit_s_ VARCHAR)
SELECT COUNT(color_system) FROM table_1926240_1 WHERE bit_rate_[_mbit_s_] = "5.734"
### Context: CREATE TABLE table_1926240_1 (color_system VARCHAR, bit_rate_ VARCHAR, _mbit_s_ VARCHAR) ### Question: How many color systems has a bit rate of 5.734? ### Answer: SELECT COUNT(color_system) FROM table_1926240_1 WHERE bit_rate_[_mbit_s_] = "5.734"
What was the max character (per page row) of the encoding with a bit rate of 6.203?
CREATE TABLE table_1926240_1 (max_characters__per_page_row_ INTEGER, bit_rate_ VARCHAR, _mbit_s_ VARCHAR)
SELECT MAX(max_characters__per_page_row_) FROM table_1926240_1 WHERE bit_rate_[_mbit_s_] = "6.203"
### Context: CREATE TABLE table_1926240_1 (max_characters__per_page_row_ INTEGER, bit_rate_ VARCHAR, _mbit_s_ VARCHAR) ### Question: What was the max character (per page row) of the encoding with a bit rate of 6.203? ### Answer: SELECT MAX(max_characters__per_page_row_) FROM table_1926240_1 WHERE bit_rate_[_mbit_s_] = ...
With U.S. viewers of 9.32 million, what is the production code?
CREATE TABLE table_19266557_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR)
SELECT production_code FROM table_19266557_1 WHERE us_viewers__millions_ = "9.32"
### Context: CREATE TABLE table_19266557_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR) ### Question: With U.S. viewers of 9.32 million, what is the production code? ### Answer: SELECT production_code FROM table_19266557_1 WHERE us_viewers__millions_ = "9.32"
For episode number 7, what was the numbers of original air dates?
CREATE TABLE table_19266557_1 (original_air_date VARCHAR, _number VARCHAR)
SELECT COUNT(original_air_date) FROM table_19266557_1 WHERE _number = 7
### Context: CREATE TABLE table_19266557_1 (original_air_date VARCHAR, _number VARCHAR) ### Question: For episode number 7, what was the numbers of original air dates? ### Answer: SELECT COUNT(original_air_date) FROM table_19266557_1 WHERE _number = 7
How many millions of viewers were there for number 6?
CREATE TABLE table_19266557_1 (us_viewers__millions_ VARCHAR, _number VARCHAR)
SELECT us_viewers__millions_ FROM table_19266557_1 WHERE _number = 6
### Context: CREATE TABLE table_19266557_1 (us_viewers__millions_ VARCHAR, _number VARCHAR) ### Question: How many millions of viewers were there for number 6? ### Answer: SELECT us_viewers__millions_ FROM table_19266557_1 WHERE _number = 6
How many teams won $2,089,556?
CREATE TABLE table_1929755_1 (wins VARCHAR, winnings VARCHAR)
SELECT COUNT(wins) FROM table_1929755_1 WHERE winnings = "$2,089,556"
### Context: CREATE TABLE table_1929755_1 (wins VARCHAR, winnings VARCHAR) ### Question: How many teams won $2,089,556? ### Answer: SELECT COUNT(wins) FROM table_1929755_1 WHERE winnings = "$2,089,556"
HOw many top 5 starts did the team with an average start of 17.7 have?
CREATE TABLE table_1929755_1 (top_5 VARCHAR, avg_start VARCHAR)
SELECT COUNT(top_5) FROM table_1929755_1 WHERE avg_start = "17.7"
### Context: CREATE TABLE table_1929755_1 (top_5 VARCHAR, avg_start VARCHAR) ### Question: HOw many top 5 starts did the team with an average start of 17.7 have? ### Answer: SELECT COUNT(top_5) FROM table_1929755_1 WHERE avg_start = "17.7"
Who is team 1 when team 2 is koper?
CREATE TABLE table_19294812_2 (team_1 VARCHAR, team_2 VARCHAR)
SELECT team_1 FROM table_19294812_2 WHERE team_2 = "Koper"
### Context: CREATE TABLE table_19294812_2 (team_1 VARCHAR, team_2 VARCHAR) ### Question: Who is team 1 when team 2 is koper? ### Answer: SELECT team_1 FROM table_19294812_2 WHERE team_2 = "Koper"
What is the tie when team 2 is koper?
CREATE TABLE table_19294812_2 (tie_no INTEGER, team_2 VARCHAR)
SELECT MIN(tie_no) FROM table_19294812_2 WHERE team_2 = "Koper"
### Context: CREATE TABLE table_19294812_2 (tie_no INTEGER, team_2 VARCHAR) ### Question: What is the tie when team 2 is koper? ### Answer: SELECT MIN(tie_no) FROM table_19294812_2 WHERE team_2 = "Koper"
How many 1st leg have team 1 ofk belgrade?
CREATE TABLE table_19294812_2 (team_1 VARCHAR)
SELECT COUNT(1 AS st_leg) FROM table_19294812_2 WHERE team_1 = "OFK Belgrade"
### Context: CREATE TABLE table_19294812_2 (team_1 VARCHAR) ### Question: How many 1st leg have team 1 ofk belgrade? ### Answer: SELECT COUNT(1 AS st_leg) FROM table_19294812_2 WHERE team_1 = "OFK Belgrade"
How many tie no have team 1 as borac banja luka?
CREATE TABLE table_19294812_2 (tie_no VARCHAR, team_1 VARCHAR)
SELECT tie_no FROM table_19294812_2 WHERE team_1 = "Borac Banja Luka"
### Context: CREATE TABLE table_19294812_2 (tie_no VARCHAR, team_1 VARCHAR) ### Question: How many tie no have team 1 as borac banja luka? ### Answer: SELECT tie_no FROM table_19294812_2 WHERE team_1 = "Borac Banja Luka"
What's the language in the school teaching grades 4-12?
CREATE TABLE table_1930857_1 (language VARCHAR, grades VARCHAR)
SELECT language FROM table_1930857_1 WHERE grades = "4-12"
### Context: CREATE TABLE table_1930857_1 (language VARCHAR, grades VARCHAR) ### Question: What's the language in the school teaching grades 4-12? ### Answer: SELECT language FROM table_1930857_1 WHERE grades = "4-12"
What's the language of the school founded in 1949?
CREATE TABLE table_1930857_1 (language VARCHAR, year_founded VARCHAR)
SELECT language FROM table_1930857_1 WHERE year_founded = "1949"
### Context: CREATE TABLE table_1930857_1 (language VARCHAR, year_founded VARCHAR) ### Question: What's the language of the school founded in 1949? ### Answer: SELECT language FROM table_1930857_1 WHERE year_founded = "1949"
What's the gender of the students taught in the school founded in 1894?
CREATE TABLE table_1930857_1 (gender VARCHAR, year_founded VARCHAR)
SELECT gender FROM table_1930857_1 WHERE year_founded = "1894"
### Context: CREATE TABLE table_1930857_1 (gender VARCHAR, year_founded VARCHAR) ### Question: What's the gender of the students taught in the school founded in 1894? ### Answer: SELECT gender FROM table_1930857_1 WHERE year_founded = "1894"
What's the language of classes in the school founded in 1874?
CREATE TABLE table_1930857_1 (language VARCHAR, year_founded VARCHAR)
SELECT language FROM table_1930857_1 WHERE year_founded = "1874"
### Context: CREATE TABLE table_1930857_1 (language VARCHAR, year_founded VARCHAR) ### Question: What's the language of classes in the school founded in 1874? ### Answer: SELECT language FROM table_1930857_1 WHERE year_founded = "1874"