question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the ranktotal number if the Hashan Tillakaratne?
CREATE TABLE table_26041144_16 (rank VARCHAR, player VARCHAR)
SELECT COUNT(rank) FROM table_26041144_16 WHERE player = "Hashan Tillakaratne"
### Context: CREATE TABLE table_26041144_16 (rank VARCHAR, player VARCHAR) ### Question: What is the ranktotal number if the Hashan Tillakaratne? ### Answer: SELECT COUNT(rank) FROM table_26041144_16 WHERE player = "Hashan Tillakaratne"
If the catches is 131, what is the rank total number?
CREATE TABLE table_26041144_16 (rank VARCHAR, catches VARCHAR)
SELECT COUNT(rank) FROM table_26041144_16 WHERE catches = 131
### Context: CREATE TABLE table_26041144_16 (rank VARCHAR, catches VARCHAR) ### Question: If the catches is 131, what is the rank total number? ### Answer: SELECT COUNT(rank) FROM table_26041144_16 WHERE catches = 131
What was the maximum burglary statistics if the property crimes is 168630?
CREATE TABLE table_26060884_2 (burglary INTEGER, property_crimes VARCHAR)
SELECT MAX(burglary) FROM table_26060884_2 WHERE property_crimes = 168630
### Context: CREATE TABLE table_26060884_2 (burglary INTEGER, property_crimes VARCHAR) ### Question: What was the maximum burglary statistics if the property crimes is 168630? ### Answer: SELECT MAX(burglary) FROM table_26060884_2 WHERE property_crimes = 168630
How many burglary crimes were committed if the forcible rapes were 1233?
CREATE TABLE table_26060884_2 (burglary VARCHAR, forcible_rape VARCHAR)
SELECT burglary FROM table_26060884_2 WHERE forcible_rape = 1233
### Context: CREATE TABLE table_26060884_2 (burglary VARCHAR, forcible_rape VARCHAR) ### Question: How many burglary crimes were committed if the forcible rapes were 1233? ### Answer: SELECT burglary FROM table_26060884_2 WHERE forcible_rape = 1233
How many vehicle thefts data were recorded if forcible rape is 1232?
CREATE TABLE table_26060884_2 (vehicle_theft VARCHAR, forcible_rape VARCHAR)
SELECT COUNT(vehicle_theft) FROM table_26060884_2 WHERE forcible_rape = 1232
### Context: CREATE TABLE table_26060884_2 (vehicle_theft VARCHAR, forcible_rape VARCHAR) ### Question: How many vehicle thefts data were recorded if forcible rape is 1232? ### Answer: SELECT COUNT(vehicle_theft) FROM table_26060884_2 WHERE forcible_rape = 1232
How many vehicle theft data were recorded for a year with a population of 4465430?
CREATE TABLE table_26060884_2 (vehicle_theft VARCHAR, population VARCHAR)
SELECT COUNT(vehicle_theft) FROM table_26060884_2 WHERE population = 4465430
### Context: CREATE TABLE table_26060884_2 (vehicle_theft VARCHAR, population VARCHAR) ### Question: How many vehicle theft data were recorded for a year with a population of 4465430? ### Answer: SELECT COUNT(vehicle_theft) FROM table_26060884_2 WHERE population = 4465430
What was the minimum property crimes stats if the burglary committed was 45350?
CREATE TABLE table_26060884_2 (property_crimes INTEGER, burglary VARCHAR)
SELECT MIN(property_crimes) FROM table_26060884_2 WHERE burglary = 45350
### Context: CREATE TABLE table_26060884_2 (property_crimes INTEGER, burglary VARCHAR) ### Question: What was the minimum property crimes stats if the burglary committed was 45350? ### Answer: SELECT MIN(property_crimes) FROM table_26060884_2 WHERE burglary = 45350
What was kumar sangakkara's average?
CREATE TABLE table_26041144_11 (average VARCHAR, player VARCHAR)
SELECT average FROM table_26041144_11 WHERE player = "Kumar Sangakkara"
### Context: CREATE TABLE table_26041144_11 (average VARCHAR, player VARCHAR) ### Question: What was kumar sangakkara's average? ### Answer: SELECT average FROM table_26041144_11 WHERE player = "Kumar Sangakkara"
Who was the player with a 36.74 average?
CREATE TABLE table_26041144_11 (player VARCHAR, average VARCHAR)
SELECT player FROM table_26041144_11 WHERE average = "36.74"
### Context: CREATE TABLE table_26041144_11 (player VARCHAR, average VARCHAR) ### Question: Who was the player with a 36.74 average? ### Answer: SELECT player FROM table_26041144_11 WHERE average = "36.74"
What is the rank of the player with the 39.69 average?
CREATE TABLE table_26041144_11 (rank VARCHAR, average VARCHAR)
SELECT rank FROM table_26041144_11 WHERE average = "39.69"
### Context: CREATE TABLE table_26041144_11 (rank VARCHAR, average VARCHAR) ### Question: What is the rank of the player with the 39.69 average? ### Answer: SELECT rank FROM table_26041144_11 WHERE average = "39.69"
What is the lowest number of matches for a record holder?
CREATE TABLE table_26041144_11 (matches INTEGER)
SELECT MIN(matches) FROM table_26041144_11
### Context: CREATE TABLE table_26041144_11 (matches INTEGER) ### Question: What is the lowest number of matches for a record holder? ### Answer: SELECT MIN(matches) FROM table_26041144_11
When theora is 2.3, how much is the h.264?
CREATE TABLE table_26099252_1 (h264 VARCHAR, theora VARCHAR)
SELECT h264 FROM table_26099252_1 WHERE theora = "2.3"
### Context: CREATE TABLE table_26099252_1 (h264 VARCHAR, theora VARCHAR) ### Question: When theora is 2.3, how much is the h.264? ### Answer: SELECT h264 FROM table_26099252_1 WHERE theora = "2.3"
When vp8 ( webm ) is 6.0, how much is the vp9 ( webm )?
CREATE TABLE table_26099252_1 (vp9___webm__ VARCHAR, vp8___webm__ VARCHAR)
SELECT vp9___webm__ FROM table_26099252_1 WHERE vp8___webm__ = "6.0"
### Context: CREATE TABLE table_26099252_1 (vp9___webm__ VARCHAR, vp8___webm__ VARCHAR) ### Question: When vp8 ( webm ) is 6.0, how much is the vp9 ( webm )? ### Answer: SELECT vp9___webm__ FROM table_26099252_1 WHERE vp8___webm__ = "6.0"
When vp8 ( webm ) is 4.4, how much is vp9 ( webm )
CREATE TABLE table_26099252_1 (vp9___webm__ VARCHAR, vp8___webm__ VARCHAR)
SELECT vp9___webm__ FROM table_26099252_1 WHERE vp8___webm__ = "4.4"
### Context: CREATE TABLE table_26099252_1 (vp9___webm__ VARCHAR, vp8___webm__ VARCHAR) ### Question: When vp8 ( webm ) is 4.4, how much is vp9 ( webm ) ### Answer: SELECT vp9___webm__ FROM table_26099252_1 WHERE vp8___webm__ = "4.4"
What is the last stable version where the h.264 is 3.0 and vp9 (webm) is no.
CREATE TABLE table_26099252_1 (latest_stable_release VARCHAR, vp9___webm__ VARCHAR, h264 VARCHAR)
SELECT latest_stable_release FROM table_26099252_1 WHERE vp9___webm__ = "No" AND h264 = "3.0"
### Context: CREATE TABLE table_26099252_1 (latest_stable_release VARCHAR, vp9___webm__ VARCHAR, h264 VARCHAR) ### Question: What is the last stable version where the h.264 is 3.0 and vp9 (webm) is no. ### Answer: SELECT latest_stable_release FROM table_26099252_1 WHERE vp9___webm__ = "No" AND h264 = "3.0"
When h.264 is 9.0, how much is vp9 ( webm )
CREATE TABLE table_26099252_1 (vp9___webm__ VARCHAR, h264 VARCHAR)
SELECT vp9___webm__ FROM table_26099252_1 WHERE h264 = "9.0"
### Context: CREATE TABLE table_26099252_1 (vp9___webm__ VARCHAR, h264 VARCHAR) ### Question: When h.264 is 9.0, how much is vp9 ( webm ) ### Answer: SELECT vp9___webm__ FROM table_26099252_1 WHERE h264 = "9.0"
Name the peletier for systematics being million 1
CREATE TABLE table_260938_1 (peletier VARCHAR, systematics VARCHAR)
SELECT peletier FROM table_260938_1 WHERE systematics = "Million 1"
### Context: CREATE TABLE table_260938_1 (peletier VARCHAR, systematics VARCHAR) ### Question: Name the peletier for systematics being million 1 ### Answer: SELECT peletier FROM table_260938_1 WHERE systematics = "Million 1"
Name the si prefix for thousand chuquet
CREATE TABLE table_260938_1 (si_prefix VARCHAR, chuquet VARCHAR)
SELECT si_prefix FROM table_260938_1 WHERE chuquet = "thousand"
### Context: CREATE TABLE table_260938_1 (si_prefix VARCHAR, chuquet VARCHAR) ### Question: Name the si prefix for thousand chuquet ### Answer: SELECT si_prefix FROM table_260938_1 WHERE chuquet = "thousand"
Name the base 10 for peletier for bi llion
CREATE TABLE table_260938_1 (base_10 VARCHAR, peletier VARCHAR)
SELECT base_10 FROM table_260938_1 WHERE peletier = "Bi llion"
### Context: CREATE TABLE table_260938_1 (base_10 VARCHAR, peletier VARCHAR) ### Question: Name the base 10 for peletier for bi llion ### Answer: SELECT base_10 FROM table_260938_1 WHERE peletier = "Bi llion"
Name the total number of peletier for shortscale comparison billion
CREATE TABLE table_260938_1 (peletier VARCHAR, shortscale_comparison VARCHAR)
SELECT COUNT(peletier) FROM table_260938_1 WHERE shortscale_comparison = "Billion"
### Context: CREATE TABLE table_260938_1 (peletier VARCHAR, shortscale_comparison VARCHAR) ### Question: Name the total number of peletier for shortscale comparison billion ### Answer: SELECT COUNT(peletier) FROM table_260938_1 WHERE shortscale_comparison = "Billion"
Name the base 10 for shortscale comparison for billion
CREATE TABLE table_260938_1 (base_10 VARCHAR, shortscale_comparison VARCHAR)
SELECT base_10 FROM table_260938_1 WHERE shortscale_comparison = "Billion"
### Context: CREATE TABLE table_260938_1 (base_10 VARCHAR, shortscale_comparison VARCHAR) ### Question: Name the base 10 for shortscale comparison for billion ### Answer: SELECT base_10 FROM table_260938_1 WHERE shortscale_comparison = "Billion"
What is the branding of the callsign DWBA-TV?
CREATE TABLE table_2610582_3 (branding VARCHAR, callsign VARCHAR)
SELECT branding FROM table_2610582_3 WHERE callsign = "DWBA-TV"
### Context: CREATE TABLE table_2610582_3 (branding VARCHAR, callsign VARCHAR) ### Question: What is the branding of the callsign DWBA-TV? ### Answer: SELECT branding FROM table_2610582_3 WHERE callsign = "DWBA-TV"
What is the station type of DWMC-TV?
CREATE TABLE table_2610582_3 (station_type VARCHAR, callsign VARCHAR)
SELECT station_type FROM table_2610582_3 WHERE callsign = "DWMC-TV"
### Context: CREATE TABLE table_2610582_3 (station_type VARCHAR, callsign VARCHAR) ### Question: What is the station type of DWMC-TV? ### Answer: SELECT station_type FROM table_2610582_3 WHERE callsign = "DWMC-TV"
What is the location that has a power of 5kw (10kw ERP)?
CREATE TABLE table_2610582_3 (location__transmitter_site_ VARCHAR, power_kw__erp_ VARCHAR)
SELECT location__transmitter_site_ FROM table_2610582_3 WHERE power_kw__erp_ = "5kW (10kW ERP)"
### Context: CREATE TABLE table_2610582_3 (location__transmitter_site_ VARCHAR, power_kw__erp_ VARCHAR) ### Question: What is the location that has a power of 5kw (10kw ERP)? ### Answer: SELECT location__transmitter_site_ FROM table_2610582_3 WHERE power_kw__erp_ = "5kW (10kW ERP)"
What is the power, in kW, of channel TV-23, callsign DYCG-TV?
CREATE TABLE table_2610582_3 (power_kw__erp_ VARCHAR, ch__number VARCHAR, callsign VARCHAR)
SELECT power_kw__erp_ FROM table_2610582_3 WHERE ch__number = "TV-23" AND callsign = "DYCG-TV"
### Context: CREATE TABLE table_2610582_3 (power_kw__erp_ VARCHAR, ch__number VARCHAR, callsign VARCHAR) ### Question: What is the power, in kW, of channel TV-23, callsign DYCG-TV? ### Answer: SELECT power_kw__erp_ FROM table_2610582_3 WHERE ch__number = "TV-23" AND callsign = "DYCG-TV"
What's the power for General Santos?
CREATE TABLE table_2610582_7 (power__kw_ VARCHAR, location VARCHAR)
SELECT power__kw_ FROM table_2610582_7 WHERE location = "General Santos"
### Context: CREATE TABLE table_2610582_7 (power__kw_ VARCHAR, location VARCHAR) ### Question: What's the power for General Santos? ### Answer: SELECT power__kw_ FROM table_2610582_7 WHERE location = "General Santos"
What bran is the callsign dytc-fm?
CREATE TABLE table_2610582_7 (branding VARCHAR, callsign VARCHAR)
SELECT branding FROM table_2610582_7 WHERE callsign = "DYTC-FM"
### Context: CREATE TABLE table_2610582_7 (branding VARCHAR, callsign VARCHAR) ### Question: What bran is the callsign dytc-fm? ### Answer: SELECT branding FROM table_2610582_7 WHERE callsign = "DYTC-FM"
What frequency is dxec-fm?
CREATE TABLE table_2610582_7 (frequency VARCHAR, callsign VARCHAR)
SELECT frequency FROM table_2610582_7 WHERE callsign = "DXEC-FM"
### Context: CREATE TABLE table_2610582_7 (frequency VARCHAR, callsign VARCHAR) ### Question: What frequency is dxec-fm? ### Answer: SELECT frequency FROM table_2610582_7 WHERE callsign = "DXEC-FM"
Who was the opponent when there was 117 rushing yards?
CREATE TABLE table_26108103_2 (opponent VARCHAR, rushing_yards VARCHAR)
SELECT opponent FROM table_26108103_2 WHERE rushing_yards = 117
### Context: CREATE TABLE table_26108103_2 (opponent VARCHAR, rushing_yards VARCHAR) ### Question: Who was the opponent when there was 117 rushing yards? ### Answer: SELECT opponent FROM table_26108103_2 WHERE rushing_yards = 117
What was the earliest year?
CREATE TABLE table_26108103_2 (year INTEGER)
SELECT MIN(year) FROM table_26108103_2
### Context: CREATE TABLE table_26108103_2 (year INTEGER) ### Question: What was the earliest year? ### Answer: SELECT MIN(year) FROM table_26108103_2
Who was the opponent when there was 81 rushing yards?
CREATE TABLE table_26108103_2 (opponent VARCHAR, rushing_yards VARCHAR)
SELECT opponent FROM table_26108103_2 WHERE rushing_yards = 81
### Context: CREATE TABLE table_26108103_2 (opponent VARCHAR, rushing_yards VARCHAR) ### Question: Who was the opponent when there was 81 rushing yards? ### Answer: SELECT opponent FROM table_26108103_2 WHERE rushing_yards = 81
How many rushing yards where there when the opponent was Indiana and there was 503 passing yards?
CREATE TABLE table_26108103_2 (rushing_yards VARCHAR, opponent VARCHAR, passing_yards VARCHAR)
SELECT rushing_yards FROM table_26108103_2 WHERE opponent = "Indiana" AND passing_yards = 503
### Context: CREATE TABLE table_26108103_2 (rushing_yards VARCHAR, opponent VARCHAR, passing_yards VARCHAR) ### Question: How many rushing yards where there when the opponent was Indiana and there was 503 passing yards? ### Answer: SELECT rushing_yards FROM table_26108103_2 WHERE opponent = "Indiana" AND passing_yards = 503
Who was the opponent when Devin Gardner was the player?
CREATE TABLE table_26108103_2 (opponent VARCHAR, player VARCHAR)
SELECT opponent FROM table_26108103_2 WHERE player = "Devin Gardner"
### Context: CREATE TABLE table_26108103_2 (opponent VARCHAR, player VARCHAR) ### Question: Who was the opponent when Devin Gardner was the player? ### Answer: SELECT opponent FROM table_26108103_2 WHERE player = "Devin Gardner"
How many points were scored on pole services?
CREATE TABLE table_26124171_1 (points VARCHAR, team VARCHAR)
SELECT points FROM table_26124171_1 WHERE team = "Pole Services"
### Context: CREATE TABLE table_26124171_1 (points VARCHAR, team VARCHAR) ### Question: How many points were scored on pole services? ### Answer: SELECT points FROM table_26124171_1 WHERE team = "Pole Services"
How many teams were in the series championnat de france formula renault 2.0?
CREATE TABLE table_26124171_1 (team VARCHAR, series VARCHAR)
SELECT team FROM table_26124171_1 WHERE series = "Championnat de France Formula Renault 2.0"
### Context: CREATE TABLE table_26124171_1 (team VARCHAR, series VARCHAR) ### Question: How many teams were in the series championnat de france formula renault 2.0? ### Answer: SELECT team FROM table_26124171_1 WHERE series = "Championnat de France Formula Renault 2.0"
What is the area (km2) for the place with a 2010 population of 153085?
CREATE TABLE table_261222_1 (area__km_2__ VARCHAR, population__2010_ VARCHAR)
SELECT area__km_2__ FROM table_261222_1 WHERE population__2010_ = 153085
### Context: CREATE TABLE table_261222_1 (area__km_2__ VARCHAR, population__2010_ VARCHAR) ### Question: What is the area (km2) for the place with a 2010 population of 153085? ### Answer: SELECT area__km_2__ FROM table_261222_1 WHERE population__2010_ = 153085
How many city/municipalties have an area (km2) of 506.64?
CREATE TABLE table_261222_1 (city___municipality VARCHAR, area__km_2__ VARCHAR)
SELECT COUNT(city___municipality) FROM table_261222_1 WHERE area__km_2__ = "506.64"
### Context: CREATE TABLE table_261222_1 (city___municipality VARCHAR, area__km_2__ VARCHAR) ### Question: How many city/municipalties have an area (km2) of 506.64? ### Answer: SELECT COUNT(city___municipality) FROM table_261222_1 WHERE area__km_2__ = "506.64"
How many places have an area of 409.41 (km2)?
CREATE TABLE table_261222_1 (population__2010_ VARCHAR, area__km_2__ VARCHAR)
SELECT COUNT(population__2010_) FROM table_261222_1 WHERE area__km_2__ = "409.41"
### Context: CREATE TABLE table_261222_1 (population__2010_ VARCHAR, area__km_2__ VARCHAR) ### Question: How many places have an area of 409.41 (km2)? ### Answer: SELECT COUNT(population__2010_) FROM table_261222_1 WHERE area__km_2__ = "409.41"
What day was kibawe created?
CREATE TABLE table_261222_1 (date_of_creation VARCHAR, city___municipality VARCHAR)
SELECT date_of_creation FROM table_261222_1 WHERE city___municipality = "Kibawe"
### Context: CREATE TABLE table_261222_1 (date_of_creation VARCHAR, city___municipality VARCHAR) ### Question: What day was kibawe created? ### Answer: SELECT date_of_creation FROM table_261222_1 WHERE city___municipality = "Kibawe"
How many places are named manolo fortich?
CREATE TABLE table_261222_1 (area__km_2__ VARCHAR, city___municipality VARCHAR)
SELECT COUNT(area__km_2__) FROM table_261222_1 WHERE city___municipality = "Manolo Fortich"
### Context: CREATE TABLE table_261222_1 (area__km_2__ VARCHAR, city___municipality VARCHAR) ### Question: How many places are named manolo fortich? ### Answer: SELECT COUNT(area__km_2__) FROM table_261222_1 WHERE city___municipality = "Manolo Fortich"
Dallas Burn's draft pick was which position?
CREATE TABLE table_26141160_2 (position VARCHAR, team VARCHAR)
SELECT position FROM table_26141160_2 WHERE team = "Dallas Burn"
### Context: CREATE TABLE table_26141160_2 (position VARCHAR, team VARCHAR) ### Question: Dallas Burn's draft pick was which position? ### Answer: SELECT position FROM table_26141160_2 WHERE team = "Dallas Burn"
Who wrote the episode that had 1.08 million U.S. viewers?
CREATE TABLE table_26136228_3 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT written_by FROM table_26136228_3 WHERE us_viewers__millions_ = "1.08"
### Context: CREATE TABLE table_26136228_3 (written_by VARCHAR, us_viewers__millions_ VARCHAR) ### Question: Who wrote the episode that had 1.08 million U.S. viewers? ### Answer: SELECT written_by FROM table_26136228_3 WHERE us_viewers__millions_ = "1.08"
Who directed episode 11 in the series?
CREATE TABLE table_26136228_3 (directed_by VARCHAR, series_no VARCHAR)
SELECT directed_by FROM table_26136228_3 WHERE series_no = 11
### Context: CREATE TABLE table_26136228_3 (directed_by VARCHAR, series_no VARCHAR) ### Question: Who directed episode 11 in the series? ### Answer: SELECT directed_by FROM table_26136228_3 WHERE series_no = 11
What episode number in the season had 1.05 million U.S. viewers?
CREATE TABLE table_26136228_3 (episode_no INTEGER, us_viewers__millions_ VARCHAR)
SELECT MAX(episode_no) FROM table_26136228_3 WHERE us_viewers__millions_ = "1.05"
### Context: CREATE TABLE table_26136228_3 (episode_no INTEGER, us_viewers__millions_ VARCHAR) ### Question: What episode number in the season had 1.05 million U.S. viewers? ### Answer: SELECT MAX(episode_no) FROM table_26136228_3 WHERE us_viewers__millions_ = "1.05"
What is the name of the episode that had 8.51 million viewers?
CREATE TABLE table_26139405_1 (title VARCHAR, viewers__in_millions_ VARCHAR)
SELECT title FROM table_26139405_1 WHERE viewers__in_millions_ = "8.51"
### Context: CREATE TABLE table_26139405_1 (title VARCHAR, viewers__in_millions_ VARCHAR) ### Question: What is the name of the episode that had 8.51 million viewers? ### Answer: SELECT title FROM table_26139405_1 WHERE viewers__in_millions_ = "8.51"
Who wrote episode 26 in the series?
CREATE TABLE table_26139405_1 (writer VARCHAR, episode__number VARCHAR)
SELECT writer FROM table_26139405_1 WHERE episode__number = 26
### Context: CREATE TABLE table_26139405_1 (writer VARCHAR, episode__number VARCHAR) ### Question: Who wrote episode 26 in the series? ### Answer: SELECT writer FROM table_26139405_1 WHERE episode__number = 26
What is the g (μs/km)when the frequency (hz) is 100k?
CREATE TABLE table_261642_3 (g__μs_km_ VARCHAR, frequency__hz_ VARCHAR)
SELECT g__μs_km_ FROM table_261642_3 WHERE frequency__hz_ = "100k"
### Context: CREATE TABLE table_261642_3 (g__μs_km_ VARCHAR, frequency__hz_ VARCHAR) ### Question: What is the g (μs/km)when the frequency (hz) is 100k? ### Answer: SELECT g__μs_km_ FROM table_261642_3 WHERE frequency__hz_ = "100k"
What is the r (ω/km) when the frequency is 10k?
CREATE TABLE table_261642_3 (r__ω_km_ VARCHAR, frequency__hz_ VARCHAR)
SELECT r__ω_km_ FROM table_261642_3 WHERE frequency__hz_ = "10k"
### Context: CREATE TABLE table_261642_3 (r__ω_km_ VARCHAR, frequency__hz_ VARCHAR) ### Question: What is the r (ω/km) when the frequency is 10k? ### Answer: SELECT r__ω_km_ FROM table_261642_3 WHERE frequency__hz_ = "10k"
What is the c (nf/km) when the r (ω/km) is 463.59?
CREATE TABLE table_261642_3 (c__nf_km_ VARCHAR, r__ω_km_ VARCHAR)
SELECT c__nf_km_ FROM table_261642_3 WHERE r__ω_km_ = "463.59"
### Context: CREATE TABLE table_261642_3 (c__nf_km_ VARCHAR, r__ω_km_ VARCHAR) ### Question: What is the c (nf/km) when the r (ω/km) is 463.59? ### Answer: SELECT c__nf_km_ FROM table_261642_3 WHERE r__ω_km_ = "463.59"
what is the c (nf/km) when the l (mh/km) is 0.6099?
CREATE TABLE table_261642_3 (c__nf_km_ VARCHAR, l__mh_km_ VARCHAR)
SELECT c__nf_km_ FROM table_261642_3 WHERE l__mh_km_ = "0.6099"
### Context: CREATE TABLE table_261642_3 (c__nf_km_ VARCHAR, l__mh_km_ VARCHAR) ### Question: what is the c (nf/km) when the l (mh/km) is 0.6099? ### Answer: SELECT c__nf_km_ FROM table_261642_3 WHERE l__mh_km_ = "0.6099"
what is the frequency (hz) when the g (μs/km) is 53.205?
CREATE TABLE table_261642_3 (frequency__hz_ VARCHAR, g__μs_km_ VARCHAR)
SELECT frequency__hz_ FROM table_261642_3 WHERE g__μs_km_ = "53.205"
### Context: CREATE TABLE table_261642_3 (frequency__hz_ VARCHAR, g__μs_km_ VARCHAR) ### Question: what is the frequency (hz) when the g (μs/km) is 53.205? ### Answer: SELECT frequency__hz_ FROM table_261642_3 WHERE g__μs_km_ = "53.205"
In the country United Arab Emirates, what is the number of imports?
CREATE TABLE table_26160007_1 (imports VARCHAR, country VARCHAR)
SELECT imports FROM table_26160007_1 WHERE country = "United Arab Emirates"
### Context: CREATE TABLE table_26160007_1 (imports VARCHAR, country VARCHAR) ### Question: In the country United Arab Emirates, what is the number of imports? ### Answer: SELECT imports FROM table_26160007_1 WHERE country = "United Arab Emirates"
Where the number of exports are 6,099.06, what is the total trade?
CREATE TABLE table_26160007_1 (total_trade VARCHAR, exports VARCHAR)
SELECT total_trade FROM table_26160007_1 WHERE exports = "6,099.06"
### Context: CREATE TABLE table_26160007_1 (total_trade VARCHAR, exports VARCHAR) ### Question: Where the number of exports are 6,099.06, what is the total trade? ### Answer: SELECT total_trade FROM table_26160007_1 WHERE exports = "6,099.06"
In which country are there 1,278.13 exports?
CREATE TABLE table_26160007_1 (country VARCHAR, exports VARCHAR)
SELECT country FROM table_26160007_1 WHERE exports = "1,278.13"
### Context: CREATE TABLE table_26160007_1 (country VARCHAR, exports VARCHAR) ### Question: In which country are there 1,278.13 exports? ### Answer: SELECT country FROM table_26160007_1 WHERE exports = "1,278.13"
Where the total trade is 14,954.86, what are the exports?
CREATE TABLE table_26160007_1 (exports VARCHAR, total_trade VARCHAR)
SELECT exports FROM table_26160007_1 WHERE total_trade = "14,954.86"
### Context: CREATE TABLE table_26160007_1 (exports VARCHAR, total_trade VARCHAR) ### Question: Where the total trade is 14,954.86, what are the exports? ### Answer: SELECT exports FROM table_26160007_1 WHERE total_trade = "14,954.86"
In the country Switzerland, what is the total trade?
CREATE TABLE table_26160007_1 (total_trade VARCHAR, country VARCHAR)
SELECT total_trade FROM table_26160007_1 WHERE country = "Switzerland"
### Context: CREATE TABLE table_26160007_1 (total_trade VARCHAR, country VARCHAR) ### Question: In the country Switzerland, what is the total trade? ### Answer: SELECT total_trade FROM table_26160007_1 WHERE country = "Switzerland"
Where the exports is 13,608.65, what is the total trade?
CREATE TABLE table_26160007_1 (total_trade VARCHAR, exports VARCHAR)
SELECT total_trade FROM table_26160007_1 WHERE exports = "13,608.65"
### Context: CREATE TABLE table_26160007_1 (total_trade VARCHAR, exports VARCHAR) ### Question: Where the exports is 13,608.65, what is the total trade? ### Answer: SELECT total_trade FROM table_26160007_1 WHERE exports = "13,608.65"
What is the location for tournament on Jul 8-11?
CREATE TABLE table_26144632_1 (location VARCHAR, dates VARCHAR)
SELECT location FROM table_26144632_1 WHERE dates = "Jul 8-11"
### Context: CREATE TABLE table_26144632_1 (location VARCHAR, dates VARCHAR) ### Question: What is the location for tournament on Jul 8-11? ### Answer: SELECT location FROM table_26144632_1 WHERE dates = "Jul 8-11"
What is the date of the tournament at Hokkaidō with prize of ¥150000000?
CREATE TABLE table_26144632_1 (dates VARCHAR, location VARCHAR, prize_fund___¥__ VARCHAR)
SELECT dates FROM table_26144632_1 WHERE location = "Hokkaidō" AND prize_fund___¥__ = 150000000
### Context: CREATE TABLE table_26144632_1 (dates VARCHAR, location VARCHAR, prize_fund___¥__ VARCHAR) ### Question: What is the date of the tournament at Hokkaidō with prize of ¥150000000? ### Answer: SELECT dates FROM table_26144632_1 WHERE location = "Hokkaidō" AND prize_fund___¥__ = 150000000
What is the prize for the tournament at Ibaraki?
CREATE TABLE table_26144632_1 (prize_fund___¥__ VARCHAR, location VARCHAR)
SELECT prize_fund___¥__ FROM table_26144632_1 WHERE location = "Ibaraki"
### Context: CREATE TABLE table_26144632_1 (prize_fund___¥__ VARCHAR, location VARCHAR) ### Question: What is the prize for the tournament at Ibaraki? ### Answer: SELECT prize_fund___¥__ FROM table_26144632_1 WHERE location = "Ibaraki"
How many titles are there for the original air date April 3, 2012?
CREATE TABLE table_26150013_1 (title VARCHAR, original_air_date VARCHAR)
SELECT COUNT(title) FROM table_26150013_1 WHERE original_air_date = "April 3, 2012"
### Context: CREATE TABLE table_26150013_1 (title VARCHAR, original_air_date VARCHAR) ### Question: How many titles are there for the original air date April 3, 2012? ### Answer: SELECT COUNT(title) FROM table_26150013_1 WHERE original_air_date = "April 3, 2012"
What are all of the area where distance is marathon and month held is february
CREATE TABLE table_26166836_2 (location VARCHAR, distance VARCHAR, month_held VARCHAR)
SELECT location FROM table_26166836_2 WHERE distance = "Marathon" AND month_held = "February"
### Context: CREATE TABLE table_26166836_2 (location VARCHAR, distance VARCHAR, month_held VARCHAR) ### Question: What are all of the area where distance is marathon and month held is february ### Answer: SELECT location FROM table_26166836_2 WHERE distance = "Marathon" AND month_held = "February"
What's the whole range of united states where road race is ottawa marathon
CREATE TABLE table_26166836_2 (country VARCHAR, road_race VARCHAR)
SELECT COUNT(country) FROM table_26166836_2 WHERE road_race = "Ottawa Marathon"
### Context: CREATE TABLE table_26166836_2 (country VARCHAR, road_race VARCHAR) ### Question: What's the whole range of united states where road race is ottawa marathon ### Answer: SELECT COUNT(country) FROM table_26166836_2 WHERE road_race = "Ottawa Marathon"
What race is held in Germany in the month of May?
CREATE TABLE table_26166836_3 (road_race VARCHAR, country VARCHAR, month_held VARCHAR)
SELECT road_race FROM table_26166836_3 WHERE country = "Germany" AND month_held = "May"
### Context: CREATE TABLE table_26166836_3 (road_race VARCHAR, country VARCHAR, month_held VARCHAR) ### Question: What race is held in Germany in the month of May? ### Answer: SELECT road_race FROM table_26166836_3 WHERE country = "Germany" AND month_held = "May"
How many times a year is the Brighton Marathon held?
CREATE TABLE table_26166836_3 (month_held VARCHAR, distance VARCHAR, location VARCHAR)
SELECT COUNT(month_held) FROM table_26166836_3 WHERE distance = "Marathon" AND location = "Brighton"
### Context: CREATE TABLE table_26166836_3 (month_held VARCHAR, distance VARCHAR, location VARCHAR) ### Question: How many times a year is the Brighton Marathon held? ### Answer: SELECT COUNT(month_held) FROM table_26166836_3 WHERE distance = "Marathon" AND location = "Brighton"
What month is the Paris 20k Road Race held?
CREATE TABLE table_26166836_3 (month_held VARCHAR, location VARCHAR)
SELECT month_held FROM table_26166836_3 WHERE location = "Paris"
### Context: CREATE TABLE table_26166836_3 (month_held VARCHAR, location VARCHAR) ### Question: What month is the Paris 20k Road Race held? ### Answer: SELECT month_held FROM table_26166836_3 WHERE location = "Paris"
How many times a year is the Paris 20k road race held?
CREATE TABLE table_26166836_3 (month_held VARCHAR, road_race VARCHAR)
SELECT COUNT(month_held) FROM table_26166836_3 WHERE road_race = "Paris 20K"
### Context: CREATE TABLE table_26166836_3 (month_held VARCHAR, road_race VARCHAR) ### Question: How many times a year is the Paris 20k road race held? ### Answer: SELECT COUNT(month_held) FROM table_26166836_3 WHERE road_race = "Paris 20K"
What is the name of the road race held in Omsk, Russia?
CREATE TABLE table_26166836_3 (road_race VARCHAR, location VARCHAR)
SELECT road_race FROM table_26166836_3 WHERE location = "Omsk"
### Context: CREATE TABLE table_26166836_3 (road_race VARCHAR, location VARCHAR) ### Question: What is the name of the road race held in Omsk, Russia? ### Answer: SELECT road_race FROM table_26166836_3 WHERE location = "Omsk"
what is the place where the location is 2-1
CREATE TABLE table_26173058_2 (amman VARCHAR, qadisiya VARCHAR)
SELECT amman FROM table_26173058_2 WHERE qadisiya = "2-1"
### Context: CREATE TABLE table_26173058_2 (amman VARCHAR, qadisiya VARCHAR) ### Question: what is the place where the location is 2-1 ### Answer: SELECT amman FROM table_26173058_2 WHERE qadisiya = "2-1"
what is the capital where it is ramtha
CREATE TABLE table_26173058_2 (qadisiya VARCHAR, × VARCHAR)
SELECT qadisiya FROM table_26173058_2 WHERE × = "ramtha"
### Context: CREATE TABLE table_26173058_2 (qadisiya VARCHAR, × VARCHAR) ### Question: what is the capital where it is ramtha ### Answer: SELECT qadisiya FROM table_26173058_2 WHERE × = "ramtha"
what is the location where the record is 1-0
CREATE TABLE table_26173058_2 (ahli VARCHAR, ramtha VARCHAR)
SELECT ahli FROM table_26173058_2 WHERE ramtha = "1-0"
### Context: CREATE TABLE table_26173058_2 (ahli VARCHAR, ramtha VARCHAR) ### Question: what is the location where the record is 1-0 ### Answer: SELECT ahli FROM table_26173058_2 WHERE ramtha = "1-0"
what is the score where the record is 1-1
CREATE TABLE table_26173058_2 (ramtha VARCHAR, ahli VARCHAR)
SELECT ramtha FROM table_26173058_2 WHERE ahli = "1-1"
### Context: CREATE TABLE table_26173058_2 (ramtha VARCHAR, ahli VARCHAR) ### Question: what is the score where the record is 1-1 ### Answer: SELECT ramtha FROM table_26173058_2 WHERE ahli = "1-1"
what the team where the record is 1-1 and the player is 1-1
CREATE TABLE table_26173058_2 (× VARCHAR, jeel VARCHAR, ramtha VARCHAR)
SELECT × FROM table_26173058_2 WHERE jeel = "1-1" AND ramtha = "1-1"
### Context: CREATE TABLE table_26173058_2 (× VARCHAR, jeel VARCHAR, ramtha VARCHAR) ### Question: what the team where the record is 1-1 and the player is 1-1 ### Answer: SELECT × FROM table_26173058_2 WHERE jeel = "1-1" AND ramtha = "1-1"
what is the number of teams where the record is 0-1
CREATE TABLE table_26173058_2 (amman VARCHAR, wehdat VARCHAR)
SELECT COUNT(amman) FROM table_26173058_2 WHERE wehdat = "0-1"
### Context: CREATE TABLE table_26173058_2 (amman VARCHAR, wehdat VARCHAR) ### Question: what is the number of teams where the record is 0-1 ### Answer: SELECT COUNT(amman) FROM table_26173058_2 WHERE wehdat = "0-1"
Where was the istanbul marathon?
CREATE TABLE table_26166836_1 (location VARCHAR, road_race VARCHAR)
SELECT location FROM table_26166836_1 WHERE road_race = "Istanbul Marathon"
### Context: CREATE TABLE table_26166836_1 (location VARCHAR, road_race VARCHAR) ### Question: Where was the istanbul marathon? ### Answer: SELECT location FROM table_26166836_1 WHERE road_race = "Istanbul Marathon"
How long was the great manchester run?
CREATE TABLE table_26166836_1 (distance VARCHAR, road_race VARCHAR)
SELECT distance FROM table_26166836_1 WHERE road_race = "Great Manchester Run"
### Context: CREATE TABLE table_26166836_1 (distance VARCHAR, road_race VARCHAR) ### Question: How long was the great manchester run? ### Answer: SELECT distance FROM table_26166836_1 WHERE road_race = "Great Manchester Run"
In which country was the xiamen international marathon?
CREATE TABLE table_26166836_1 (country VARCHAR, road_race VARCHAR)
SELECT country FROM table_26166836_1 WHERE road_race = "Xiamen International Marathon"
### Context: CREATE TABLE table_26166836_1 (country VARCHAR, road_race VARCHAR) ### Question: In which country was the xiamen international marathon? ### Answer: SELECT country FROM table_26166836_1 WHERE road_race = "Xiamen International Marathon"
In which city was the berlin marathon?
CREATE TABLE table_26166836_1 (location VARCHAR, road_race VARCHAR)
SELECT location FROM table_26166836_1 WHERE road_race = "Berlin Marathon"
### Context: CREATE TABLE table_26166836_1 (location VARCHAR, road_race VARCHAR) ### Question: In which city was the berlin marathon? ### Answer: SELECT location FROM table_26166836_1 WHERE road_race = "Berlin Marathon"
How many races were in fukuoka, japan?
CREATE TABLE table_26166836_1 (road_race VARCHAR, country VARCHAR, location VARCHAR)
SELECT COUNT(road_race) FROM table_26166836_1 WHERE country = "Japan" AND location = "Fukuoka"
### Context: CREATE TABLE table_26166836_1 (road_race VARCHAR, country VARCHAR, location VARCHAR) ### Question: How many races were in fukuoka, japan? ### Answer: SELECT COUNT(road_race) FROM table_26166836_1 WHERE country = "Japan" AND location = "Fukuoka"
How many times is the vessel operator canadian coast guard?
CREATE TABLE table_26168687_3 (no_in_series VARCHAR, vessel_operator VARCHAR)
SELECT COUNT(no_in_series) FROM table_26168687_3 WHERE vessel_operator = "Canadian Coast Guard"
### Context: CREATE TABLE table_26168687_3 (no_in_series VARCHAR, vessel_operator VARCHAR) ### Question: How many times is the vessel operator canadian coast guard? ### Answer: SELECT COUNT(no_in_series) FROM table_26168687_3 WHERE vessel_operator = "Canadian Coast Guard"
What is the vessel type for vessel operator Jumbo shipping?
CREATE TABLE table_26168687_3 (vessel_type VARCHAR, vessel_operator VARCHAR)
SELECT vessel_type FROM table_26168687_3 WHERE vessel_operator = "Jumbo Shipping"
### Context: CREATE TABLE table_26168687_3 (vessel_type VARCHAR, vessel_operator VARCHAR) ### Question: What is the vessel type for vessel operator Jumbo shipping? ### Answer: SELECT vessel_type FROM table_26168687_3 WHERE vessel_operator = "Jumbo Shipping"
Who narrated when the vessel operator is de beers?
CREATE TABLE table_26168687_3 (narrated_by VARCHAR, vessel_operator VARCHAR)
SELECT narrated_by FROM table_26168687_3 WHERE vessel_operator = "De Beers"
### Context: CREATE TABLE table_26168687_3 (narrated_by VARCHAR, vessel_operator VARCHAR) ### Question: Who narrated when the vessel operator is de beers? ### Answer: SELECT narrated_by FROM table_26168687_3 WHERE vessel_operator = "De Beers"
How many episodes had the production code 66210?
CREATE TABLE table_2618061_1 (no_in_series VARCHAR, production_code VARCHAR)
SELECT COUNT(no_in_series) FROM table_2618061_1 WHERE production_code = 66210
### Context: CREATE TABLE table_2618061_1 (no_in_series VARCHAR, production_code VARCHAR) ### Question: How many episodes had the production code 66210? ### Answer: SELECT COUNT(no_in_series) FROM table_2618061_1 WHERE production_code = 66210
How many episodes were directed by james quinn?
CREATE TABLE table_2618061_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT COUNT(written_by) FROM table_2618061_1 WHERE directed_by = "James Quinn"
### Context: CREATE TABLE table_2618061_1 (written_by VARCHAR, directed_by VARCHAR) ### Question: How many episodes were directed by james quinn? ### Answer: SELECT COUNT(written_by) FROM table_2618061_1 WHERE directed_by = "James Quinn"
What is the title of the episode written by daniel sackheim?
CREATE TABLE table_2618061_1 (title VARCHAR, directed_by VARCHAR)
SELECT title FROM table_2618061_1 WHERE directed_by = "Daniel Sackheim"
### Context: CREATE TABLE table_2618061_1 (title VARCHAR, directed_by VARCHAR) ### Question: What is the title of the episode written by daniel sackheim? ### Answer: SELECT title FROM table_2618061_1 WHERE directed_by = "Daniel Sackheim"
What is the lowest brup when long is 94?
CREATE TABLE table_26176081_29 (brup INTEGER, long VARCHAR)
SELECT MIN(brup) FROM table_26176081_29 WHERE long = 94
### Context: CREATE TABLE table_26176081_29 (brup INTEGER, long VARCHAR) ### Question: What is the lowest brup when long is 94? ### Answer: SELECT MIN(brup) FROM table_26176081_29 WHERE long = 94
What is the lowest gp?
CREATE TABLE table_26176081_29 (gp INTEGER)
SELECT MIN(gp) FROM table_26176081_29
### Context: CREATE TABLE table_26176081_29 (gp INTEGER) ### Question: What is the lowest gp? ### Answer: SELECT MIN(gp) FROM table_26176081_29
What is the highest ff when solo is 56?
CREATE TABLE table_26176081_29 (ff INTEGER, solo VARCHAR)
SELECT MAX(ff) FROM table_26176081_29 WHERE solo = 56
### Context: CREATE TABLE table_26176081_29 (ff INTEGER, solo VARCHAR) ### Question: What is the highest ff when solo is 56? ### Answer: SELECT MAX(ff) FROM table_26176081_29 WHERE solo = 56
What is the name when tfl-yds is 2-2?
CREATE TABLE table_26176081_29 (name VARCHAR, tfl_yds VARCHAR)
SELECT name FROM table_26176081_29 WHERE tfl_yds = "2-2"
### Context: CREATE TABLE table_26176081_29 (name VARCHAR, tfl_yds VARCHAR) ### Question: What is the name when tfl-yds is 2-2? ### Answer: SELECT name FROM table_26176081_29 WHERE tfl_yds = "2-2"
What is no-yds when no.-yds is 1-13?
CREATE TABLE table_26176081_29 (no_yds VARCHAR)
SELECT no_yds FROM table_26176081_29 WHERE no_yds = "1-13"
### Context: CREATE TABLE table_26176081_29 (no_yds VARCHAR) ### Question: What is no-yds when no.-yds is 1-13? ### Answer: SELECT no_yds FROM table_26176081_29 WHERE no_yds = "1-13"
what are the maximum f/laps?
CREATE TABLE table_26178824_1 (f_laps INTEGER)
SELECT MAX(f_laps) FROM table_26178824_1
### Context: CREATE TABLE table_26178824_1 (f_laps INTEGER) ### Question: what are the maximum f/laps? ### Answer: SELECT MAX(f_laps) FROM table_26178824_1
how many wins had series formula renault 2.0 nec and the position is 18th?
CREATE TABLE table_26178824_1 (wins VARCHAR, series VARCHAR, position VARCHAR)
SELECT wins FROM table_26178824_1 WHERE series = "Formula Renault 2.0 NEC" AND position = "18th"
### Context: CREATE TABLE table_26178824_1 (wins VARCHAR, series VARCHAR, position VARCHAR) ### Question: how many wins had series formula renault 2.0 nec and the position is 18th? ### Answer: SELECT wins FROM table_26178824_1 WHERE series = "Formula Renault 2.0 NEC" AND position = "18th"
what are the minimum poles?
CREATE TABLE table_26178824_1 (poles INTEGER)
SELECT MIN(poles) FROM table_26178824_1
### Context: CREATE TABLE table_26178824_1 (poles INTEGER) ### Question: what are the minimum poles? ### Answer: SELECT MIN(poles) FROM table_26178824_1
When was the original air date written by michael s. chernuchin & joe morgenstern?
CREATE TABLE table_2618072_1 (original_air_date VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_2618072_1 WHERE written_by = "Michael S. Chernuchin & Joe Morgenstern"
### Context: CREATE TABLE table_2618072_1 (original_air_date VARCHAR, written_by VARCHAR) ### Question: When was the original air date written by michael s. chernuchin & joe morgenstern? ### Answer: SELECT original_air_date FROM table_2618072_1 WHERE written_by = "Michael S. Chernuchin & Joe Morgenstern"
Who is the directed by when the production code is 67425?
CREATE TABLE table_2618072_1 (directed_by VARCHAR, production_code VARCHAR)
SELECT directed_by FROM table_2618072_1 WHERE production_code = 67425
### Context: CREATE TABLE table_2618072_1 (directed_by VARCHAR, production_code VARCHAR) ### Question: Who is the directed by when the production code is 67425? ### Answer: SELECT directed_by FROM table_2618072_1 WHERE production_code = 67425
How many titles have directors of matthew Penn and number in series of 143?
CREATE TABLE table_2618119_1 (title VARCHAR, directed_by VARCHAR, no_in_series VARCHAR)
SELECT COUNT(title) FROM table_2618119_1 WHERE directed_by = "Matthew Penn" AND no_in_series = 143
### Context: CREATE TABLE table_2618119_1 (title VARCHAR, directed_by VARCHAR, no_in_series VARCHAR) ### Question: How many titles have directors of matthew Penn and number in series of 143? ### Answer: SELECT COUNT(title) FROM table_2618119_1 WHERE directed_by = "Matthew Penn" AND no_in_series = 143
How many numbers in series were for the number in season of 8?
CREATE TABLE table_2618119_1 (no_in_series VARCHAR, no_in_season VARCHAR)
SELECT COUNT(no_in_series) FROM table_2618119_1 WHERE no_in_season = 8
### Context: CREATE TABLE table_2618119_1 (no_in_series VARCHAR, no_in_season VARCHAR) ### Question: How many numbers in series were for the number in season of 8? ### Answer: SELECT COUNT(no_in_series) FROM table_2618119_1 WHERE no_in_season = 8
Who directed k0122?
CREATE TABLE table_2618113_1 (directed_by VARCHAR, production_code VARCHAR)
SELECT directed_by FROM table_2618113_1 WHERE production_code = "K0122"
### Context: CREATE TABLE table_2618113_1 (directed_by VARCHAR, production_code VARCHAR) ### Question: Who directed k0122? ### Answer: SELECT directed_by FROM table_2618113_1 WHERE production_code = "K0122"
Which season had k0104?
CREATE TABLE table_2618113_1 (no_in_season INTEGER, production_code VARCHAR)
SELECT MAX(no_in_season) FROM table_2618113_1 WHERE production_code = "K0104"
### Context: CREATE TABLE table_2618113_1 (no_in_season INTEGER, production_code VARCHAR) ### Question: Which season had k0104? ### Answer: SELECT MAX(no_in_season) FROM table_2618113_1 WHERE production_code = "K0104"
What was the airdate of k0120?
CREATE TABLE table_2618113_1 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_2618113_1 WHERE production_code = "K0120"
### Context: CREATE TABLE table_2618113_1 (original_air_date VARCHAR, production_code VARCHAR) ### Question: What was the airdate of k0120? ### Answer: SELECT original_air_date FROM table_2618113_1 WHERE production_code = "K0120"