Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
5,500 |
<question>: Which players have made a total of 12 extra points? <context>: CREATE TABLE table_14342592_5 (player VARCHAR, extra_points VARCHAR)
|
SELECT player FROM table_14342592_5 WHERE extra_points = 12
|
5,501 |
<question>: Which positions have made 4 touchdowns? <context>: CREATE TABLE table_14342592_5 (position VARCHAR, touchdowns VARCHAR)
|
SELECT position FROM table_14342592_5 WHERE touchdowns = 4
|
5,502 |
<question>: When the total points are 22 how many total touchdowns have been made? <context>: CREATE TABLE table_14342592_5 (touchdowns VARCHAR, points VARCHAR)
|
SELECT touchdowns FROM table_14342592_5 WHERE points = 22
|
5,503 |
<question>: How many points were scored by someone who's position was right tackle? <context>: CREATE TABLE table_14342480_7 (points VARCHAR, position VARCHAR)
|
SELECT COUNT(points) FROM table_14342480_7 WHERE position = "Right tackle"
|
5,504 |
<question>: What is the least amount of touchdowns scored on the chart? <context>: CREATE TABLE table_14342480_7 (touchdowns INTEGER)
|
SELECT MIN(touchdowns) FROM table_14342480_7
|
5,505 |
<question>: How many points were scored by Rolla Bigelow? <context>: CREATE TABLE table_14342480_7 (points VARCHAR, player VARCHAR)
|
SELECT points FROM table_14342480_7 WHERE player = "Rolla Bigelow"
|
5,506 |
<question>: How many touchdowns were scored by players who scored more than 5.0 extra points? <context>: CREATE TABLE table_14342480_7 (touchdowns VARCHAR, extra_points INTEGER)
|
SELECT COUNT(touchdowns) FROM table_14342480_7 WHERE extra_points > 5.0
|
5,507 |
<question>: What is the lowest amount of field goals on the chart? <context>: CREATE TABLE table_14342480_7 (field_goals INTEGER)
|
SELECT MIN(field_goals) FROM table_14342480_7
|
5,508 |
<question>: Name the least points for patrick <context>: CREATE TABLE table_14342592_4 (points INTEGER, player VARCHAR)
|
SELECT MIN(points) FROM table_14342592_4 WHERE player = "Patrick"
|
5,509 |
<question>: Name the starter for schulte <context>: CREATE TABLE table_14342592_4 (starter VARCHAR, player VARCHAR)
|
SELECT starter FROM table_14342592_4 WHERE player = "Schulte"
|
5,510 |
<question>: Name the total number of points for the right end <context>: CREATE TABLE table_14342592_4 (points VARCHAR, position VARCHAR)
|
SELECT COUNT(points) FROM table_14342592_4 WHERE position = "Right end"
|
5,511 |
<question>: Name the number of players when starter is no and touchdowns is 1 for right halfback <context>: CREATE TABLE table_14342592_4 (player VARCHAR, position VARCHAR, starter VARCHAR, touchdowns VARCHAR)
|
SELECT COUNT(player) FROM table_14342592_4 WHERE starter = "No" AND touchdowns = 1 AND position = "Right halfback"
|
5,512 |
<question>: What was the series number of the episode directed by Rob Bailey? <context>: CREATE TABLE table_14346689_1 (series__number INTEGER, directed_by VARCHAR)
|
SELECT MAX(series__number) FROM table_14346689_1 WHERE directed_by = "Rob Bailey"
|
5,513 |
<question>: Name the timeslot for season 5 <context>: CREATE TABLE table_143554_1 (timeslot VARCHAR, season VARCHAR)
|
SELECT timeslot FROM table_143554_1 WHERE season = 5
|
5,514 |
<question>: What is the area of Colonsay Island? <context>: CREATE TABLE table_143579_1 (area___ha__ INTEGER, island VARCHAR)
|
SELECT MIN(area___ha__) FROM table_143579_1 WHERE island = "Colonsay"
|
5,515 |
<question>: How many ties were there for game 36 started? <context>: CREATE TABLE table_14389782_2 (ties VARCHAR, games_started VARCHAR)
|
SELECT COUNT(ties) FROM table_14389782_2 WHERE games_started = 36
|
5,516 |
<question>: What is the winning pct for jersey 15? <context>: CREATE TABLE table_14389782_2 (winning_pct VARCHAR, jersey_no VARCHAR)
|
SELECT winning_pct FROM table_14389782_2 WHERE jersey_no = "15"
|
5,517 |
<question>: Who is the quarter back for a winning pct of .792 <context>: CREATE TABLE table_14389782_2 (quarterback VARCHAR, winning_pct VARCHAR)
|
SELECT quarterback FROM table_14389782_2 WHERE winning_pct = ".792"
|
5,518 |
<question>: How many lost games for jersey number 2 and games started is less than 7.0? <context>: CREATE TABLE table_14389782_2 (losses VARCHAR, jersey_no VARCHAR, games_started VARCHAR)
|
SELECT losses FROM table_14389782_2 WHERE jersey_no = "2" AND games_started < 7.0
|
5,519 |
<question>: Name the total number of date of vacancy for manner of departure being resigned and outgoing manager is geninho <context>: CREATE TABLE table_14406743_5 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, outgoing_manager VARCHAR)
|
SELECT COUNT(date_of_vacancy) FROM table_14406743_5 WHERE manner_of_departure = "Resigned" AND outgoing_manager = "Geninho"
|
5,520 |
<question>: Who led the points classification when Roman Kreuziger led the young rider classification? <context>: CREATE TABLE table_14395920_2 (points_classification VARCHAR, young_rider_classification VARCHAR)
|
SELECT points_classification FROM table_14395920_2 WHERE young_rider_classification = "Roman Kreuziger"
|
5,521 |
<question>: Who won the stage when Fumiyuki Beppu won the combativity award? <context>: CREATE TABLE table_14395920_2 (winner VARCHAR, combativity_award VARCHAR)
|
SELECT winner FROM table_14395920_2 WHERE combativity_award = "Fumiyuki Beppu"
|
5,522 |
<question>: Who won stage 18? <context>: CREATE TABLE table_14395920_2 (winner VARCHAR, stage VARCHAR)
|
SELECT winner FROM table_14395920_2 WHERE stage = 18
|
5,523 |
<question>: Who won the stage when Mark Cavendish led the points classification, Rinaldo Nocentini led the general classification, and the stage was less than 11.0? <context>: CREATE TABLE table_14395920_2 (winner VARCHAR, stage VARCHAR, points_classification VARCHAR, general_classification VARCHAR)
|
SELECT winner FROM table_14395920_2 WHERE points_classification = "Mark Cavendish" AND general_classification = "Rinaldo Nocentini" AND stage < 11.0
|
5,524 |
<question>: Name the 1st m for nor <context>: CREATE TABLE table_14407512_24 (nationality VARCHAR)
|
SELECT 1 AS st__m_ FROM table_14407512_24 WHERE nationality = "NOR"
|
5,525 |
<question>: Name the 2nd m for gregor schlierenzauer <context>: CREATE TABLE table_14407512_24 (name VARCHAR)
|
SELECT 2 AS nd__m_ FROM table_14407512_24 WHERE name = "Gregor Schlierenzauer"
|
5,526 |
<question>: Name the number of overall nt points for 248.9 <context>: CREATE TABLE table_14407512_24 (overall_nt_points VARCHAR, points VARCHAR)
|
SELECT COUNT(overall_nt_points) FROM table_14407512_24 WHERE points = "248.9"
|
5,527 |
<question>: How many times has the playoff been 1 in the contest for the afc cup? <context>: CREATE TABLE table_14460937_1 (afc_cup VARCHAR, play_off VARCHAR)
|
SELECT COUNT(afc_cup) FROM table_14460937_1 WHERE play_off = 1
|
5,528 |
<question>: How many times has the points total for the afc cup competion been 289? <context>: CREATE TABLE table_14460937_1 (afc_cup VARCHAR, points__total_500_ VARCHAR)
|
SELECT COUNT(afc_cup) FROM table_14460937_1 WHERE points__total_500_ = 289
|
5,529 |
<question>: When the group stage has been 4 what is the largest playoff? <context>: CREATE TABLE table_14460937_1 (play_off INTEGER, group_stage VARCHAR)
|
SELECT MAX(play_off) FROM table_14460937_1 WHERE group_stage = 4
|
5,530 |
<question>: What is the date the successor was seated for the georgia 6th district? <context>: CREATE TABLE table_1446600_4 (date_successor_seated VARCHAR, district VARCHAR)
|
SELECT date_successor_seated FROM table_1446600_4 WHERE district = "Georgia 6th"
|
5,531 |
<question>: How many successors are from the georgia 2nd district? <context>: CREATE TABLE table_1446600_4 (successor VARCHAR, district VARCHAR)
|
SELECT COUNT(successor) FROM table_1446600_4 WHERE district = "Georgia 2nd"
|
5,532 |
<question>: Show all the time(et) where the opponent is the Cincinnati Bengals. <context>: CREATE TABLE table_14477002_1 (time___et__ VARCHAR, opponent VARCHAR)
|
SELECT time___et__ FROM table_14477002_1 WHERE opponent = "Cincinnati Bengals"
|
5,533 |
<question>: List the total number of records from Lambeau Field. <context>: CREATE TABLE table_14477002_1 (record VARCHAR, location VARCHAR)
|
SELECT COUNT(record) FROM table_14477002_1 WHERE location = "Lambeau Field"
|
5,534 |
<question>: Who was the opposing team played at Riverfront Stadium? <context>: CREATE TABLE table_14563349_11 (opponent VARCHAR, location VARCHAR)
|
SELECT opponent FROM table_14563349_11 WHERE location = "Riverfront Stadium"
|
5,535 |
<question>: How many days were the Kansas City Chiefs the opposing team? <context>: CREATE TABLE table_14563349_11 (date VARCHAR, opponent VARCHAR)
|
SELECT COUNT(date) FROM table_14563349_11 WHERE opponent = "Kansas City Chiefs"
|
5,536 |
<question>: How many teams named argentina? <context>: CREATE TABLE table_14573770_4 (fourth_place INTEGER, nation VARCHAR)
|
SELECT MAX(fourth_place) FROM table_14573770_4 WHERE nation = "Argentina"
|
5,537 |
<question>: How many times did argentina win? <context>: CREATE TABLE table_14573770_4 (winners INTEGER, nation VARCHAR)
|
SELECT MAX(winners) FROM table_14573770_4 WHERE nation = "Argentina"
|
5,538 |
<question>: What is the number of s sikh where 955 is the number of buddhists? <context>: CREATE TABLE table_14598_5 (s_sikh VARCHAR, buddhist VARCHAR)
|
SELECT s_sikh FROM table_14598_5 WHERE buddhist = "955"
|
5,539 |
<question>: How many buddhists are where s jain have 941? <context>: CREATE TABLE table_14598_5 (buddhist VARCHAR, s_jain VARCHAR)
|
SELECT buddhist FROM table_14598_5 WHERE s_jain = "941"
|
5,540 |
<question>: What is the christian amount where work participation rate is the composition? <context>: CREATE TABLE table_14598_5 (christians VARCHAR, composition VARCHAR)
|
SELECT christians FROM table_14598_5 WHERE composition = "Work Participation Rate"
|
5,541 |
<question>: How many s hindu are where buddhists are 955? <context>: CREATE TABLE table_14598_5 (s_hindu VARCHAR, buddhist VARCHAR)
|
SELECT s_hindu FROM table_14598_5 WHERE buddhist = "955"
|
5,542 |
<question>: What is the data point for s hindu where the buddhist data point is 73.0%? <context>: CREATE TABLE table_14598_5 (s_hindu VARCHAR, buddhist VARCHAR)
|
SELECT COUNT(s_hindu) FROM table_14598_5 WHERE buddhist = "73.0%"
|
5,543 |
<question>: How many data points for chrstians are 39.7? <context>: CREATE TABLE table_14598_5 (composition VARCHAR, christians VARCHAR)
|
SELECT COUNT(composition) FROM table_14598_5 WHERE christians = "39.7"
|
5,544 |
<question>: Name the hometown for ventrell jenkins <context>: CREATE TABLE table_14624447_39 (hometown VARCHAR, name VARCHAR)
|
SELECT hometown FROM table_14624447_39 WHERE name = "Ventrell Jenkins"
|
5,545 |
<question>: Name the class when position is rt <context>: CREATE TABLE table_14624447_39 (class VARCHAR, position VARCHAR)
|
SELECT class FROM table_14624447_39 WHERE position = "RT"
|
5,546 |
<question>: Which players college is Tennessee? <context>: CREATE TABLE table_14655757_1 (player VARCHAR, college VARCHAR)
|
SELECT player FROM table_14655757_1 WHERE college = "Tennessee"
|
5,547 |
<question>: What college did Byron Williams attend? <context>: CREATE TABLE table_14655757_1 (college VARCHAR, player VARCHAR)
|
SELECT college FROM table_14655757_1 WHERE player = "Byron Williams"
|
5,548 |
<question>: What is the lowest pick number? <context>: CREATE TABLE table_14655757_1 (pick__number INTEGER)
|
SELECT MIN(pick__number) FROM table_14655757_1
|
5,549 |
<question>: What position is Jessie Clark? <context>: CREATE TABLE table_14655757_1 (position VARCHAR, player VARCHAR)
|
SELECT position FROM table_14655757_1 WHERE player = "Jessie Clark"
|
5,550 |
<question>: What frequency does Chihuahua Sinaloa Durango cover? <context>: CREATE TABLE table_14670060_1 (frequency VARCHAR, coverage VARCHAR)
|
SELECT frequency FROM table_14670060_1 WHERE coverage = "Chihuahua Sinaloa Durango"
|
5,551 |
<question>: How many times does the call sign XEZV appear? <context>: CREATE TABLE table_14670060_1 (transmitting_from VARCHAR, call_sign VARCHAR)
|
SELECT COUNT(transmitting_from) FROM table_14670060_1 WHERE call_sign = "XEZV"
|
5,552 |
<question>: What languages are spoken when call sign XEJAM is used? <context>: CREATE TABLE table_14670060_1 (languages VARCHAR, call_sign VARCHAR)
|
SELECT languages FROM table_14670060_1 WHERE call_sign = "XEJAM"
|
5,553 |
<question>: Who shot an 80 in round 3 <context>: CREATE TABLE table_14708760_3 (shooter VARCHAR, round_3 VARCHAR)
|
SELECT shooter FROM table_14708760_3 WHERE round_3 = 80
|
5,554 |
<question>: What is the highest score of round 1 where they also shot 90 in round 2 <context>: CREATE TABLE table_14708760_3 (round_1 INTEGER, round_2 VARCHAR)
|
SELECT MAX(round_1) FROM table_14708760_3 WHERE round_2 = 90
|
5,555 |
<question>: What position did Dave Johnson play? <context>: CREATE TABLE table_1473672_5 (position VARCHAR, player VARCHAR)
|
SELECT position FROM table_1473672_5 WHERE player = "Dave Johnson"
|
5,556 |
<question>: What is Bernie Germain's nationality? <context>: CREATE TABLE table_1473672_5 (nationality VARCHAR, player VARCHAR)
|
SELECT nationality FROM table_1473672_5 WHERE player = "Bernie Germain"
|
5,557 |
<question>: What player was picked by the Minnesota North Stars? <context>: CREATE TABLE table_1473672_5 (player VARCHAR, nhl_team VARCHAR)
|
SELECT player FROM table_1473672_5 WHERE nhl_team = "Minnesota North Stars"
|
5,558 |
<question>: What position did Marty Gateman play? <context>: CREATE TABLE table_1473672_5 (position VARCHAR, player VARCHAR)
|
SELECT position FROM table_1473672_5 WHERE player = "Marty Gateman"
|
5,559 |
<question>: What was the position of the player picked by the Montreal Canadiens? <context>: CREATE TABLE table_1473672_5 (position VARCHAR, nhl_team VARCHAR)
|
SELECT position FROM table_1473672_5 WHERE nhl_team = "Montreal Canadiens"
|
5,560 |
<question>: the california golden seals that where drafted by nhl teams played what positions <context>: CREATE TABLE table_1473672_7 (position VARCHAR, nhl_team VARCHAR)
|
SELECT position FROM table_1473672_7 WHERE nhl_team = "California Golden Seals"
|
5,561 |
<question>: what country was the player drafted by the toronto maple leafs <context>: CREATE TABLE table_1473672_7 (nationality VARCHAR, nhl_team VARCHAR)
|
SELECT nationality FROM table_1473672_7 WHERE nhl_team = "Toronto Maple Leafs"
|
5,562 |
<question>: The los angeles kings drafted what player in the 7th round <context>: CREATE TABLE table_1473672_7 (player VARCHAR, nhl_team VARCHAR)
|
SELECT player FROM table_1473672_7 WHERE nhl_team = "Los Angeles Kings"
|
5,563 |
<question>: How many players had been drafted in front of Yves archambault <context>: CREATE TABLE table_1473672_7 (pick__number VARCHAR, player VARCHAR)
|
SELECT pick__number FROM table_1473672_7 WHERE player = "Yves Archambault"
|
5,564 |
<question>: Serge Beaudoin was drafted when in the 1972 NHL draft <context>: CREATE TABLE table_1473672_7 (pick__number INTEGER, player VARCHAR)
|
SELECT MIN(pick__number) FROM table_1473672_7 WHERE player = "Serge Beaudoin"
|
5,565 |
<question>: What NHL team drafted Rob Palmer? <context>: CREATE TABLE table_1473672_6 (nhl_team VARCHAR, player VARCHAR)
|
SELECT nhl_team FROM table_1473672_6 WHERE player = "Rob Palmer"
|
5,566 |
<question>: What player was drafted by the Chicago Black Hawks? <context>: CREATE TABLE table_1473672_6 (player VARCHAR, nhl_team VARCHAR)
|
SELECT player FROM table_1473672_6 WHERE nhl_team = "Chicago Black Hawks"
|
5,567 |
<question>: What country did Derek Black come from? <context>: CREATE TABLE table_1473672_6 (nationality VARCHAR, player VARCHAR)
|
SELECT nationality FROM table_1473672_6 WHERE player = "Derek Black"
|
5,568 |
<question>: What team did Derek Black Play for prior to being drafted? <context>: CREATE TABLE table_1473672_6 (college_junior_club_team VARCHAR, player VARCHAR)
|
SELECT college_junior_club_team FROM table_1473672_6 WHERE player = "Derek Black"
|
5,569 |
<question>: At maximum, what are our goals? <context>: CREATE TABLE table_1474099_6 (goals INTEGER)
|
SELECT MAX(goals) FROM table_1474099_6
|
5,570 |
<question>: When the team scored 17 and Slavija placed second, what year was it? <context>: CREATE TABLE table_1474099_6 (season VARCHAR, goals VARCHAR, runners_up VARCHAR)
|
SELECT season FROM table_1474099_6 WHERE goals = 17 AND runners_up = "Slavija"
|
5,571 |
<question>: Name the change 2009 to 2010 where international tourist arrivals is 9.4 million <context>: CREATE TABLE table_14752049_3 (change__2009_to_2010_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR)
|
SELECT change__2009_to_2010_ FROM table_14752049_3 WHERE international_tourist_arrivals__2011_ = "9.4 million"
|
5,572 |
<question>: Name the international tourist arrivals for arrivals 2011 for 8.1 million <context>: CREATE TABLE table_14752049_3 (international_tourist_arrivals__2010_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR)
|
SELECT international_tourist_arrivals__2010_ FROM table_14752049_3 WHERE international_tourist_arrivals__2011_ = "8.1 million"
|
5,573 |
<question>: How many tourist arrivals occurred in 2011 in the country of Italy? <context>: CREATE TABLE table_14752049_1 (international_tourist_arrivals__2011_ VARCHAR, country VARCHAR)
|
SELECT international_tourist_arrivals__2011_ FROM table_14752049_1 WHERE country = "Italy"
|
5,574 |
<question>: Which country has a rank of 5? <context>: CREATE TABLE table_14752049_1 (country VARCHAR, rank VARCHAR)
|
SELECT country FROM table_14752049_1 WHERE rank = 5
|
5,575 |
<question>: What rank is associated with Germany? <context>: CREATE TABLE table_14752049_1 (rank INTEGER, country VARCHAR)
|
SELECT MAX(rank) FROM table_14752049_1 WHERE country = "Germany"
|
5,576 |
<question>: Name the number of ranks for international tourist arrivals being 6.2 million <context>: CREATE TABLE table_14752049_5 (rank VARCHAR, international_tourist_arrivals__2011_ VARCHAR)
|
SELECT COUNT(rank) FROM table_14752049_5 WHERE international_tourist_arrivals__2011_ = "6.2 million"
|
5,577 |
<question>: Name the number of ranks for south korea <context>: CREATE TABLE table_14752049_5 (rank VARCHAR, country VARCHAR)
|
SELECT COUNT(rank) FROM table_14752049_5 WHERE country = "South Korea"
|
5,578 |
<question>: What is the minimum stolen ends for the locale Alberta? <context>: CREATE TABLE table_1475840_1 (stolen_ends INTEGER, locale VARCHAR, Alberta VARCHAR)
|
SELECT MIN(stolen_ends) FROM table_1475840_1 WHERE locale = Alberta
|
5,579 |
<question>: What was the inroductory phase for the episode with production code 4005? <context>: CREATE TABLE table_14835674_1 (introductory_phrase VARCHAR, production_code VARCHAR)
|
SELECT introductory_phrase FROM table_14835674_1 WHERE production_code = 4005
|
5,580 |
<question>: What was the inroductory phase for the episode with neil shubin as a guest? <context>: CREATE TABLE table_14835674_1 (introductory_phrase VARCHAR, guest VARCHAR)
|
SELECT introductory_phrase FROM table_14835674_1 WHERE guest = "Neil Shubin"
|
5,581 |
<question>: What was the inroductory phase for the episode that originally aired january 21? <context>: CREATE TABLE table_14835674_1 (introductory_phrase VARCHAR, original_airdate VARCHAR)
|
SELECT introductory_phrase FROM table_14835674_1 WHERE original_airdate = "January 21"
|
5,582 |
<question>: How many series had 18.77 million viewers? <context>: CREATE TABLE table_14835826_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR)
|
SELECT COUNT(series__number) FROM table_14835826_1 WHERE us_viewers__millions_ = "18.77"
|
5,583 |
<question>: How many roles include George Broderick in the casino 1888 theater? <context>: CREATE TABLE table_148386_2 (role VARCHAR, casino_theatre_1888 VARCHAR)
|
SELECT role FROM table_148386_2 WHERE casino_theatre_1888 = "George Broderick"
|
5,584 |
<question>: What is the total of roles that George Olmi plays in Savoy & Casino Theatre 1888? <context>: CREATE TABLE table_148386_2 (savoy_theatre_1888 VARCHAR, casino_theatre_1888 VARCHAR)
|
SELECT COUNT(savoy_theatre_1888) FROM table_148386_2 WHERE casino_theatre_1888 = "George Olmi"
|
5,585 |
<question>: Who plays Overton Moyle in casino theatre 1888 & savoy theatre 1906? <context>: CREATE TABLE table_148386_2 (casino_theatre_1888 VARCHAR, savoy_theatre_1906 VARCHAR)
|
SELECT casino_theatre_1888 FROM table_148386_2 WHERE savoy_theatre_1906 = "Overton Moyle"
|
5,586 |
<question>: Name the losses for general caballero zc <context>: CREATE TABLE table_14876228_1 (losses VARCHAR, team VARCHAR)
|
SELECT losses FROM table_14876228_1 WHERE team = "General Caballero ZC"
|
5,587 |
<question>: Name the most draws when wins is 3 <context>: CREATE TABLE table_14876228_1 (draws INTEGER, wins VARCHAR)
|
SELECT MAX(draws) FROM table_14876228_1 WHERE wins = 3
|
5,588 |
<question>: Name the number of played for 16 <context>: CREATE TABLE table_14876228_1 (played VARCHAR, scored VARCHAR)
|
SELECT COUNT(played) FROM table_14876228_1 WHERE scored = 16
|
5,589 |
<question>: Name the population 1891 for area being 175836 <context>: CREATE TABLE table_14925084_1 (population_1891 VARCHAR, area_1891__statute_acres_ VARCHAR)
|
SELECT COUNT(population_1891) FROM table_14925084_1 WHERE area_1891__statute_acres_ = 175836
|
5,590 |
<question>: Name the administrative county being area of 422372 <context>: CREATE TABLE table_14925084_1 (administrative_county VARCHAR, area_1961__statute_acres_ VARCHAR)
|
SELECT administrative_county FROM table_14925084_1 WHERE area_1961__statute_acres_ = 422372
|
5,591 |
<question>: Name the area for administrative county being flintshire <context>: CREATE TABLE table_14925084_1 (area_1891__statute_acres_ VARCHAR, administrative_county VARCHAR)
|
SELECT area_1891__statute_acres_ FROM table_14925084_1 WHERE administrative_county = "Flintshire"
|
5,592 |
<question>: Name the number of administrative county for area 1961 and 176694 <context>: CREATE TABLE table_14925084_1 (administrative_county VARCHAR, area_1961__statute_acres_ VARCHAR)
|
SELECT COUNT(administrative_county) FROM table_14925084_1 WHERE area_1961__statute_acres_ = 176694
|
5,593 |
<question>: How many couples won the Mixed Doubles in 1997? <context>: CREATE TABLE table_14904046_1 (mixed_doubles VARCHAR, year VARCHAR)
|
SELECT COUNT(mixed_doubles) FROM table_14904046_1 WHERE year = 1997
|
5,594 |
<question>: Name the number of week for game site being memorial stadium for buffalo bills <context>: CREATE TABLE table_14940519_1 (week VARCHAR, game_site VARCHAR, opponent VARCHAR)
|
SELECT COUNT(week) FROM table_14940519_1 WHERE game_site = "Memorial Stadium" AND opponent = "Buffalo Bills"
|
5,595 |
<question>: Name the opponent for october 2, 1983 <context>: CREATE TABLE table_14940519_1 (opponent VARCHAR, date VARCHAR)
|
SELECT opponent FROM table_14940519_1 WHERE date = "October 2, 1983"
|
5,596 |
<question>: Name the least week for september 25, 1983 <context>: CREATE TABLE table_14940519_1 (week INTEGER, date VARCHAR)
|
SELECT MAX(week) FROM table_14940519_1 WHERE date = "September 25, 1983"
|
5,597 |
<question>: Name the total number of weeks for at cleveland browns <context>: CREATE TABLE table_14940519_1 (week VARCHAR, opponent VARCHAR)
|
SELECT COUNT(week) FROM table_14940519_1 WHERE opponent = "at Cleveland Browns"
|
5,598 |
<question>: Name the record for result of l 17–50 <context>: CREATE TABLE table_14940519_1 (record VARCHAR, result VARCHAR)
|
SELECT record FROM table_14940519_1 WHERE result = "L 17–50"
|
5,599 |
<question>: what's the record with result being w 52–19 <context>: CREATE TABLE table_14951643_1 (record VARCHAR, result VARCHAR)
|
SELECT record FROM table_14951643_1 WHERE result = "W 52–19"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.