question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
How many times was episode 5 in the series aired on Fox int.? | CREATE TABLE table_25131572_2 (fox_int_channels_air_date VARCHAR, series__number VARCHAR) | SELECT COUNT(fox_int_channels_air_date) FROM table_25131572_2 WHERE series__number = 5 | ### Context: CREATE TABLE table_25131572_2 (fox_int_channels_air_date VARCHAR, series__number VARCHAR) ### Question: How many times was episode 5 in the series aired on Fox int.? ### Answer: SELECT COUNT(fox_int_channels_air_date) FROM table_25131572_2 WHERE series__number = 5 |
What was the qualifying score of the competition whose final score was 12.200? | CREATE TABLE table_25143284_1 (score_qualifying VARCHAR, score_final VARCHAR) | SELECT score_qualifying FROM table_25143284_1 WHERE score_final = "12.200" | ### Context: CREATE TABLE table_25143284_1 (score_qualifying VARCHAR, score_final VARCHAR) ### Question: What was the qualifying score of the competition whose final score was 12.200? ### Answer: SELECT score_qualifying FROM table_25143284_1 WHERE score_final = "12.200" |
Where was the competition with a qualifying score of 58.425? | CREATE TABLE table_25143284_1 (location VARCHAR, score_qualifying VARCHAR) | SELECT location FROM table_25143284_1 WHERE score_qualifying = "58.425" | ### Context: CREATE TABLE table_25143284_1 (location VARCHAR, score_qualifying VARCHAR) ### Question: Where was the competition with a qualifying score of 58.425? ### Answer: SELECT location FROM table_25143284_1 WHERE score_qualifying = "58.425" |
How many competitions had a final score of 15.650? | CREATE TABLE table_25143284_1 (competition_description VARCHAR, score_final VARCHAR) | SELECT COUNT(competition_description) FROM table_25143284_1 WHERE score_final = "15.650" | ### Context: CREATE TABLE table_25143284_1 (competition_description VARCHAR, score_final VARCHAR) ### Question: How many competitions had a final score of 15.650? ### Answer: SELECT COUNT(competition_description) FROM table_25143284_1 WHERE score_final = "15.650" |
In what year was the score 7–5, 7–6 (7–5)? | CREATE TABLE table_2516282_3 (year VARCHAR, score VARCHAR) | SELECT year FROM table_2516282_3 WHERE score = "7–5, 7–6 (7–5)" | ### Context: CREATE TABLE table_2516282_3 (year VARCHAR, score VARCHAR) ### Question: In what year was the score 7–5, 7–6 (7–5)? ### Answer: SELECT year FROM table_2516282_3 WHERE score = "7–5, 7–6 (7–5)" |
When the opponent was Yan Zi Jie Zheng, what was the outcome? | CREATE TABLE table_2516282_3 (outcome VARCHAR, opponents VARCHAR) | SELECT outcome FROM table_2516282_3 WHERE opponents = "Yan Zi Jie Zheng" | ### Context: CREATE TABLE table_2516282_3 (outcome VARCHAR, opponents VARCHAR) ### Question: When the opponent was Yan Zi Jie Zheng, what was the outcome? ### Answer: SELECT outcome FROM table_2516282_3 WHERE opponents = "Yan Zi Jie Zheng" |
In the year 2013, what was the outcome? | CREATE TABLE table_2516282_3 (outcome VARCHAR, year VARCHAR) | SELECT outcome FROM table_2516282_3 WHERE year = 2013 | ### Context: CREATE TABLE table_2516282_3 (outcome VARCHAR, year VARCHAR) ### Question: In the year 2013, what was the outcome? ### Answer: SELECT outcome FROM table_2516282_3 WHERE year = 2013 |
Who was the partner when the score was 7–5, 7–6 (7–5)? | CREATE TABLE table_2516282_3 (partner VARCHAR, score VARCHAR) | SELECT partner FROM table_2516282_3 WHERE score = "7–5, 7–6 (7–5)" | ### Context: CREATE TABLE table_2516282_3 (partner VARCHAR, score VARCHAR) ### Question: Who was the partner when the score was 7–5, 7–6 (7–5)? ### Answer: SELECT partner FROM table_2516282_3 WHERE score = "7–5, 7–6 (7–5)" |
When the surface was Hard (i), what was the score? | CREATE TABLE table_2516282_3 (score VARCHAR, surface VARCHAR) | SELECT score FROM table_2516282_3 WHERE surface = "Hard (i)" | ### Context: CREATE TABLE table_2516282_3 (score VARCHAR, surface VARCHAR) ### Question: When the surface was Hard (i), what was the score? ### Answer: SELECT score FROM table_2516282_3 WHERE surface = "Hard (i)" |
In which championship was the partner Jie Zheng? | CREATE TABLE table_2516282_3 (championship VARCHAR, partner VARCHAR) | SELECT championship FROM table_2516282_3 WHERE partner = "Jie Zheng" | ### Context: CREATE TABLE table_2516282_3 (championship VARCHAR, partner VARCHAR) ### Question: In which championship was the partner Jie Zheng? ### Answer: SELECT championship FROM table_2516282_3 WHERE partner = "Jie Zheng" |
What are the number of points for associated with exactly 3 stolen ends? | CREATE TABLE table_25176088_2 (pf VARCHAR, stolen_ends VARCHAR) | SELECT COUNT(pf) FROM table_25176088_2 WHERE stolen_ends = 3 | ### Context: CREATE TABLE table_25176088_2 (pf VARCHAR, stolen_ends VARCHAR) ### Question: What are the number of points for associated with exactly 3 stolen ends? ### Answer: SELECT COUNT(pf) FROM table_25176088_2 WHERE stolen_ends = 3 |
How many position did a player took while weighing 170? | CREATE TABLE table_25177625_1 (position VARCHAR, weight VARCHAR) | SELECT COUNT(position) FROM table_25177625_1 WHERE weight = 170 | ### Context: CREATE TABLE table_25177625_1 (position VARCHAR, weight VARCHAR) ### Question: How many position did a player took while weighing 170? ### Answer: SELECT COUNT(position) FROM table_25177625_1 WHERE weight = 170 |
What were the former schools of the player from East Brunswick, NJ? | CREATE TABLE table_25177625_1 (former_school VARCHAR, hometown VARCHAR) | SELECT former_school FROM table_25177625_1 WHERE hometown = "East Brunswick, NJ" | ### Context: CREATE TABLE table_25177625_1 (former_school VARCHAR, hometown VARCHAR) ### Question: What were the former schools of the player from East Brunswick, NJ? ### Answer: SELECT former_school FROM table_25177625_1 WHERE hometown = "East Brunswick, NJ" |
What was the height of this Freshman with a forward position? | CREATE TABLE table_25177625_1 (height VARCHAR, position VARCHAR, year VARCHAR) | SELECT height FROM table_25177625_1 WHERE position = "Forward" AND year = "Freshman" | ### Context: CREATE TABLE table_25177625_1 (height VARCHAR, position VARCHAR, year VARCHAR) ### Question: What was the height of this Freshman with a forward position? ### Answer: SELECT height FROM table_25177625_1 WHERE position = "Forward" AND year = "Freshman" |
If the date of birth is 1961-08-09 9 august 1961, what is the start date of (first) term? | CREATE TABLE table_25182437_1 (start_date_of__first__term VARCHAR, date_of_birth VARCHAR) | SELECT start_date_of__first__term FROM table_25182437_1 WHERE date_of_birth = "1961-08-09 9 August 1961" | ### Context: CREATE TABLE table_25182437_1 (start_date_of__first__term VARCHAR, date_of_birth VARCHAR) ### Question: If the date of birth is 1961-08-09 9 august 1961, what is the start date of (first) term? ### Answer: SELECT start_date_of__first__term FROM table_25182437_1 WHERE date_of_birth = "1961-08-09 9 August 19... |
If the prime minister is Palmer, Geoffrey Geoffrey Palmer, what is the end date of (final) term? | CREATE TABLE table_25182437_1 (end_date_of__final__term VARCHAR, prime_minister VARCHAR) | SELECT end_date_of__final__term FROM table_25182437_1 WHERE prime_minister = "Palmer, Geoffrey Geoffrey Palmer" | ### Context: CREATE TABLE table_25182437_1 (end_date_of__final__term VARCHAR, prime_minister VARCHAR) ### Question: If the prime minister is Palmer, Geoffrey Geoffrey Palmer, what is the end date of (final) term? ### Answer: SELECT end_date_of__final__term FROM table_25182437_1 WHERE prime_minister = "Palmer, Geoffrey ... |
What is the population if the city is Gilroy? | CREATE TABLE table_25200461_9 (population VARCHAR, city VARCHAR) | SELECT population FROM table_25200461_9 WHERE city = "Gilroy" | ### Context: CREATE TABLE table_25200461_9 (population VARCHAR, city VARCHAR) ### Question: What is the population if the city is Gilroy? ### Answer: SELECT population FROM table_25200461_9 WHERE city = "Gilroy" |
If Democratic is 42.5%, what is the city? | CREATE TABLE table_25200461_9 (city VARCHAR, democratic VARCHAR) | SELECT city FROM table_25200461_9 WHERE democratic = "42.5%" | ### Context: CREATE TABLE table_25200461_9 (city VARCHAR, democratic VARCHAR) ### Question: If Democratic is 42.5%, what is the city? ### Answer: SELECT city FROM table_25200461_9 WHERE democratic = "42.5%" |
If the registered voters is 66.8%, what is the minimum population? | CREATE TABLE table_25200461_9 (population INTEGER, registered_voters VARCHAR) | SELECT MIN(population) FROM table_25200461_9 WHERE registered_voters = "66.8%" | ### Context: CREATE TABLE table_25200461_9 (population INTEGER, registered_voters VARCHAR) ### Question: If the registered voters is 66.8%, what is the minimum population? ### Answer: SELECT MIN(population) FROM table_25200461_9 WHERE registered_voters = "66.8%" |
What is the other is the city is Los Gatos? | CREATE TABLE table_25200461_9 (other VARCHAR, city VARCHAR) | SELECT other FROM table_25200461_9 WHERE city = "Los Gatos" | ### Context: CREATE TABLE table_25200461_9 (other VARCHAR, city VARCHAR) ### Question: What is the other is the city is Los Gatos? ### Answer: SELECT other FROM table_25200461_9 WHERE city = "Los Gatos" |
What is the d-r spread if the no party preference is 31.8%? | CREATE TABLE table_25200461_9 (d_r_spread VARCHAR, no_party_preference VARCHAR) | SELECT d_r_spread FROM table_25200461_9 WHERE no_party_preference = "31.8%" | ### Context: CREATE TABLE table_25200461_9 (d_r_spread VARCHAR, no_party_preference VARCHAR) ### Question: What is the d-r spread if the no party preference is 31.8%? ### Answer: SELECT d_r_spread FROM table_25200461_9 WHERE no_party_preference = "31.8%" |
If the city is Santa Clara, what is the population total number? | CREATE TABLE table_25200461_9 (population VARCHAR, city VARCHAR) | SELECT COUNT(population) FROM table_25200461_9 WHERE city = "Santa Clara" | ### Context: CREATE TABLE table_25200461_9 (population VARCHAR, city VARCHAR) ### Question: If the city is Santa Clara, what is the population total number? ### Answer: SELECT COUNT(population) FROM table_25200461_9 WHERE city = "Santa Clara" |
In what prefecture is Susaki located? | CREATE TABLE table_2518850_4 (prefecture VARCHAR, city_town VARCHAR) | SELECT prefecture FROM table_2518850_4 WHERE city_town = "Susaki" | ### Context: CREATE TABLE table_2518850_4 (prefecture VARCHAR, city_town VARCHAR) ### Question: In what prefecture is Susaki located? ### Answer: SELECT prefecture FROM table_2518850_4 WHERE city_town = "Susaki" |
How many previous years did Maebashi Ikuei high school have a total number of 1 participation? | CREATE TABLE table_2518850_4 (year_of_previous_participation VARCHAR, total_number_of_participation VARCHAR, high_school_name VARCHAR) | SELECT COUNT(year_of_previous_participation) FROM table_2518850_4 WHERE total_number_of_participation = 1 AND high_school_name = "Maebashi Ikuei" | ### Context: CREATE TABLE table_2518850_4 (year_of_previous_participation VARCHAR, total_number_of_participation VARCHAR, high_school_name VARCHAR) ### Question: How many previous years did Maebashi Ikuei high school have a total number of 1 participation? ### Answer: SELECT COUNT(year_of_previous_participation) FROM t... |
In what prefecture is Nihon Bunri located? | CREATE TABLE table_2518850_4 (prefecture VARCHAR, high_school_name VARCHAR) | SELECT prefecture FROM table_2518850_4 WHERE high_school_name = "Nihon Bunri" | ### Context: CREATE TABLE table_2518850_4 (prefecture VARCHAR, high_school_name VARCHAR) ### Question: In what prefecture is Nihon Bunri located? ### Answer: SELECT prefecture FROM table_2518850_4 WHERE high_school_name = "Nihon Bunri" |
In what prefecture is Daito located? | CREATE TABLE table_2518850_4 (prefecture VARCHAR, city_town VARCHAR) | SELECT prefecture FROM table_2518850_4 WHERE city_town = "Daito" | ### Context: CREATE TABLE table_2518850_4 (prefecture VARCHAR, city_town VARCHAR) ### Question: In what prefecture is Daito located? ### Answer: SELECT prefecture FROM table_2518850_4 WHERE city_town = "Daito" |
Which high school is located in Kyoto? | CREATE TABLE table_2518850_4 (high_school_name VARCHAR, prefecture VARCHAR) | SELECT high_school_name FROM table_2518850_4 WHERE prefecture = "Kyoto" | ### Context: CREATE TABLE table_2518850_4 (high_school_name VARCHAR, prefecture VARCHAR) ### Question: Which high school is located in Kyoto? ### Answer: SELECT high_school_name FROM table_2518850_4 WHERE prefecture = "Kyoto" |
What was the year of previous participation for the school in the Kagoshima prefecture? | CREATE TABLE table_2518850_4 (year_of_previous_participation VARCHAR, prefecture VARCHAR) | SELECT year_of_previous_participation FROM table_2518850_4 WHERE prefecture = "Kagoshima" | ### Context: CREATE TABLE table_2518850_4 (year_of_previous_participation VARCHAR, prefecture VARCHAR) ### Question: What was the year of previous participation for the school in the Kagoshima prefecture? ### Answer: SELECT year_of_previous_participation FROM table_2518850_4 WHERE prefecture = "Kagoshima" |
What was the data on January 15-16 if March 27-29 is March 29, 2006? | CREATE TABLE table_25216791_3 (january_15_16 VARCHAR, march_27_29 VARCHAR) | SELECT january_15_16 FROM table_25216791_3 WHERE march_27_29 = "March 29, 2006" | ### Context: CREATE TABLE table_25216791_3 (january_15_16 VARCHAR, march_27_29 VARCHAR) ### Question: What was the data on January 15-16 if March 27-29 is March 29, 2006? ### Answer: SELECT january_15_16 FROM table_25216791_3 WHERE march_27_29 = "March 29, 2006" |
What was the data on November 3, if the data on January 15-16 is January 15, 2010? | CREATE TABLE table_25216791_3 (november_3 VARCHAR, january_15_16 VARCHAR) | SELECT november_3 FROM table_25216791_3 WHERE january_15_16 = "January 15, 2010" | ### Context: CREATE TABLE table_25216791_3 (november_3 VARCHAR, january_15_16 VARCHAR) ### Question: What was the data on November 3, if the data on January 15-16 is January 15, 2010? ### Answer: SELECT november_3 FROM table_25216791_3 WHERE january_15_16 = "January 15, 2010" |
How many datas were recorded on January 15-16 if August 21-22 is 155? | CREATE TABLE table_25216791_3 (january_15_16 VARCHAR, august_21_22 VARCHAR) | SELECT COUNT(january_15_16) FROM table_25216791_3 WHERE august_21_22 = "155" | ### Context: CREATE TABLE table_25216791_3 (january_15_16 VARCHAR, august_21_22 VARCHAR) ### Question: How many datas were recorded on January 15-16 if August 21-22 is 155? ### Answer: SELECT COUNT(january_15_16) FROM table_25216791_3 WHERE august_21_22 = "155" |
What was the data on January 15-16 if the data recorded June 10-11 is June 10, 1964? | CREATE TABLE table_25216791_3 (january_15_16 VARCHAR, june_10_11 VARCHAR) | SELECT january_15_16 FROM table_25216791_3 WHERE june_10_11 = "June 10, 1964" | ### Context: CREATE TABLE table_25216791_3 (january_15_16 VARCHAR, june_10_11 VARCHAR) ### Question: What was the data on January 15-16 if the data recorded June 10-11 is June 10, 1964? ### Answer: SELECT january_15_16 FROM table_25216791_3 WHERE june_10_11 = "June 10, 1964" |
How many data are on points for if the percentage is 94.29? | CREATE TABLE table_25229283_4 (points_for VARCHAR, percentage___percentage_ VARCHAR) | SELECT COUNT(points_for) FROM table_25229283_4 WHERE percentage___percentage_ = "94.29" | ### Context: CREATE TABLE table_25229283_4 (points_for VARCHAR, percentage___percentage_ VARCHAR) ### Question: How many data are on points for if the percentage is 94.29? ### Answer: SELECT COUNT(points_for) FROM table_25229283_4 WHERE percentage___percentage_ = "94.29" |
Who was the opponent with a points for of 177? | CREATE TABLE table_25229283_4 (opponent VARCHAR, points_for VARCHAR) | SELECT opponent FROM table_25229283_4 WHERE points_for = 177 | ### Context: CREATE TABLE table_25229283_4 (opponent VARCHAR, points_for VARCHAR) ### Question: Who was the opponent with a points for of 177? ### Answer: SELECT opponent FROM table_25229283_4 WHERE points_for = 177 |
What was the minimum points against if the opponent is Port Adelaide? | CREATE TABLE table_25229283_4 (points_against INTEGER, opponent VARCHAR) | SELECT MIN(points_against) FROM table_25229283_4 WHERE opponent = "Port Adelaide" | ### Context: CREATE TABLE table_25229283_4 (points_against INTEGER, opponent VARCHAR) ### Question: What was the minimum points against if the opponent is Port Adelaide? ### Answer: SELECT MIN(points_against) FROM table_25229283_4 WHERE opponent = "Port Adelaide" |
If Thursday 3 June is 20' 27.93 110.615mph, what are the names of the riders? | CREATE TABLE table_25220821_3 (rider VARCHAR, thurs_3_june VARCHAR) | SELECT rider FROM table_25220821_3 WHERE thurs_3_june = "20' 27.93 110.615mph" | ### Context: CREATE TABLE table_25220821_3 (rider VARCHAR, thurs_3_june VARCHAR) ### Question: If Thursday 3 June is 20' 27.93 110.615mph, what are the names of the riders? ### Answer: SELECT rider FROM table_25220821_3 WHERE thurs_3_june = "20' 27.93 110.615mph" |
What is the Tuesday 1 June total number if Monday 31 May is 20' 15.35 111.761mph? | CREATE TABLE table_25220821_3 (tues_1_june VARCHAR, mon_31_may VARCHAR) | SELECT COUNT(tues_1_june) FROM table_25220821_3 WHERE mon_31_may = "20' 15.35 111.761mph" | ### Context: CREATE TABLE table_25220821_3 (tues_1_june VARCHAR, mon_31_may VARCHAR) ### Question: What is the Tuesday 1 June total number if Monday 31 May is 20' 15.35 111.761mph? ### Answer: SELECT COUNT(tues_1_june) FROM table_25220821_3 WHERE mon_31_may = "20' 15.35 111.761mph" |
What is Friday 4 June if Wednesday 2 June is 20' 11.98 112.071mph? | CREATE TABLE table_25220821_3 (fri_4_june VARCHAR, wed_2_june VARCHAR) | SELECT fri_4_june FROM table_25220821_3 WHERE wed_2_june = "20' 11.98 112.071mph" | ### Context: CREATE TABLE table_25220821_3 (fri_4_june VARCHAR, wed_2_june VARCHAR) ### Question: What is Friday 4 June if Wednesday 2 June is 20' 11.98 112.071mph? ### Answer: SELECT fri_4_june FROM table_25220821_3 WHERE wed_2_june = "20' 11.98 112.071mph" |
If Tuesday 1 June is 21' 05.27 107.351mph, what is the rider total number? | CREATE TABLE table_25220821_3 (rider VARCHAR, tues_1_june VARCHAR) | SELECT COUNT(rider) FROM table_25220821_3 WHERE tues_1_june = "21' 05.27 107.351mph" | ### Context: CREATE TABLE table_25220821_3 (rider VARCHAR, tues_1_june VARCHAR) ### Question: If Tuesday 1 June is 21' 05.27 107.351mph, what is the rider total number? ### Answer: SELECT COUNT(rider) FROM table_25220821_3 WHERE tues_1_june = "21' 05.27 107.351mph" |
If Tuesday 1 June is 20' 59.60 107.834mph, what is the rank maximum? | CREATE TABLE table_25220821_3 (rank INTEGER, tues_1_june VARCHAR) | SELECT MAX(rank) FROM table_25220821_3 WHERE tues_1_june = "20' 59.60 107.834mph" | ### Context: CREATE TABLE table_25220821_3 (rank INTEGER, tues_1_june VARCHAR) ### Question: If Tuesday 1 June is 20' 59.60 107.834mph, what is the rank maximum? ### Answer: SELECT MAX(rank) FROM table_25220821_3 WHERE tues_1_june = "20' 59.60 107.834mph" |
What is the Friday 4 June if the Wednesday 2 June is 20' 50.62 108.608mph? | CREATE TABLE table_25220821_3 (fri_4_june VARCHAR, wed_2_june VARCHAR) | SELECT fri_4_june FROM table_25220821_3 WHERE wed_2_june = "20' 50.62 108.608mph" | ### Context: CREATE TABLE table_25220821_3 (fri_4_june VARCHAR, wed_2_june VARCHAR) ### Question: What is the Friday 4 June if the Wednesday 2 June is 20' 50.62 108.608mph? ### Answer: SELECT fri_4_june FROM table_25220821_3 WHERE wed_2_june = "20' 50.62 108.608mph" |
What is the 2 June time for the rider with time of 17' 48.58 127.111mph on 3 June? | CREATE TABLE table_25220821_4 (wed_2_june VARCHAR, thurs_3_june VARCHAR) | SELECT wed_2_june FROM table_25220821_4 WHERE thurs_3_june = "17' 48.58 127.111mph" | ### Context: CREATE TABLE table_25220821_4 (wed_2_june VARCHAR, thurs_3_june VARCHAR) ### Question: What is the 2 June time for the rider with time of 17' 48.58 127.111mph on 3 June? ### Answer: SELECT wed_2_june FROM table_25220821_4 WHERE thurs_3_june = "17' 48.58 127.111mph" |
How many times are listed for 31 May for the rider ranked 5? | CREATE TABLE table_25220821_4 (mon_31_may VARCHAR, rank VARCHAR) | SELECT COUNT(mon_31_may) FROM table_25220821_4 WHERE rank = 5 | ### Context: CREATE TABLE table_25220821_4 (mon_31_may VARCHAR, rank VARCHAR) ### Question: How many times are listed for 31 May for the rider ranked 5? ### Answer: SELECT COUNT(mon_31_may) FROM table_25220821_4 WHERE rank = 5 |
What is the 3 June time for the rider with 2 June time of 17' 45.11 127.525mph? | CREATE TABLE table_25220821_4 (thurs_3_june VARCHAR, wed_2_june VARCHAR) | SELECT thurs_3_june FROM table_25220821_4 WHERE wed_2_june = "17' 45.11 127.525mph" | ### Context: CREATE TABLE table_25220821_4 (thurs_3_june VARCHAR, wed_2_june VARCHAR) ### Question: What is the 3 June time for the rider with 2 June time of 17' 45.11 127.525mph? ### Answer: SELECT thurs_3_june FROM table_25220821_4 WHERE wed_2_june = "17' 45.11 127.525mph" |
Who is ranked 2? | CREATE TABLE table_25220821_4 (rider VARCHAR, rank VARCHAR) | SELECT rider FROM table_25220821_4 WHERE rank = 2 | ### Context: CREATE TABLE table_25220821_4 (rider VARCHAR, rank VARCHAR) ### Question: Who is ranked 2? ### Answer: SELECT rider FROM table_25220821_4 WHERE rank = 2 |
How many times does November 3rd occur when January 15, 1991 does? | CREATE TABLE table_25235489_2 (november_3 VARCHAR, january_15_16 VARCHAR) | SELECT COUNT(november_3) FROM table_25235489_2 WHERE january_15_16 = "January 15, 1991" | ### Context: CREATE TABLE table_25235489_2 (november_3 VARCHAR, january_15_16 VARCHAR) ### Question: How many times does November 3rd occur when January 15, 1991 does? ### Answer: SELECT COUNT(november_3) FROM table_25235489_2 WHERE january_15_16 = "January 15, 1991" |
When November is 153 what is the March number? | CREATE TABLE table_25235489_2 (march_27_29 VARCHAR, november_3 VARCHAR) | SELECT march_27_29 FROM table_25235489_2 WHERE november_3 = "153" | ### Context: CREATE TABLE table_25235489_2 (march_27_29 VARCHAR, november_3 VARCHAR) ### Question: When November is 153 what is the March number? ### Answer: SELECT march_27_29 FROM table_25235489_2 WHERE november_3 = "153" |
How many times does an occurance happen in June when it happens on NOvember 3, 1975? | CREATE TABLE table_25235489_2 (june_10_11 VARCHAR, november_3 VARCHAR) | SELECT COUNT(june_10_11) FROM table_25235489_2 WHERE november_3 = "november_3, 1975" | ### Context: CREATE TABLE table_25235489_2 (june_10_11 VARCHAR, november_3 VARCHAR) ### Question: How many times does an occurance happen in June when it happens on NOvember 3, 1975? ### Answer: SELECT COUNT(june_10_11) FROM table_25235489_2 WHERE november_3 = "november_3, 1975" |
When march is 129 what is the August number? | CREATE TABLE table_25235489_2 (august_21_22 VARCHAR, march_27_29 VARCHAR) | SELECT august_21_22 FROM table_25235489_2 WHERE march_27_29 = "129" | ### Context: CREATE TABLE table_25235489_2 (august_21_22 VARCHAR, march_27_29 VARCHAR) ### Question: When march is 129 what is the August number? ### Answer: SELECT august_21_22 FROM table_25235489_2 WHERE march_27_29 = "129" |
How many numbers are there for August when March is 139? | CREATE TABLE table_25235489_2 (august_21_22 VARCHAR, march_27_29 VARCHAR) | SELECT COUNT(august_21_22) FROM table_25235489_2 WHERE march_27_29 = "139" | ### Context: CREATE TABLE table_25235489_2 (august_21_22 VARCHAR, march_27_29 VARCHAR) ### Question: How many numbers are there for August when March is 139? ### Answer: SELECT COUNT(august_21_22) FROM table_25235489_2 WHERE march_27_29 = "139" |
How many teams have been in Topperserien for 8 seasons? | CREATE TABLE table_2522473_1 (team VARCHAR, seasons VARCHAR) | SELECT COUNT(team) FROM table_2522473_1 WHERE seasons = 8 | ### Context: CREATE TABLE table_2522473_1 (team VARCHAR, seasons VARCHAR) ### Question: How many teams have been in Topperserien for 8 seasons? ### Answer: SELECT COUNT(team) FROM table_2522473_1 WHERE seasons = 8 |
What is the maximum number of seasons for any team? | CREATE TABLE table_2522473_1 (seasons INTEGER) | SELECT MAX(seasons) FROM table_2522473_1 | ### Context: CREATE TABLE table_2522473_1 (seasons INTEGER) ### Question: What is the maximum number of seasons for any team? ### Answer: SELECT MAX(seasons) FROM table_2522473_1 |
Which teams homeeground is Stemmemyren? | CREATE TABLE table_2522473_1 (team VARCHAR, home_ground VARCHAR) | SELECT team FROM table_2522473_1 WHERE home_ground = "Stemmemyren" | ### Context: CREATE TABLE table_2522473_1 (team VARCHAR, home_ground VARCHAR) ### Question: Which teams homeeground is Stemmemyren? ### Answer: SELECT team FROM table_2522473_1 WHERE home_ground = "Stemmemyren" |
What is the home ground for the team whose home city is Trondheim with 27 seasons? | CREATE TABLE table_2522473_1 (home_ground VARCHAR, seasons VARCHAR, home_city VARCHAR) | SELECT home_ground FROM table_2522473_1 WHERE seasons = 27 AND home_city = "Trondheim" | ### Context: CREATE TABLE table_2522473_1 (home_ground VARCHAR, seasons VARCHAR, home_city VARCHAR) ### Question: What is the home ground for the team whose home city is Trondheim with 27 seasons? ### Answer: SELECT home_ground FROM table_2522473_1 WHERE seasons = 27 AND home_city = "Trondheim" |
What is the home city for the team whose home ground is dnb nor arena? | CREATE TABLE table_2522473_1 (home_city VARCHAR, home_ground VARCHAR) | SELECT home_city FROM table_2522473_1 WHERE home_ground = "DnB Nor Arena" | ### Context: CREATE TABLE table_2522473_1 (home_city VARCHAR, home_ground VARCHAR) ### Question: What is the home city for the team whose home ground is dnb nor arena? ### Answer: SELECT home_city FROM table_2522473_1 WHERE home_ground = "DnB Nor Arena" |
What Home city has the home ground Klepp stadion? | CREATE TABLE table_2522473_1 (home_city VARCHAR, home_ground VARCHAR) | SELECT home_city FROM table_2522473_1 WHERE home_ground = "Klepp Stadion" | ### Context: CREATE TABLE table_2522473_1 (home_city VARCHAR, home_ground VARCHAR) ### Question: What Home city has the home ground Klepp stadion? ### Answer: SELECT home_city FROM table_2522473_1 WHERE home_ground = "Klepp Stadion" |
How many data was given the total electricity in GW-h if the renewable electricity w/o hydro (GW-h) is 3601? | CREATE TABLE table_25244412_2 (total_electricity__gw VARCHAR, renewable_electricity_w_o_hydro__gw·h_ VARCHAR) | SELECT COUNT(total_electricity__gw) AS ·h_ FROM table_25244412_2 WHERE renewable_electricity_w_o_hydro__gw·h_ = 3601 | ### Context: CREATE TABLE table_25244412_2 (total_electricity__gw VARCHAR, renewable_electricity_w_o_hydro__gw·h_ VARCHAR) ### Question: How many data was given the total electricity in GW-h if the renewable electricity w/o hydro (GW-h) is 3601? ### Answer: SELECT COUNT(total_electricity__gw) AS ·h_ FROM table_25244412... |
How many data was given the total electricity in GW-h if % renewable is 92.3%? | CREATE TABLE table_25244412_2 (total_electricity__gw VARCHAR, _percentage_renewable VARCHAR) | SELECT COUNT(total_electricity__gw) AS ·h_ FROM table_25244412_2 WHERE _percentage_renewable = "92.3%" | ### Context: CREATE TABLE table_25244412_2 (total_electricity__gw VARCHAR, _percentage_renewable VARCHAR) ### Question: How many data was given the total electricity in GW-h if % renewable is 92.3%? ### Answer: SELECT COUNT(total_electricity__gw) AS ·h_ FROM table_25244412_2 WHERE _percentage_renewable = "92.3%" |
How much was the minimum renewable electricity (GW-h) that is ranked 36? | CREATE TABLE table_25244412_2 (renewable_electricity__gw INTEGER, rank VARCHAR) | SELECT MIN(renewable_electricity__gw) AS ·h_ FROM table_25244412_2 WHERE rank = 36 | ### Context: CREATE TABLE table_25244412_2 (renewable_electricity__gw INTEGER, rank VARCHAR) ### Question: How much was the minimum renewable electricity (GW-h) that is ranked 36? ### Answer: SELECT MIN(renewable_electricity__gw) AS ·h_ FROM table_25244412_2 WHERE rank = 36 |
What was the state with the total electricity generated is 38380 gw-h? | CREATE TABLE table_25244412_2 (state VARCHAR, total_electricity__gw·h_ VARCHAR) | SELECT state FROM table_25244412_2 WHERE total_electricity__gw·h_ = 38380 | ### Context: CREATE TABLE table_25244412_2 (state VARCHAR, total_electricity__gw·h_ VARCHAR) ### Question: What was the state with the total electricity generated is 38380 gw-h? ### Answer: SELECT state FROM table_25244412_2 WHERE total_electricity__gw·h_ = 38380 |
What number episode in the series had a production code of 111? | CREATE TABLE table_25246990_2 (no_in_series VARCHAR, prod_code VARCHAR) | SELECT no_in_series FROM table_25246990_2 WHERE prod_code = "111" | ### Context: CREATE TABLE table_25246990_2 (no_in_series VARCHAR, prod_code VARCHAR) ### Question: What number episode in the series had a production code of 111? ### Answer: SELECT no_in_series FROM table_25246990_2 WHERE prod_code = "111" |
What number episode in the series had a production code of 110? | CREATE TABLE table_25246990_2 (no_in_series VARCHAR, prod_code VARCHAR) | SELECT no_in_series FROM table_25246990_2 WHERE prod_code = "110" | ### Context: CREATE TABLE table_25246990_2 (no_in_series VARCHAR, prod_code VARCHAR) ### Question: What number episode in the series had a production code of 110? ### Answer: SELECT no_in_series FROM table_25246990_2 WHERE prod_code = "110" |
How many U.S. viewers in millions watched the number 7 episode in the series that was written by Jed Spingarn? | CREATE TABLE table_25246990_2 (us_viewers__millions_ VARCHAR, written_by VARCHAR, no_in_series VARCHAR) | SELECT us_viewers__millions_ FROM table_25246990_2 WHERE written_by = "Jed Spingarn" AND no_in_series = "7" | ### Context: CREATE TABLE table_25246990_2 (us_viewers__millions_ VARCHAR, written_by VARCHAR, no_in_series VARCHAR) ### Question: How many U.S. viewers in millions watched the number 7 episode in the series that was written by Jed Spingarn? ### Answer: SELECT us_viewers__millions_ FROM table_25246990_2 WHERE written_b... |
What was the original U.S. air date of the episode directed by Julian Petrillo? | CREATE TABLE table_25246990_5 (original_us_air_date VARCHAR, directed_by VARCHAR) | SELECT original_us_air_date FROM table_25246990_5 WHERE directed_by = "Julian Petrillo" | ### Context: CREATE TABLE table_25246990_5 (original_us_air_date VARCHAR, directed_by VARCHAR) ### Question: What was the original U.S. air date of the episode directed by Julian Petrillo? ### Answer: SELECT original_us_air_date FROM table_25246990_5 WHERE directed_by = "Julian Petrillo" |
How many different original U.S. air dates appear where the U.S. viewers were 2.5 million? | CREATE TABLE table_25246990_5 (original_us_air_date VARCHAR, us_viewers__millions_ VARCHAR) | SELECT COUNT(original_us_air_date) FROM table_25246990_5 WHERE us_viewers__millions_ = "2.5" | ### Context: CREATE TABLE table_25246990_5 (original_us_air_date VARCHAR, us_viewers__millions_ VARCHAR) ### Question: How many different original U.S. air dates appear where the U.S. viewers were 2.5 million? ### Answer: SELECT COUNT(original_us_air_date) FROM table_25246990_5 WHERE us_viewers__millions_ = "2.5" |
How many U.S. viewers were there for the episode written by Lazar Saric & Jed Spingarn? | CREATE TABLE table_25246990_5 (us_viewers__millions_ VARCHAR, written_by VARCHAR) | SELECT us_viewers__millions_ FROM table_25246990_5 WHERE written_by = "Lazar Saric & Jed Spingarn" | ### Context: CREATE TABLE table_25246990_5 (us_viewers__millions_ VARCHAR, written_by VARCHAR) ### Question: How many U.S. viewers were there for the episode written by Lazar Saric & Jed Spingarn? ### Answer: SELECT us_viewers__millions_ FROM table_25246990_5 WHERE written_by = "Lazar Saric & Jed Spingarn" |
How many U.S. viewers were there for the number 4 episode in season? | CREATE TABLE table_25246990_5 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR) | SELECT us_viewers__millions_ FROM table_25246990_5 WHERE no_in_season = 4 | ### Context: CREATE TABLE table_25246990_5 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR) ### Question: How many U.S. viewers were there for the number 4 episode in season? ### Answer: SELECT us_viewers__millions_ FROM table_25246990_5 WHERE no_in_season = 4 |
Name the least rank | CREATE TABLE table_2527063_3 (rank INTEGER) | SELECT MIN(rank) FROM table_2527063_3 | ### Context: CREATE TABLE table_2527063_3 (rank INTEGER) ### Question: Name the least rank ### Answer: SELECT MIN(rank) FROM table_2527063_3 |
Name the growth rate for hooghly | CREATE TABLE table_2527063_3 (growth_rate VARCHAR, district VARCHAR) | SELECT growth_rate FROM table_2527063_3 WHERE district = "Hooghly" | ### Context: CREATE TABLE table_2527063_3 (growth_rate VARCHAR, district VARCHAR) ### Question: Name the growth rate for hooghly ### Answer: SELECT growth_rate FROM table_2527063_3 WHERE district = "Hooghly" |
Name the total number of rank for east midnapore | CREATE TABLE table_2527063_3 (rank VARCHAR, district VARCHAR) | SELECT COUNT(rank) FROM table_2527063_3 WHERE district = "East Midnapore" | ### Context: CREATE TABLE table_2527063_3 (rank VARCHAR, district VARCHAR) ### Question: Name the total number of rank for east midnapore ### Answer: SELECT COUNT(rank) FROM table_2527063_3 WHERE district = "East Midnapore" |
Name the total number of rank for growth raate for 14.47 | CREATE TABLE table_2527063_3 (rank VARCHAR, growth_rate VARCHAR) | SELECT COUNT(rank) FROM table_2527063_3 WHERE growth_rate = "14.47" | ### Context: CREATE TABLE table_2527063_3 (rank VARCHAR, growth_rate VARCHAR) ### Question: Name the total number of rank for growth raate for 14.47 ### Answer: SELECT COUNT(rank) FROM table_2527063_3 WHERE growth_rate = "14.47" |
Who is the champion of the 1994 season? | CREATE TABLE table_2527617_1 (champion VARCHAR, season VARCHAR) | SELECT champion FROM table_2527617_1 WHERE season = 1994 | ### Context: CREATE TABLE table_2527617_1 (champion VARCHAR, season VARCHAR) ### Question: Who is the champion of the 1994 season? ### Answer: SELECT champion FROM table_2527617_1 WHERE season = 1994 |
Who is the best player in the 1998 season? | CREATE TABLE table_2527617_1 (best_player VARCHAR, season VARCHAR) | SELECT best_player FROM table_2527617_1 WHERE season = 1998 | ### Context: CREATE TABLE table_2527617_1 (best_player VARCHAR, season VARCHAR) ### Question: Who is the best player in the 1998 season? ### Answer: SELECT best_player FROM table_2527617_1 WHERE season = 1998 |
What was the largest index the year/s forcible rapes numbered 1084? | CREATE TABLE table_25271777_1 (index INTEGER, forcible_rape VARCHAR) | SELECT MAX(index) FROM table_25271777_1 WHERE forcible_rape = 1084 | ### Context: CREATE TABLE table_25271777_1 (index INTEGER, forcible_rape VARCHAR) ### Question: What was the largest index the year/s forcible rapes numbered 1084? ### Answer: SELECT MAX(index) FROM table_25271777_1 WHERE forcible_rape = 1084 |
How many violent catagories are listed for the year forcible rapes were 1156? | CREATE TABLE table_25271777_1 (violent VARCHAR, forcible_rape VARCHAR) | SELECT COUNT(violent) FROM table_25271777_1 WHERE forcible_rape = 1156 | ### Context: CREATE TABLE table_25271777_1 (violent VARCHAR, forcible_rape VARCHAR) ### Question: How many violent catagories are listed for the year forcible rapes were 1156? ### Answer: SELECT COUNT(violent) FROM table_25271777_1 WHERE forcible_rape = 1156 |
What was the largest number of aggravated assaults when there were 3811 robberies? | CREATE TABLE table_25271777_1 (aggravated_assault INTEGER, robbery VARCHAR) | SELECT MAX(aggravated_assault) FROM table_25271777_1 WHERE robbery = 3811 | ### Context: CREATE TABLE table_25271777_1 (aggravated_assault INTEGER, robbery VARCHAR) ### Question: What was the largest number of aggravated assaults when there were 3811 robberies? ### Answer: SELECT MAX(aggravated_assault) FROM table_25271777_1 WHERE robbery = 3811 |
What was the number of murders the year forcible rapes were at 166? | CREATE TABLE table_25271777_1 (murder VARCHAR, forcible_rape VARCHAR) | SELECT murder FROM table_25271777_1 WHERE forcible_rape = 166 | ### Context: CREATE TABLE table_25271777_1 (murder VARCHAR, forcible_rape VARCHAR) ### Question: What was the number of murders the year forcible rapes were at 166? ### Answer: SELECT murder FROM table_25271777_1 WHERE forcible_rape = 166 |
How many violent crimes occurred the year that the index was 191037? | CREATE TABLE table_25271777_1 (violent VARCHAR, index VARCHAR) | SELECT violent FROM table_25271777_1 WHERE index = 191037 | ### Context: CREATE TABLE table_25271777_1 (violent VARCHAR, index VARCHAR) ### Question: How many violent crimes occurred the year that the index was 191037? ### Answer: SELECT violent FROM table_25271777_1 WHERE index = 191037 |
Who wrote episode number 149 in the series? | CREATE TABLE table_25277363_2 (written_by VARCHAR, no_in_series VARCHAR) | SELECT written_by FROM table_25277363_2 WHERE no_in_series = 149 | ### Context: CREATE TABLE table_25277363_2 (written_by VARCHAR, no_in_series VARCHAR) ### Question: Who wrote episode number 149 in the series? ### Answer: SELECT written_by FROM table_25277363_2 WHERE no_in_series = 149 |
What title did Bill Foster direct ? | CREATE TABLE table_25276528_2 (title VARCHAR, directed_by VARCHAR) | SELECT title FROM table_25276528_2 WHERE directed_by = "Bill Foster" | ### Context: CREATE TABLE table_25276528_2 (title VARCHAR, directed_by VARCHAR) ### Question: What title did Bill Foster direct ? ### Answer: SELECT title FROM table_25276528_2 WHERE directed_by = "Bill Foster" |
Kim Weiskopf and Jeff Franklin wrote all the no. in series. | CREATE TABLE table_25276528_2 (no_in_series VARCHAR, written_by VARCHAR) | SELECT no_in_series FROM table_25276528_2 WHERE written_by = "Kim Weiskopf and Jeff Franklin" | ### Context: CREATE TABLE table_25276528_2 (no_in_series VARCHAR, written_by VARCHAR) ### Question: Kim Weiskopf and Jeff Franklin wrote all the no. in series. ### Answer: SELECT no_in_series FROM table_25276528_2 WHERE written_by = "Kim Weiskopf and Jeff Franklin" |
Which co-stars did Kalyanji-anandji direct in 1963? | CREATE TABLE table_2528382_2 (co_stars VARCHAR, music_director VARCHAR, year VARCHAR) | SELECT co_stars FROM table_2528382_2 WHERE music_director = "Kalyanji-Anandji" AND year = "1963" | ### Context: CREATE TABLE table_2528382_2 (co_stars VARCHAR, music_director VARCHAR, year VARCHAR) ### Question: Which co-stars did Kalyanji-anandji direct in 1963? ### Answer: SELECT co_stars FROM table_2528382_2 WHERE music_director = "Kalyanji-Anandji" AND year = "1963" |
Which co-singers appear in the movie Pyaasa? | CREATE TABLE table_2528382_2 (Co VARCHAR, singers VARCHAR, movie_album VARCHAR) | SELECT Co - singers FROM table_2528382_2 WHERE movie_album = "Pyaasa" | ### Context: CREATE TABLE table_2528382_2 (Co VARCHAR, singers VARCHAR, movie_album VARCHAR) ### Question: Which co-singers appear in the movie Pyaasa? ### Answer: SELECT Co - singers FROM table_2528382_2 WHERE movie_album = "Pyaasa" |
What is the additional information in the song mera yaar bana hai dulha | CREATE TABLE table_2528382_2 (additional_info VARCHAR, song VARCHAR) | SELECT additional_info FROM table_2528382_2 WHERE song = "Mera Yaar Bana Hai Dulha" | ### Context: CREATE TABLE table_2528382_2 (additional_info VARCHAR, song VARCHAR) ### Question: What is the additional information in the song mera yaar bana hai dulha ### Answer: SELECT additional_info FROM table_2528382_2 WHERE song = "Mera Yaar Bana Hai Dulha" |
In which years are co-stars mala sinha and amitabh bachchan? | CREATE TABLE table_2528382_2 (year VARCHAR, co_stars VARCHAR) | SELECT year FROM table_2528382_2 WHERE co_stars = "Mala Sinha and Amitabh Bachchan" | ### Context: CREATE TABLE table_2528382_2 (year VARCHAR, co_stars VARCHAR) ### Question: In which years are co-stars mala sinha and amitabh bachchan? ### Answer: SELECT year FROM table_2528382_2 WHERE co_stars = "Mala Sinha and Amitabh Bachchan" |
Which song has Drunkard Groom listed as additional information? | CREATE TABLE table_2528382_1 (song VARCHAR, additional_info VARCHAR) | SELECT song FROM table_2528382_1 WHERE additional_info = "Drunkard Groom" | ### Context: CREATE TABLE table_2528382_1 (song VARCHAR, additional_info VARCHAR) ### Question: Which song has Drunkard Groom listed as additional information? ### Answer: SELECT song FROM table_2528382_1 WHERE additional_info = "Drunkard Groom" |
Who was the lyricist for the song with music directed by madan mohan kohli? | CREATE TABLE table_2528382_1 (lyricist VARCHAR, music_director VARCHAR) | SELECT lyricist FROM table_2528382_1 WHERE music_director = "Madan Mohan Kohli" | ### Context: CREATE TABLE table_2528382_1 (lyricist VARCHAR, music_director VARCHAR) ### Question: Who was the lyricist for the song with music directed by madan mohan kohli? ### Answer: SELECT lyricist FROM table_2528382_1 WHERE music_director = "Madan Mohan Kohli" |
Which song directed by datta naik had the ending stranza written by Johnny Walker? | CREATE TABLE table_2528382_1 (additional_info VARCHAR, music_director VARCHAR) | SELECT additional_info FROM table_2528382_1 WHERE music_director = "Datta Naik" | ### Context: CREATE TABLE table_2528382_1 (additional_info VARCHAR, music_director VARCHAR) ### Question: Which song directed by datta naik had the ending stranza written by Johnny Walker? ### Answer: SELECT additional_info FROM table_2528382_1 WHERE music_director = "Datta Naik" |
In which album can Dil De De Nahin Nahin Dil Le Le be found? | CREATE TABLE table_2528382_1 (movie_album VARCHAR, song VARCHAR) | SELECT movie_album FROM table_2528382_1 WHERE song = "Dil De De Nahin Nahin Dil Le Le" | ### Context: CREATE TABLE table_2528382_1 (movie_album VARCHAR, song VARCHAR) ### Question: In which album can Dil De De Nahin Nahin Dil Le Le be found? ### Answer: SELECT movie_album FROM table_2528382_1 WHERE song = "Dil De De Nahin Nahin Dil Le Le" |
What was the GDP for 2002-2005 for the construction center? | CREATE TABLE table_25282151_1 (supply_sector___percentage_of_gdp_in_current_prices_ VARCHAR) | SELECT 2002 AS _2005 FROM table_25282151_1 WHERE supply_sector___percentage_of_gdp_in_current_prices_ = "Construction" | ### Context: CREATE TABLE table_25282151_1 (supply_sector___percentage_of_gdp_in_current_prices_ VARCHAR) ### Question: What was the GDP for 2002-2005 for the construction center? ### Answer: SELECT 2002 AS _2005 FROM table_25282151_1 WHERE supply_sector___percentage_of_gdp_in_current_prices_ = "Construction" |
What is the November 3 result when June 10-11 is 147? | CREATE TABLE table_25284864_3 (november_3 VARCHAR, june_10_11 VARCHAR) | SELECT november_3 FROM table_25284864_3 WHERE june_10_11 = "147" | ### Context: CREATE TABLE table_25284864_3 (november_3 VARCHAR, june_10_11 VARCHAR) ### Question: What is the November 3 result when June 10-11 is 147? ### Answer: SELECT november_3 FROM table_25284864_3 WHERE june_10_11 = "147" |
What is the November 3 result when the result for January 15-16 is 141? | CREATE TABLE table_25284864_3 (november_3 VARCHAR, january_15_16 VARCHAR) | SELECT november_3 FROM table_25284864_3 WHERE january_15_16 = "141" | ### Context: CREATE TABLE table_25284864_3 (november_3 VARCHAR, january_15_16 VARCHAR) ### Question: What is the November 3 result when the result for January 15-16 is 141? ### Answer: SELECT november_3 FROM table_25284864_3 WHERE january_15_16 = "141" |
What June 10-11 is is that corresponds to March 28, 1968? | CREATE TABLE table_25284864_3 (june_10_11 VARCHAR, march_27_29 VARCHAR) | SELECT june_10_11 FROM table_25284864_3 WHERE march_27_29 = "March 28, 1968" | ### Context: CREATE TABLE table_25284864_3 (june_10_11 VARCHAR, march_27_29 VARCHAR) ### Question: What June 10-11 is is that corresponds to March 28, 1968? ### Answer: SELECT june_10_11 FROM table_25284864_3 WHERE march_27_29 = "March 28, 1968" |
What January 15-16 is is that corresponds to November 3, 2013? | CREATE TABLE table_25284864_3 (january_15_16 VARCHAR, november_3 VARCHAR) | SELECT january_15_16 FROM table_25284864_3 WHERE november_3 = "november_3, 2013" | ### Context: CREATE TABLE table_25284864_3 (january_15_16 VARCHAR, november_3 VARCHAR) ### Question: What January 15-16 is is that corresponds to November 3, 2013? ### Answer: SELECT january_15_16 FROM table_25284864_3 WHERE november_3 = "november_3, 2013" |
When 127 is on June 10th to 11th what is November 3rd? | CREATE TABLE table_25286976_2 (november_3 VARCHAR, june_10_11 VARCHAR) | SELECT november_3 FROM table_25286976_2 WHERE june_10_11 = "127" | ### Context: CREATE TABLE table_25286976_2 (november_3 VARCHAR, june_10_11 VARCHAR) ### Question: When 127 is on June 10th to 11th what is November 3rd? ### Answer: SELECT november_3 FROM table_25286976_2 WHERE june_10_11 = "127" |
When 129 is on March 27th to 29th what is June 10th to 11th? | CREATE TABLE table_25286976_2 (june_10_11 VARCHAR, march_27_29 VARCHAR) | SELECT june_10_11 FROM table_25286976_2 WHERE march_27_29 = "129" | ### Context: CREATE TABLE table_25286976_2 (june_10_11 VARCHAR, march_27_29 VARCHAR) ### Question: When 129 is on March 27th to 29th what is June 10th to 11th? ### Answer: SELECT june_10_11 FROM table_25286976_2 WHERE march_27_29 = "129" |
When 139 is on March 27th to 29th what is August 21st to 22nd? | CREATE TABLE table_25286976_2 (august_21_22 VARCHAR, march_27_29 VARCHAR) | SELECT august_21_22 FROM table_25286976_2 WHERE march_27_29 = "139" | ### Context: CREATE TABLE table_25286976_2 (august_21_22 VARCHAR, march_27_29 VARCHAR) ### Question: When 139 is on March 27th to 29th what is August 21st to 22nd? ### Answer: SELECT august_21_22 FROM table_25286976_2 WHERE march_27_29 = "139" |
During November 3 where august 21-22 is august 21, 2017? | CREATE TABLE table_25287007_2 (november_3 VARCHAR, august_21_22 VARCHAR) | SELECT november_3 FROM table_25287007_2 WHERE august_21_22 = "August 21, 2017" | ### Context: CREATE TABLE table_25287007_2 (november_3 VARCHAR, august_21_22 VARCHAR) ### Question: During November 3 where august 21-22 is august 21, 2017? ### Answer: SELECT november_3 FROM table_25287007_2 WHERE august_21_22 = "August 21, 2017" |
How many solar eclipse on June 10-11, while November 3 is 153? | CREATE TABLE table_25287007_2 (june_10_11 VARCHAR, november_3 VARCHAR) | SELECT june_10_11 FROM table_25287007_2 WHERE november_3 = "153" | ### Context: CREATE TABLE table_25287007_2 (june_10_11 VARCHAR, november_3 VARCHAR) ### Question: How many solar eclipse on June 10-11, while November 3 is 153? ### Answer: SELECT june_10_11 FROM table_25287007_2 WHERE november_3 = "153" |
How many solar eclipse during August 21-22 where June 10-11 on June 11, 1983? | CREATE TABLE table_25287007_2 (august_21_22 VARCHAR, june_10_11 VARCHAR) | SELECT COUNT(august_21_22) FROM table_25287007_2 WHERE june_10_11 = "June 11, 1983" | ### Context: CREATE TABLE table_25287007_2 (august_21_22 VARCHAR, june_10_11 VARCHAR) ### Question: How many solar eclipse during August 21-22 where June 10-11 on June 11, 1983? ### Answer: SELECT COUNT(august_21_22) FROM table_25287007_2 WHERE june_10_11 = "June 11, 1983" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.