Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
42,600 | <question>: What is the total losses for the player with fewer than 51 pens, 3 tries and 45 starts? <context>: CREATE TABLE table_name_19 (lost VARCHAR, start VARCHAR, pens VARCHAR, tries VARCHAR) | SELECT COUNT(lost) FROM table_name_19 WHERE pens < 51 AND tries = 3 AND start = 45 |
42,601 | <question>: What is the average crowd size at glenferrie oval? <context>: CREATE TABLE table_name_16 (crowd INTEGER, venue VARCHAR) | SELECT AVG(crowd) FROM table_name_16 WHERE venue = "glenferrie oval" |
42,602 | <question>: What is the away team's score when the away team is geelong? <context>: CREATE TABLE table_name_16 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_16 WHERE away_team = "geelong" |
42,603 | <question>: What is the largest crowd when melbourne plays at home? <context>: CREATE TABLE table_name_98 (crowd INTEGER, home_team VARCHAR) | SELECT MAX(crowd) FROM table_name_98 WHERE home_team = "melbourne" |
42,604 | <question>: What was the championship game for the Southwest conference? <context>: CREATE TABLE table_name_63 (championship_game VARCHAR, conference VARCHAR) | SELECT championship_game FROM table_name_63 WHERE conference = "southwest" |
42,605 | <question>: Which manager has Sol Campbell as captain? <context>: CREATE TABLE table_name_29 (manager VARCHAR, captain VARCHAR) | SELECT manager FROM table_name_29 WHERE captain = "sol campbell" |
42,606 | <question>: What team does Carlsberg sponsor? <context>: CREATE TABLE table_name_52 (team VARCHAR, shirt_sponsor VARCHAR) | SELECT team FROM table_name_52 WHERE shirt_sponsor = "carlsberg" |
42,607 | <question>: Who sponsors Middlesbrough? <context>: CREATE TABLE table_name_74 (shirt_sponsor VARCHAR, team VARCHAR) | SELECT shirt_sponsor FROM table_name_74 WHERE team = "middlesbrough" |
42,608 | <question>: Which sponsor has Mark Hughes as manager? <context>: CREATE TABLE table_name_23 (shirt_sponsor VARCHAR, manager VARCHAR) | SELECT shirt_sponsor FROM table_name_23 WHERE manager = "mark hughes" |
42,609 | <question>: Which kit maker does Aston Villa use? <context>: CREATE TABLE table_name_42 (kit_maker VARCHAR, team VARCHAR) | SELECT kit_maker FROM table_name_42 WHERE team = "aston villa" |
42,610 | <question>: Who captains Portsmouth? <context>: CREATE TABLE table_name_9 (captain VARCHAR, team VARCHAR) | SELECT captain FROM table_name_9 WHERE team = "portsmouth" |
42,611 | <question>: What bombing happened in Brighton, UK? <context>: CREATE TABLE table_name_98 (event VARCHAR, location VARCHAR) | SELECT event FROM table_name_98 WHERE location = "brighton, uk" |
42,612 | <question>: What result had a score of 3–0? <context>: CREATE TABLE table_name_50 (result VARCHAR, score VARCHAR) | SELECT result FROM table_name_50 WHERE score = "3–0" |
42,613 | <question>: For the venue of suwon world cup stadium , suwon , south korea and a Score of 3–0 what is the result? <context>: CREATE TABLE table_name_74 (result VARCHAR, venue VARCHAR, score VARCHAR) | SELECT result FROM table_name_74 WHERE venue = "suwon world cup stadium , suwon , south korea" AND score = "3–0" |
42,614 | <question>: What is the top goal for the result of 2–3? <context>: CREATE TABLE table_name_39 (goal INTEGER, result VARCHAR) | SELECT MAX(goal) FROM table_name_39 WHERE result = "2–3" |
42,615 | <question>: When was the time of 12:49:08 first set? <context>: CREATE TABLE table_name_7 (year INTEGER, time VARCHAR) | SELECT MIN(year) FROM table_name_7 WHERE time = "12:49:08" |
42,616 | <question>: What was the date when the attendance was 77,918? <context>: CREATE TABLE table_name_90 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_90 WHERE attendance = "77,918" |
42,617 | <question>: What was the attendance of the game played in the Georgia Dome? <context>: CREATE TABLE table_name_6 (attendance VARCHAR, game_site VARCHAR) | SELECT attendance FROM table_name_6 WHERE game_site = "georgia dome" |
42,618 | <question>: What was the date when the attendance was 73,529? <context>: CREATE TABLE table_name_89 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_89 WHERE attendance = "73,529" |
42,619 | <question>: What away team played at Western Oval? <context>: CREATE TABLE table_name_75 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_75 WHERE venue = "western oval" |
42,620 | <question>: What was the smallest crowd when Footscray played at home? <context>: CREATE TABLE table_name_95 (crowd INTEGER, home_team VARCHAR) | SELECT MIN(crowd) FROM table_name_95 WHERE home_team = "footscray" |
42,621 | <question>: What was the outcome when she partnered with mashona washington? <context>: CREATE TABLE table_name_39 (outcome VARCHAR, partner VARCHAR) | SELECT outcome FROM table_name_39 WHERE partner = "mashona washington" |
42,622 | <question>: What is the listed crowd at junction oval? <context>: CREATE TABLE table_name_54 (crowd VARCHAR, venue VARCHAR) | SELECT crowd FROM table_name_54 WHERE venue = "junction oval" |
42,623 | <question>: What is the sum of crowd(s) when north melbourne is away? <context>: CREATE TABLE table_name_92 (crowd INTEGER, away_team VARCHAR) | SELECT SUM(crowd) FROM table_name_92 WHERE away_team = "north melbourne" |
42,624 | <question>: What day is south melbourne away? <context>: CREATE TABLE table_name_19 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_19 WHERE away_team = "south melbourne" |
42,625 | <question>: What was the score of the competition on 23 November 2003? <context>: CREATE TABLE table_name_64 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_64 WHERE date = "23 november 2003" |
42,626 | <question>: Where did Richmond play as an away team? <context>: CREATE TABLE table_name_70 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_70 WHERE away_team = "richmond" |
42,627 | <question>: When did South Melbourne play at home? <context>: CREATE TABLE table_name_3 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_3 WHERE home_team = "south melbourne" |
42,628 | <question>: What is the average election for vicenza province with the liga veneta party? <context>: CREATE TABLE table_name_31 (election INTEGER, party VARCHAR, province VARCHAR) | SELECT AVG(election) FROM table_name_31 WHERE party = "liga veneta" AND province = "vicenza" |
42,629 | <question>: What is the sum of elections in vicenza? <context>: CREATE TABLE table_name_1 (election INTEGER, province VARCHAR) | SELECT SUM(election) FROM table_name_1 WHERE province = "vicenza" |
42,630 | <question>: What province has an election after 2009? <context>: CREATE TABLE table_name_55 (province VARCHAR, election INTEGER) | SELECT province FROM table_name_55 WHERE election > 2009 |
42,631 | <question>: What format does Japan use? <context>: CREATE TABLE table_name_34 (format VARCHAR, country VARCHAR) | SELECT format FROM table_name_34 WHERE country = "japan" |
42,632 | <question>: What date has a catalogue of 540 3622? <context>: CREATE TABLE table_name_82 (date VARCHAR, catalogue VARCHAR) | SELECT date FROM table_name_82 WHERE catalogue = "540 3622" |
42,633 | <question>: What format has a catalogue of asw 40362? <context>: CREATE TABLE table_name_81 (format VARCHAR, catalogue VARCHAR) | SELECT format FROM table_name_81 WHERE catalogue = "asw 40362" |
42,634 | <question>: What date has a catalogue of asw 40362? <context>: CREATE TABLE table_name_90 (date VARCHAR, catalogue VARCHAR) | SELECT date FROM table_name_90 WHERE catalogue = "asw 40362" |
42,635 | <question>: On what Date is the Crowd larger than 17,000? <context>: CREATE TABLE table_name_8 (date VARCHAR, crowd INTEGER) | SELECT date FROM table_name_8 WHERE crowd > 17 OFFSET 000 |
42,636 | <question>: Which Away team has the Home team of Carlton? <context>: CREATE TABLE table_name_2 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_2 WHERE home_team = "carlton" |
42,637 | <question>: What was the score of the Jeff Tarango game? <context>: CREATE TABLE table_name_12 (score VARCHAR, partner VARCHAR) | SELECT score FROM table_name_12 WHERE partner = "jeff tarango" |
42,638 | <question>: Where did Collingwood play ae the away team? <context>: CREATE TABLE table_name_57 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_57 WHERE away_team = "collingwood" |
42,639 | <question>: What was the score when there was more than 27,000 in attendance? <context>: CREATE TABLE table_name_73 (home_team VARCHAR, crowd INTEGER) | SELECT home_team AS score FROM table_name_73 WHERE crowd > 27 OFFSET 000 |
42,640 | <question>: Where did Hawthorn play as the home team? <context>: CREATE TABLE table_name_41 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_41 WHERE home_team = "hawthorn" |
42,641 | <question>: In 1990-2005 what is the lowest Start with Convs smaller than 2? <context>: CREATE TABLE table_name_93 (start INTEGER, span VARCHAR, conv VARCHAR) | SELECT MIN(start) FROM table_name_93 WHERE span = "1990-2005" AND conv < 2 |
42,642 | <question>: What is the total of the crowd when the home team is footscray? <context>: CREATE TABLE table_name_60 (crowd VARCHAR, home_team VARCHAR) | SELECT COUNT(crowd) FROM table_name_60 WHERE home_team = "footscray" |
42,643 | <question>: What is the away team score when the away team is Essendon? <context>: CREATE TABLE table_name_16 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_16 WHERE away_team = "essendon" |
42,644 | <question>: How many weeks ended in a result of L 20-10? <context>: CREATE TABLE table_name_85 (week VARCHAR, result VARCHAR) | SELECT COUNT(week) FROM table_name_85 WHERE result = "l 20-10" |
42,645 | <question>: What was the attendance in week 6? <context>: CREATE TABLE table_name_13 (attendance VARCHAR, week VARCHAR) | SELECT attendance FROM table_name_13 WHERE week = 6 |
42,646 | <question>: Who was the opponent in the game that had an attendance of 60,066? <context>: CREATE TABLE table_name_30 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_30 WHERE attendance = "60,066" |
42,647 | <question>: What is the designation of material or non-material for either positional or automatic with no rectified count and either opponent? <context>: CREATE TABLE table_name_36 (material_or_non_material VARCHAR, opponents VARCHAR, positional_or_automatic VARCHAR, count_rectified VARCHAR) | SELECT material_or_non_material FROM table_name_36 WHERE positional_or_automatic = "either" AND count_rectified = "no" AND opponents = "either" |
42,648 | <question>: What is the value for positional opponents with no material or non-material, and 3 suits? <context>: CREATE TABLE table_name_92 (opponents VARCHAR, suits VARCHAR, positional_or_automatic VARCHAR, material_or_non_material VARCHAR) | SELECT opponents FROM table_name_92 WHERE positional_or_automatic = "positional" AND material_or_non_material = "no" AND suits = "3" |
42,649 | <question>: Is it material or non-material when there are 2 suits for either opponent? <context>: CREATE TABLE table_name_63 (material_or_non_material VARCHAR, suits VARCHAR, opponents VARCHAR) | SELECT material_or_non_material FROM table_name_63 WHERE suits = "2" AND opponents = "either" |
42,650 | <question>: Is the count rectified for single opponents, either positional or automatic, and no material or non-material? <context>: CREATE TABLE table_name_78 (count_rectified VARCHAR, material_or_non_material VARCHAR, opponents VARCHAR, positional_or_automatic VARCHAR) | SELECT count_rectified FROM table_name_78 WHERE opponents = "single" AND positional_or_automatic = "either" AND material_or_non_material = "no" |
42,651 | <question>: How many points did Happy Valley score before game 14? <context>: CREATE TABLE table_name_89 (point VARCHAR, team VARCHAR, game VARCHAR) | SELECT COUNT(point) FROM table_name_89 WHERE team = "happy valley" AND game < 14 |
42,652 | <question>: How many draws did the game after game 14 with goal gain 17 have? <context>: CREATE TABLE table_name_45 (draw INTEGER, goal_gain VARCHAR, game VARCHAR) | SELECT MAX(draw) FROM table_name_45 WHERE goal_gain = 17 AND game > 14 |
42,653 | <question>: How many total draws were there with a less than 8 loss, more than 30 points, and a goal diff larger than 26? <context>: CREATE TABLE table_name_21 (draw VARCHAR, goal_diff VARCHAR, loss VARCHAR, point VARCHAR) | SELECT COUNT(draw) FROM table_name_21 WHERE loss < 8 AND point > 30 AND goal_diff > 26 |
42,654 | <question>: What is the highest loss before game 14? <context>: CREATE TABLE table_name_31 (loss INTEGER, game INTEGER) | SELECT MAX(loss) FROM table_name_31 WHERE game < 14 |
42,655 | <question>: How many average points did the player with a time/retired of +16.789 and have more laps than 68 have? <context>: CREATE TABLE table_name_8 (points INTEGER, time_retired VARCHAR, laps VARCHAR) | SELECT AVG(points) FROM table_name_8 WHERE time_retired = "+16.789" AND laps > 68 |
42,656 | <question>: How many average points did the team Minardi Team USA have when there was a grid 3 and more laps than 68? <context>: CREATE TABLE table_name_21 (points INTEGER, laps VARCHAR, team VARCHAR, grid VARCHAR) | SELECT AVG(points) FROM table_name_21 WHERE team = "minardi team usa" AND grid = 3 AND laps > 68 |
42,657 | <question>: Which was the highest crowd drawn by an Away team in Richmond? <context>: CREATE TABLE table_name_6 (crowd INTEGER, away_team VARCHAR) | SELECT MAX(crowd) FROM table_name_6 WHERE away_team = "richmond" |
42,658 | <question>: Which home team has a venue of Arden Street Oval? <context>: CREATE TABLE table_name_94 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_94 WHERE venue = "arden street oval" |
42,659 | <question>: Which away team has a venue of Arden Street Oval? <context>: CREATE TABLE table_name_76 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_76 WHERE venue = "arden street oval" |
42,660 | <question>: What is the value for 2011 corresponding to a 2007 value of 1r? <context>: CREATE TABLE table_name_32 (Id VARCHAR) | SELECT 2011 FROM table_name_32 WHERE 2007 = "1r" |
42,661 | <question>: What value in 2013 corresponds to Grand Slam Tournaments in 2012? <context>: CREATE TABLE table_name_38 (Id VARCHAR) | SELECT 2013 FROM table_name_38 WHERE 2012 = "grand slam tournaments" |
42,662 | <question>: What is the 2012 value when the 2011 and 2007 values are 1R? <context>: CREATE TABLE table_name_28 (Id VARCHAR) | SELECT 2012 FROM table_name_28 WHERE 2011 = "1r" AND 2007 = "1r" |
42,663 | <question>: What value for 2013 corresponds to the US Open Tournament? <context>: CREATE TABLE table_name_55 (tournament VARCHAR) | SELECT 2013 FROM table_name_55 WHERE tournament = "us open" |
42,664 | <question>: The school nicknamed the wildcats has what sum of enrollment? <context>: CREATE TABLE table_name_5 (enrollment INTEGER, team_nickname VARCHAR) | SELECT SUM(enrollment) FROM table_name_5 WHERE team_nickname = "wildcats" |
42,665 | <question>: What is the Founded year of the school located in Paul Smiths, New York? <context>: CREATE TABLE table_name_99 (founded VARCHAR, location VARCHAR) | SELECT founded FROM table_name_99 WHERE location = "paul smiths, new york" |
42,666 | <question>: What was fitzroy's away side score? <context>: CREATE TABLE table_name_59 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_59 WHERE away_team = "fitzroy" |
42,667 | <question>: What player attended UAB college? <context>: CREATE TABLE table_name_53 (player VARCHAR, college VARCHAR) | SELECT player FROM table_name_53 WHERE college = "uab" |
42,668 | <question>: What was the score of the game at RIch Stadium? <context>: CREATE TABLE table_name_14 (result VARCHAR, stadium VARCHAR) | SELECT result FROM table_name_14 WHERE stadium = "rich stadium" |
42,669 | <question>: Who had the best time of 1:32.269? <context>: CREATE TABLE table_name_21 (name VARCHAR, best VARCHAR) | SELECT name FROM table_name_21 WHERE best = "1:32.269" |
42,670 | <question>: Who from Conquest Racing had the best time of 1:34.748 in Qual 1? <context>: CREATE TABLE table_name_4 (best VARCHAR, team VARCHAR, qual_1 VARCHAR) | SELECT best FROM table_name_4 WHERE team = "conquest racing" AND qual_1 = "1:34.748" |
42,671 | <question>: Who in Qual 2 had the best time of 1:31.327? <context>: CREATE TABLE table_name_5 (qual_2 VARCHAR, best VARCHAR) | SELECT qual_2 FROM table_name_5 WHERE best = "1:31.327" |
42,672 | <question>: What was Dan Selznick best time? <context>: CREATE TABLE table_name_63 (best VARCHAR, name VARCHAR) | SELECT best FROM table_name_63 WHERE name = "dan selznick" |
42,673 | <question>: What team had 1:34.578 in Qual 2? <context>: CREATE TABLE table_name_55 (team VARCHAR, qual_2 VARCHAR) | SELECT team FROM table_name_55 WHERE qual_2 = "1:34.578" |
42,674 | <question>: Jiang Tengyi is on which team? <context>: CREATE TABLE table_name_87 (team VARCHAR, name VARCHAR) | SELECT team FROM table_name_87 WHERE name = "jiang tengyi" |
42,675 | <question>: What is the away team's score when footscray is the away team? <context>: CREATE TABLE table_name_74 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_74 WHERE away_team = "footscray" |
42,676 | <question>: What was the rank for czechoslovakia with 1 bronze? <context>: CREATE TABLE table_name_42 (rank VARCHAR, bronze VARCHAR, nation VARCHAR) | SELECT rank FROM table_name_42 WHERE bronze = 1 AND nation = "czechoslovakia" |
42,677 | <question>: How many bronze medals for the nation with over 9 golds? <context>: CREATE TABLE table_name_8 (bronze VARCHAR, gold INTEGER) | SELECT COUNT(bronze) FROM table_name_8 WHERE gold > 9 |
42,678 | <question>: What is the average number of goals that occurred in Hong Kong Stadium, Hong Kong? <context>: CREATE TABLE table_name_53 (goals INTEGER, venue VARCHAR) | SELECT AVG(goals) FROM table_name_53 WHERE venue = "hong kong stadium, hong kong" |
42,679 | <question>: Which country uses pound sterling with a value higher than 1.33 USD? <context>: CREATE TABLE table_name_66 (country VARCHAR, value_in_usd VARCHAR, currency VARCHAR) | SELECT country FROM table_name_66 WHERE value_in_usd > 1.33 AND currency = "pound sterling" |
42,680 | <question>: What venue features carlton at home? <context>: CREATE TABLE table_name_88 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_88 WHERE home_team = "carlton" |
42,681 | <question>: What venue features fitzroy as the away side? <context>: CREATE TABLE table_name_66 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_66 WHERE away_team = "fitzroy" |
42,682 | <question>: What was the smallest crowd that Melbourne played for at home? <context>: CREATE TABLE table_name_18 (crowd INTEGER, home_team VARCHAR) | SELECT MIN(crowd) FROM table_name_18 WHERE home_team = "melbourne" |
42,683 | <question>: What home team played the away team of Richmond? <context>: CREATE TABLE table_name_75 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_75 WHERE away_team = "richmond" |
42,684 | <question>: What is the high score for the player with 0 stumps, 4 catches, more than 14 inns and an average smaller than 56.1? <context>: CREATE TABLE table_name_52 (high_score INTEGER, inns VARCHAR, average VARCHAR, stump VARCHAR, catches VARCHAR) | SELECT SUM(high_score) FROM table_name_52 WHERE stump = 0 AND catches = 4 AND average < 56.1 AND inns > 14 |
42,685 | <question>: What is the total number of runs for the player with fewer than 9 Inns? <context>: CREATE TABLE table_name_82 (runs VARCHAR, inns INTEGER) | SELECT COUNT(runs) FROM table_name_82 WHERE inns < 9 |
42,686 | <question>: What is the smallest average for the player with 13 matches and fewer than 7 catches? <context>: CREATE TABLE table_name_82 (average INTEGER, matches VARCHAR, catches VARCHAR) | SELECT MIN(average) FROM table_name_82 WHERE matches = 13 AND catches < 7 |
42,687 | <question>: Which city is the host of the University of Texas? <context>: CREATE TABLE table_name_1 (city VARCHAR, host VARCHAR) | SELECT city FROM table_name_1 WHERE host = "university of texas" |
42,688 | <question>: In which region is the Thompson-Boling arena located? <context>: CREATE TABLE table_name_16 (region VARCHAR, venue VARCHAR) | SELECT region FROM table_name_16 WHERE venue = "thompson-boling arena" |
42,689 | <question>: Who is the host in the city of Philadelphia? <context>: CREATE TABLE table_name_61 (host VARCHAR, city VARCHAR) | SELECT host FROM table_name_61 WHERE city = "philadelphia" |
42,690 | <question>: Which city in the mideast region is the hot of Temple University? <context>: CREATE TABLE table_name_39 (city VARCHAR, region VARCHAR, host VARCHAR) | SELECT city FROM table_name_39 WHERE region = "mideast" AND host = "temple university" |
42,691 | <question>: Which city is the University of Montana located in? <context>: CREATE TABLE table_name_80 (city VARCHAR, host VARCHAR) | SELECT city FROM table_name_80 WHERE host = "university of montana" |
42,692 | <question>: What was the away team score at Hawthorn? <context>: CREATE TABLE table_name_26 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_26 WHERE home_team = "hawthorn" |
42,693 | <question>: Who went to Geelong to play? <context>: CREATE TABLE table_name_61 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_61 WHERE home_team = "geelong" |
42,694 | <question>: Who did Collingwood play at home? <context>: CREATE TABLE table_name_89 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_89 WHERE away_team = "collingwood" |
42,695 | <question>: Which population is the greatest, has a density of 20.3, and an area (km²) larger than 50,350? <context>: CREATE TABLE table_name_1 (population INTEGER, density VARCHAR, area__km²_ VARCHAR) | SELECT MAX(population) FROM table_name_1 WHERE density = 20.3 AND area__km²_ > 50 OFFSET 350 |
42,696 | <question>: Who was the home team at the game held at the Junction Oval? <context>: CREATE TABLE table_name_73 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_73 WHERE venue = "junction oval" |
42,697 | <question>: Where was the game held when Fitzroy was the away team? <context>: CREATE TABLE table_name_24 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_24 WHERE away_team = "fitzroy" |
42,698 | <question>: How many people attended the Rams game against the Kansas City Chiefs? <context>: CREATE TABLE table_name_86 (attendance VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_86 WHERE opponent = "kansas city chiefs" |
42,699 | <question>: What is China's IATA? <context>: CREATE TABLE table_name_58 (iata VARCHAR, country VARCHAR) | SELECT iata FROM table_name_58 WHERE country = "china" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.