Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
6,300 |
<question>: What was the elimination number of the fighter who fought within 26:15? <context>: CREATE TABLE table_18598175_2 (elimination_number INTEGER, time VARCHAR)
|
SELECT MAX(elimination_number) FROM table_18598175_2 WHERE time = "26:15"
|
6,301 |
<question>: what is the longitude in 35.992 sqmi <context>: CREATE TABLE table_18600760_2 (longitude VARCHAR, land___sqmi__ VARCHAR)
|
SELECT longitude FROM table_18600760_2 WHERE land___sqmi__ = "35.992"
|
6,302 |
<question>: how many townships where pop (2010) and ater is 0.818 <context>: CREATE TABLE table_18600760_2 (pop__2010_ VARCHAR, water__sqmi_ VARCHAR)
|
SELECT COUNT(pop__2010_) FROM table_18600760_2 WHERE water__sqmi_ = "0.818"
|
6,303 |
<question>: what is the name of the townships with 32.222 land <context>: CREATE TABLE table_18600760_19 (township VARCHAR, land___sqmi__ VARCHAR)
|
SELECT township FROM table_18600760_19 WHERE land___sqmi__ = "32.222"
|
6,304 |
<question>: how many lands with longitude of -100.895783 are? <context>: CREATE TABLE table_18600760_19 (land___sqmi__ VARCHAR, longitude VARCHAR)
|
SELECT COUNT(land___sqmi__) FROM table_18600760_19 WHERE longitude = "-100.895783"
|
6,305 |
<question>: how many geo id with 48.578664 are <context>: CREATE TABLE table_18600760_19 (geo_id VARCHAR, latitude VARCHAR)
|
SELECT COUNT(geo_id) FROM table_18600760_19 WHERE latitude = "48.578664"
|
6,306 |
<question>: what is the latitude in the township where wate is 0.288 <context>: CREATE TABLE table_18600760_19 (latitude VARCHAR, water__sqmi_ VARCHAR)
|
SELECT latitude FROM table_18600760_19 WHERE water__sqmi_ = "0.288"
|
6,307 |
<question>: how is called the township where the latitude is 47.377790 <context>: CREATE TABLE table_18600760_19 (township VARCHAR, latitude VARCHAR)
|
SELECT township FROM table_18600760_19 WHERE latitude = "47.377790"
|
6,308 |
<question>: where the land is 35.990 what is the number of the geo id <context>: CREATE TABLE table_18600760_19 (geo_id VARCHAR, land___sqmi__ VARCHAR)
|
SELECT geo_id FROM table_18600760_19 WHERE land___sqmi__ = "35.990"
|
6,309 |
<question>: Name the land where geo id is 3807717980 <context>: CREATE TABLE table_18600760_4 (land___sqmi__ VARCHAR, geo_id VARCHAR)
|
SELECT land___sqmi__ FROM table_18600760_4 WHERE geo_id = 3807717980
|
6,310 |
<question>: Name the latitude for deer lake <context>: CREATE TABLE table_18600760_4 (latitude VARCHAR, township VARCHAR)
|
SELECT latitude FROM table_18600760_4 WHERE township = "Deer Lake"
|
6,311 |
<question>: If the water square milage is 1.701, what is the land square milage? <context>: CREATE TABLE table_18600760_7 (land___sqmi__ VARCHAR, water__sqmi_ VARCHAR)
|
SELECT land___sqmi__ FROM table_18600760_7 WHERE water__sqmi_ = "1.701"
|
6,312 |
<question>: In Cavalier County and the geo id is larger than 3801931620.0, what is the population? <context>: CREATE TABLE table_18600760_7 (pop__2010_ VARCHAR, county VARCHAR, geo_id VARCHAR)
|
SELECT pop__2010_ FROM table_18600760_7 WHERE county = "Cavalier" AND geo_id > 3801931620.0
|
6,313 |
<question>: If the population is 1858, what is the maximum ansi code? <context>: CREATE TABLE table_18600760_7 (ansi_code INTEGER, pop__2010_ VARCHAR)
|
SELECT MAX(ansi_code) FROM table_18600760_7 WHERE pop__2010_ = 1858
|
6,314 |
<question>: If the longitude is -97.473110, what is the minimum geo id? <context>: CREATE TABLE table_18600760_7 (geo_id INTEGER, longitude VARCHAR)
|
SELECT MIN(geo_id) FROM table_18600760_7 WHERE longitude = "-97.473110"
|
6,315 |
<question>: If the ansi code is 1036632, what is the name of the township? <context>: CREATE TABLE table_18600760_7 (township VARCHAR, ansi_code VARCHAR)
|
SELECT township FROM table_18600760_7 WHERE ansi_code = 1036632
|
6,316 |
<question>: If the land square milage is 10.950, what is the longitude? <context>: CREATE TABLE table_18600760_7 (longitude VARCHAR, land___sqmi__ VARCHAR)
|
SELECT longitude FROM table_18600760_7 WHERE land___sqmi__ = "10.950"
|
6,317 |
<question>: What township is located at longitude -99.287270? <context>: CREATE TABLE table_18600760_9 (township VARCHAR, longitude VARCHAR)
|
SELECT township FROM table_18600760_9 WHERE longitude = "-99.287270"
|
6,318 |
<question>: What is the longitude of the township at ANSI code 1759682? <context>: CREATE TABLE table_18600760_9 (longitude VARCHAR, ansi_code VARCHAR)
|
SELECT longitude FROM table_18600760_9 WHERE ansi_code = 1759682
|
6,319 |
<question>: How many square miles of water does the township at latitude 48.064751 have? <context>: CREATE TABLE table_18600760_9 (water__sqmi_ VARCHAR, latitude VARCHAR)
|
SELECT water__sqmi_ FROM table_18600760_9 WHERE latitude = "48.064751"
|
6,320 |
<question>: What is the geo code of the township with ANSI code 1759243? <context>: CREATE TABLE table_18600760_9 (geo_id VARCHAR, ansi_code VARCHAR)
|
SELECT geo_id FROM table_18600760_9 WHERE ansi_code = 1759243
|
6,321 |
<question>: When santiago del estero is the hometown who is the contestant? <context>: CREATE TABLE table_18626383_2 (contestant VARCHAR, hometown VARCHAR)
|
SELECT contestant FROM table_18626383_2 WHERE hometown = "Santiago del Estero"
|
6,322 |
<question>: When belarus is the country what is the hometown? <context>: CREATE TABLE table_18626383_2 (hometown VARCHAR, country VARCHAR)
|
SELECT hometown FROM table_18626383_2 WHERE country = "Belarus"
|
6,323 |
<question>: When bahamas is the country what is the height in centimeters? <context>: CREATE TABLE table_18626383_2 (height__cm_ VARCHAR, country VARCHAR)
|
SELECT height__cm_ FROM table_18626383_2 WHERE country = "Bahamas"
|
6,324 |
<question>: When finland is the country how many hometowns are there? <context>: CREATE TABLE table_18626383_2 (hometown VARCHAR, country VARCHAR)
|
SELECT COUNT(hometown) FROM table_18626383_2 WHERE country = "Finland"
|
6,325 |
<question>: When johannesburg is the hometown who is the contestant? <context>: CREATE TABLE table_18626383_2 (contestant VARCHAR, hometown VARCHAR)
|
SELECT contestant FROM table_18626383_2 WHERE hometown = "Johannesburg"
|
6,326 |
<question>: When valora roucek is the contestant how many heights in centimeters are there? <context>: CREATE TABLE table_18626383_2 (height__cm_ VARCHAR, contestant VARCHAR)
|
SELECT COUNT(height__cm_) FROM table_18626383_2 WHERE contestant = "Valora Roucek"
|
6,327 |
<question>: Name the round 1 for team event <context>: CREATE TABLE table_18646111_13 (round_1 VARCHAR, event VARCHAR)
|
SELECT round_1 FROM table_18646111_13 WHERE event = "Team"
|
6,328 |
<question>: Name the number of semifinals for tt2 <context>: CREATE TABLE table_18646111_13 (semifinals VARCHAR, class VARCHAR)
|
SELECT COUNT(semifinals) FROM table_18646111_13 WHERE class = "TT2"
|
6,329 |
<question>: Name the 1/8 finals for round 1 n/a <context>: CREATE TABLE table_18646111_13 (round_1 VARCHAR)
|
SELECT 1 AS _8_finals FROM table_18646111_13 WHERE round_1 = "N/A"
|
6,330 |
<question>: Name the total number of round 3 for class tt1 <context>: CREATE TABLE table_18646111_13 (round_3 VARCHAR, class VARCHAR)
|
SELECT COUNT(round_3) FROM table_18646111_13 WHERE class = "TT1"
|
6,331 |
<question>: Name the event for hans ruep <context>: CREATE TABLE table_18646111_13 (event VARCHAR, athlete VARCHAR)
|
SELECT event FROM table_18646111_13 WHERE athlete = "Hans Ruep"
|
6,332 |
<question>: When 4 is the v-band what is the overall amount of ka-bands? <context>: CREATE TABLE table_186468_1 (ka_band VARCHAR, v_band VARCHAR)
|
SELECT COUNT(ka_band) FROM table_186468_1 WHERE v_band = "4"
|
6,333 |
<question>: When 8.3 is the q-band what is the property? <context>: CREATE TABLE table_186468_1 (property VARCHAR, q_band VARCHAR)
|
SELECT property FROM table_186468_1 WHERE q_band = "8.3"
|
6,334 |
<question>: When 5.5 is the l-band what is the v-band? <context>: CREATE TABLE table_186468_1 (v_band VARCHAR, k_band VARCHAR)
|
SELECT v_band FROM table_186468_1 WHERE k_band = "5.5"
|
6,335 |
<question>: When 2 is the k-band what is the v-band? <context>: CREATE TABLE table_186468_1 (v_band VARCHAR, k_band VARCHAR)
|
SELECT v_band FROM table_186468_1 WHERE k_band = "2"
|
6,336 |
<question>: When 2 is the ka-band how many properties are there? <context>: CREATE TABLE table_186468_1 (property VARCHAR, ka_band VARCHAR)
|
SELECT COUNT(property) FROM table_186468_1 WHERE ka_band = "2"
|
6,337 |
<question>: When olympikus is the main sponsor who is the secondary sponsor? <context>: CREATE TABLE table_187239_1 (secondary_sponsor VARCHAR, main_sponsor VARCHAR)
|
SELECT secondary_sponsor FROM table_187239_1 WHERE main_sponsor = "Olympikus"
|
6,338 |
<question>: When ale is the main sponsor who is the secondary sponsor? <context>: CREATE TABLE table_187239_1 (secondary_sponsor VARCHAR, main_sponsor VARCHAR)
|
SELECT secondary_sponsor FROM table_187239_1 WHERE main_sponsor = "Ale"
|
6,339 |
<question>: When tim brasil brokers are the minor sponsors who is the kit manufacturer? <context>: CREATE TABLE table_187239_1 (kit_manufacturer VARCHAR, minor_sponsors VARCHAR)
|
SELECT kit_manufacturer FROM table_187239_1 WHERE minor_sponsors = "Tim Brasil Brokers"
|
6,340 |
<question>: When batavo is the main sponsor and olympikus is the kit manufacturer who are the minor sponsors? <context>: CREATE TABLE table_187239_1 (minor_sponsors VARCHAR, kit_manufacturer VARCHAR, main_sponsor VARCHAR)
|
SELECT minor_sponsors FROM table_187239_1 WHERE kit_manufacturer = "Olympikus" AND main_sponsor = "Batavo"
|
6,341 |
<question>: When 2011 is the period and olympikus is the kit manufacturer how many minor sponsors are there? <context>: CREATE TABLE table_187239_1 (minor_sponsors VARCHAR, kit_manufacturer VARCHAR, period VARCHAR)
|
SELECT COUNT(minor_sponsors) FROM table_187239_1 WHERE kit_manufacturer = "Olympikus" AND period = "2011"
|
6,342 |
<question>: What season episode is written by neil thompson? <context>: CREATE TABLE table_1876825_6 (no_in_season INTEGER, written_by VARCHAR)
|
SELECT MIN(no_in_season) FROM table_1876825_6 WHERE written_by = "Neil Thompson"
|
6,343 |
<question>: What was the original air for the 06-03-521 production code? <context>: CREATE TABLE table_1876825_6 (original_air_date VARCHAR, production_code VARCHAR)
|
SELECT original_air_date FROM table_1876825_6 WHERE production_code = "06-03-521"
|
6,344 |
<question>: What episode number in the series aired on February 8, 2004? <context>: CREATE TABLE table_1876825_6 (no_in_series INTEGER, original_air_date VARCHAR)
|
SELECT MAX(no_in_series) FROM table_1876825_6 WHERE original_air_date = "February 8, 2004"
|
6,345 |
<question>: In season 5 what episode number was production 06-03-519? <context>: CREATE TABLE table_1876825_6 (no_in_season VARCHAR, production_code VARCHAR)
|
SELECT COUNT(no_in_season) FROM table_1876825_6 WHERE production_code = "06-03-519"
|
6,346 |
<question>: What was the minimum score for r2? <context>: CREATE TABLE table_18812411_3 (r2 INTEGER)
|
SELECT MIN(r2) FROM table_18812411_3
|
6,347 |
<question>: What country had a r3 at 72, by Larry Mize? <context>: CREATE TABLE table_18812411_3 (country VARCHAR, r3 VARCHAR, player VARCHAR)
|
SELECT country FROM table_18812411_3 WHERE r3 = 72 AND player = "Larry Mize"
|
6,348 |
<question>: How many times did Fiji win r1? <context>: CREATE TABLE table_18812411_3 (r1 VARCHAR, country VARCHAR)
|
SELECT COUNT(r1) FROM table_18812411_3 WHERE country = "Fiji"
|
6,349 |
<question>: How many figures are given for the Socialists in the case where the Social Democrats received 42.2%? <context>: CREATE TABLE table_1881642_1 (socialist VARCHAR, social_democratic VARCHAR)
|
SELECT COUNT(socialist) FROM table_1881642_1 WHERE social_democratic = "42.2%"
|
6,350 |
<question>: What date did the Green-Communists receive 5.7%? <context>: CREATE TABLE table_1881642_1 (date_released VARCHAR, green_communist VARCHAR)
|
SELECT date_released FROM table_1881642_1 WHERE green_communist = "5.7%"
|
6,351 |
<question>: If the PCT is 0.514, what was the minimum OTL? <context>: CREATE TABLE table_1888165_1 (Otl INTEGER, PCt VARCHAR)
|
SELECT MIN(Otl) FROM table_1888165_1 WHERE PCt = 0.514
|
6,352 |
<question>: What was the minimum OTL amount? <context>: CREATE TABLE table_1888165_1 (Otl INTEGER)
|
SELECT MIN(Otl) FROM table_1888165_1
|
6,353 |
<question>: Name the least events for japan <context>: CREATE TABLE table_18888159_1 (events INTEGER, country VARCHAR)
|
SELECT MIN(events) FROM table_18888159_1 WHERE country = "Japan"
|
6,354 |
<question>: Name the country for 22 events <context>: CREATE TABLE table_18888159_1 (country VARCHAR, events VARCHAR)
|
SELECT country FROM table_18888159_1 WHERE events = 22
|
6,355 |
<question>: Name the number for fiji <context>: CREATE TABLE table_18888159_1 (_number VARCHAR, country VARCHAR)
|
SELECT _number FROM table_18888159_1 WHERE country = "Fiji"
|
6,356 |
<question>: Name the total number of points for number 6 <context>: CREATE TABLE table_18888159_1 (points VARCHAR, _number VARCHAR)
|
SELECT COUNT(points) FROM table_18888159_1 WHERE _number = 6
|
6,357 |
<question>: What is the location that had a driver named Pierre de Caters? <context>: CREATE TABLE table_18893428_1 (location VARCHAR, driver VARCHAR)
|
SELECT location FROM table_18893428_1 WHERE driver = "Pierre de Caters"
|
6,358 |
<question>: Who is the constructor for the car driven by George Heath? <context>: CREATE TABLE table_18893428_1 (constructor VARCHAR, driver VARCHAR)
|
SELECT constructor FROM table_18893428_1 WHERE driver = "George Heath"
|
6,359 |
<question>: What is the total number of drivers who have cars constructed by Mercedes-Benz? <context>: CREATE TABLE table_18893428_1 (driver VARCHAR, constructor VARCHAR)
|
SELECT COUNT(driver) FROM table_18893428_1 WHERE constructor = "Mercedes-Benz"
|
6,360 |
<question>: What is the location of the car that has a constructor of Lorraine-Dietrich? <context>: CREATE TABLE table_18893428_1 (location VARCHAR, constructor VARCHAR)
|
SELECT location FROM table_18893428_1 WHERE constructor = "Lorraine-Dietrich"
|
6,361 |
<question>: How many times did Charles Jarrott report? <context>: CREATE TABLE table_18893428_1 (report VARCHAR, driver VARCHAR)
|
SELECT COUNT(report) FROM table_18893428_1 WHERE driver = "Charles Jarrott"
|
6,362 |
<question>: Who is the driver of the entry constructed by Mercedes-Benz? <context>: CREATE TABLE table_18893428_1 (driver VARCHAR, constructor VARCHAR)
|
SELECT driver FROM table_18893428_1 WHERE constructor = "Mercedes-Benz"
|
6,363 |
<question>: What is the used (kb) when the graphics mode is 4? <context>: CREATE TABLE table_18950885_3 (used__kb_ INTEGER, graphics_mode VARCHAR)
|
SELECT MIN(used__kb_) FROM table_18950885_3 WHERE graphics_mode = 4
|
6,364 |
<question>: If graphics mode is less than 1.0, what are the char cells? <context>: CREATE TABLE table_18950885_3 (char_cells VARCHAR, graphics_mode INTEGER)
|
SELECT char_cells FROM table_18950885_3 WHERE graphics_mode < 1.0
|
6,365 |
<question>: What is the smallest converted value at number 19? <context>: CREATE TABLE table_1895522_2 (converted INTEGER, number VARCHAR)
|
SELECT MIN(converted) FROM table_1895522_2 WHERE number = "19"
|
6,366 |
<question>: Name the original title for the last metro <context>: CREATE TABLE table_18987377_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
|
SELECT original_title FROM table_18987377_1 WHERE film_title_used_in_nomination = "The Last Metro"
|
6,367 |
<question>: Name the film title for andré téchiné category:articles with hcards <context>: CREATE TABLE table_18987377_1 (film_title_used_in_nomination VARCHAR, director VARCHAR)
|
SELECT film_title_used_in_nomination FROM table_18987377_1 WHERE director = "André Téchiné Category:Articles with hCards"
|
6,368 |
<question>: Name the director for coup de torchon <context>: CREATE TABLE table_18987377_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)
|
SELECT director FROM table_18987377_1 WHERE film_title_used_in_nomination = "Coup de Torchon"
|
6,369 |
<question>: Name the film titled for marcel camus category:articles with hcards <context>: CREATE TABLE table_18987377_1 (film_title_used_in_nomination VARCHAR, director VARCHAR)
|
SELECT film_title_used_in_nomination FROM table_18987377_1 WHERE director = "Marcel Camus Category:Articles with hCards"
|
6,370 |
<question>: When cindy miranda is the name what is the home or representative town or province? <context>: CREATE TABLE table_19061741_1 (home_or_representative_town_or_province VARCHAR, name VARCHAR)
|
SELECT home_or_representative_town_or_province FROM table_19061741_1 WHERE name = "Cindy Miranda"
|
6,371 |
<question>: When nel rapiz is the name what is the status? <context>: CREATE TABLE table_19061741_1 (status VARCHAR, name VARCHAR)
|
SELECT status FROM table_19061741_1 WHERE name = "Nel Rapiz"
|
6,372 |
<question>: When day 8-36 is the duration what is the season? <context>: CREATE TABLE table_19061741_1 (season VARCHAR, duration VARCHAR)
|
SELECT season FROM table_19061741_1 WHERE duration = "Day 8-36"
|
6,373 |
<question>: When luz mcclinton is the name what is the season? <context>: CREATE TABLE table_19061741_1 (season VARCHAR, name VARCHAR)
|
SELECT season FROM table_19061741_1 WHERE name = "Luz McClinton"
|
6,374 |
<question>: When yen galagnara is the name what is the highest total days in the pbb house? <context>: CREATE TABLE table_19061741_1 (total_days_in_pbb_house INTEGER, name VARCHAR)
|
SELECT MAX(total_days_in_pbb_house) FROM table_19061741_1 WHERE name = "Yen Galagnara"
|
6,375 |
<question>: How many match numbers have team europe listed as osku palermaa? <context>: CREATE TABLE table_19072602_2 (match_no VARCHAR, team_europe VARCHAR)
|
SELECT COUNT(match_no) FROM table_19072602_2 WHERE team_europe = "Osku Palermaa"
|
6,376 |
<question>: When osku palermaa is on the europe team how many match numbers are there? <context>: CREATE TABLE table_19072602_5 (match_no VARCHAR, team_europe VARCHAR)
|
SELECT COUNT(match_no) FROM table_19072602_5 WHERE team_europe = "Osku Palermaa"
|
6,377 |
<question>: When paul moor is on the europe team who is on the usa team? <context>: CREATE TABLE table_19072602_5 (team_usa VARCHAR, team_europe VARCHAR)
|
SELECT team_usa FROM table_19072602_5 WHERE team_europe = "Paul Moor"
|
6,378 |
<question>: Name the mountains classification for team columbia <context>: CREATE TABLE table_19115414_4 (mountains_classification VARCHAR, team_classification VARCHAR)
|
SELECT mountains_classification FROM table_19115414_4 WHERE team_classification = "Team Columbia"
|
6,379 |
<question>: Name the number of stage winners for team columbia <context>: CREATE TABLE table_19115414_4 (stage__winner_ VARCHAR, team_classification VARCHAR)
|
SELECT COUNT(stage__winner_) FROM table_19115414_4 WHERE team_classification = "Team Columbia"
|
6,380 |
<question>: Name the mountains classification for alexander kristoff <context>: CREATE TABLE table_19115414_4 (mountains_classification VARCHAR, points_classification VARCHAR)
|
SELECT mountains_classification FROM table_19115414_4 WHERE points_classification = "Alexander Kristoff"
|
6,381 |
<question>: How much is the other black population when the black African population is 37811? <context>: CREATE TABLE table_19149550_7 (other_black_population INTEGER, black_african_population VARCHAR)
|
SELECT MIN(other_black_population) FROM table_19149550_7 WHERE black_african_population = 37811
|
6,382 |
<question>: Where are the london borough with the black caribbean population of 17974? <context>: CREATE TABLE table_19149550_7 (london_borough VARCHAR, black_caribbean_population VARCHAR)
|
SELECT london_borough FROM table_19149550_7 WHERE black_caribbean_population = 17974
|
6,383 |
<question>: What is the rank of london borough in southwark? <context>: CREATE TABLE table_19149550_7 (rank VARCHAR, london_borough VARCHAR)
|
SELECT rank FROM table_19149550_7 WHERE london_borough = "Southwark"
|
6,384 |
<question>: What is the black caribbean population when the other black population is 2243? <context>: CREATE TABLE table_19149550_7 (black_caribbean_population INTEGER, other_black_population VARCHAR)
|
SELECT MAX(black_caribbean_population) FROM table_19149550_7 WHERE other_black_population = 2243
|
6,385 |
<question>: What is the black caribbean population when the black African population is less than 10552.0? <context>: CREATE TABLE table_19149550_7 (black_caribbean_population INTEGER, black_african_population INTEGER)
|
SELECT MIN(black_caribbean_population) FROM table_19149550_7 WHERE black_african_population < 10552.0
|
6,386 |
<question>: What time slot had an adult rating of 0.6? <context>: CREATE TABLE table_19188562_2 (timeslot VARCHAR, rating__adults_18_49_ VARCHAR)
|
SELECT timeslot FROM table_19188562_2 WHERE rating__adults_18_49_ = "0.6"
|
6,387 |
<question>: What season finale date has 2.02 million u.s. Viewers? <context>: CREATE TABLE table_19188562_2 (season VARCHAR, us_viewers__in_millions_ VARCHAR)
|
SELECT season AS finale FROM table_19188562_2 WHERE us_viewers__in_millions_ = "2.02"
|
6,388 |
<question>: How many million u.s. Viewers watched season 1? <context>: CREATE TABLE table_19188562_2 (us_viewers__in_millions_ VARCHAR, season VARCHAR)
|
SELECT us_viewers__in_millions_ FROM table_19188562_2 WHERE season = 1
|
6,389 |
<question>: How many tv series had an adult rating of 1.2? <context>: CREATE TABLE table_19188562_2 (tv_season VARCHAR, rating__adults_18_49_ VARCHAR)
|
SELECT COUNT(tv_season) FROM table_19188562_2 WHERE rating__adults_18_49_ = "1.2"
|
6,390 |
<question>: Where is the University that is also called Hawks? <context>: CREATE TABLE table_19210115_1 (location VARCHAR, nickname VARCHAR)
|
SELECT location FROM table_19210115_1 WHERE nickname = "Hawks"
|
6,391 |
<question>: Where is the University that is also called Owls? <context>: CREATE TABLE table_19210115_1 (location VARCHAR, nickname VARCHAR)
|
SELECT location FROM table_19210115_1 WHERE nickname = "Owls"
|
6,392 |
<question>: How many University founded in 1863? <context>: CREATE TABLE table_19210115_1 (enrollment VARCHAR, founded VARCHAR)
|
SELECT COUNT(enrollment) FROM table_19210115_1 WHERE founded = 1863
|
6,393 |
<question>: Where is the University that plays in the American Athletic Conference? <context>: CREATE TABLE table_19210115_1 (location VARCHAR, conference VARCHAR)
|
SELECT location FROM table_19210115_1 WHERE conference = "American Athletic conference"
|
6,394 |
<question>: What is the affiliation of the University called Explorers? <context>: CREATE TABLE table_19210115_1 (affiliation VARCHAR, nickname VARCHAR)
|
SELECT affiliation FROM table_19210115_1 WHERE nickname = "Explorers"
|
6,395 |
<question>: What is the nickname of Drexel University? <context>: CREATE TABLE table_19210115_1 (nickname VARCHAR, institution VARCHAR)
|
SELECT nickname FROM table_19210115_1 WHERE institution = "Drexel University"
|
6,396 |
<question>: What is the brand in Metro Manila? <context>: CREATE TABLE table_19215259_1 (branding VARCHAR, location VARCHAR)
|
SELECT branding FROM table_19215259_1 WHERE location = "Metro Manila"
|
6,397 |
<question>: What is the brand in Cabanatuan? <context>: CREATE TABLE table_19215259_1 (branding VARCHAR, location VARCHAR)
|
SELECT branding FROM table_19215259_1 WHERE location = "Cabanatuan"
|
6,398 |
<question>: What is the power at the cebu station? <context>: CREATE TABLE table_19215259_1 (power__kw_ VARCHAR, location VARCHAR)
|
SELECT power__kw_ FROM table_19215259_1 WHERE location = "Cebu"
|
6,399 |
<question>: What is the frequency of 101.5 News FM? <context>: CREATE TABLE table_19215259_1 (frequency VARCHAR, branding VARCHAR)
|
SELECT frequency FROM table_19215259_1 WHERE branding = "101.5 News FM"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.