question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
When david ashburn richard westbrook is the gt3 winner and 1 is the round what is the length? | CREATE TABLE table_30062172_3 (length VARCHAR, round VARCHAR, gt3_winner VARCHAR) | SELECT length FROM table_30062172_3 WHERE round = 1 AND gt3_winner = "David Ashburn Richard Westbrook" |
What is the average number of goals scored in the FA Cup by Whelan where he had more than 7 total goals? | CREATE TABLE table_name_72 (fa_cup INTEGER, name VARCHAR, total VARCHAR) | SELECT AVG(fa_cup) FROM table_name_72 WHERE name = "whelan" AND total > 7 |
Which home team played against the away team Carlton? | CREATE TABLE table_name_74 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_74 WHERE away_team = "carlton" |
Who are the quarterfinalists for runner-up jimmy connors? | CREATE TABLE table_21584646_10 (quarterfinalists VARCHAR, runner_up VARCHAR) | SELECT quarterfinalists FROM table_21584646_10 WHERE runner_up = "Jimmy Connors" |
What was the score for the game on February 12? | CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_79 WHERE date = "february 12" |
What is Syracuse, when Utica is Union Springs Shale And Limestone, and when Rochester is Union Springs Shale And Limestone? | CREATE TABLE table_name_20 (syracuse VARCHAR, utica VARCHAR, rochester VARCHAR) | SELECT syracuse FROM table_name_20 WHERE utica = "union springs shale and limestone" AND rochester = "union springs shale and limestone" |
What is the highest number of Seats 2006 held by the Christian Democratic Union of Germany Party/Voter Community, with a %2006 higher than 24.6? | CREATE TABLE table_name_79 (seats_2006 INTEGER, parties_and_voter_communities VARCHAR, _percentage_2006 VARCHAR) | SELECT MAX(seats_2006) FROM table_name_79 WHERE parties_and_voter_communities = "christian democratic union of germany" AND _percentage_2006 > 24.6 |
Which team is in 14th position? | CREATE TABLE table_name_20 (team VARCHAR, pos VARCHAR) | SELECT team FROM table_name_20 WHERE pos = "14th" |
How many different outcomes did the final with Paul McNamee as a partner have? | CREATE TABLE table_2201541_3 (outcome VARCHAR, partner VARCHAR) | SELECT COUNT(outcome) FROM table_2201541_3 WHERE partner = "Paul McNamee" |
what is the goals when the goal difference is more than -3, the club is real avilés cf and the goals against is more than 60? | CREATE TABLE table_name_19 (goals_for INTEGER, goals_against VARCHAR, goal_difference VARCHAR, club VARCHAR) | SELECT SUM(goals_for) FROM table_name_19 WHERE goal_difference > -3 AND club = "real avilés cf" AND goals_against > 60 |
If -750 is 45.505, what is the maximum rank? | CREATE TABLE table_1912276_2 (rank INTEGER, __750m VARCHAR) | SELECT MAX(rank) FROM table_1912276_2 WHERE __750m = "45.505" |
Which player's pick number was 25? | CREATE TABLE table_name_79 (player VARCHAR, pick__number VARCHAR) | SELECT player FROM table_name_79 WHERE pick__number = 25 |
What is Length, when Barrel Length is 750mm / 29.5 in? | CREATE TABLE table_name_46 (length VARCHAR, barrel_length VARCHAR) | SELECT length FROM table_name_46 WHERE barrel_length = "750mm / 29.5 in" |
What result had a score of 3–0? | CREATE TABLE table_name_50 (result VARCHAR, score VARCHAR) | SELECT result FROM table_name_50 WHERE score = "3–0" |
What is the points when the try bonus is 1? | CREATE TABLE table_name_83 (points_for VARCHAR, try_bonus VARCHAR) | SELECT points_for FROM table_name_83 WHERE try_bonus = "1" |
When rider John Hopkins had 21 laps, what was the grid? | CREATE TABLE table_name_20 (grid VARCHAR, laps VARCHAR, rider VARCHAR) | SELECT grid FROM table_name_20 WHERE laps = "21" AND rider = "john hopkins" |
What was the Score in the Final against Opponent in the Final Manuel Orantes, prior to 1978? | CREATE TABLE table_name_35 (score_in_the_final VARCHAR, date VARCHAR, opponent_in_the_final VARCHAR) | SELECT score_in_the_final FROM table_name_35 WHERE date < 1978 AND opponent_in_the_final = "manuel orantes" |
What is the Cache for a Number 64 with a Memory of 24 gb qpi 5.86 gt/s? | CREATE TABLE table_name_13 (cache VARCHAR, memory VARCHAR, number VARCHAR) | SELECT cache FROM table_name_13 WHERE memory = "24 gb qpi 5.86 gt/s" AND number = 64 |
Name the number of total for 3 gold and rank less than 3 | CREATE TABLE table_name_25 (total VARCHAR, gold VARCHAR, rank VARCHAR) | SELECT COUNT(total) FROM table_name_25 WHERE gold = 3 AND rank < 3 |
What was the date when the crowd was larger than 30,495? | CREATE TABLE table_name_58 (date VARCHAR, crowd INTEGER) | SELECT date FROM table_name_58 WHERE crowd > 30 OFFSET 495 |
What is the Frequency for Model Number c3 850? | CREATE TABLE table_name_99 (frequency VARCHAR, model_number VARCHAR) | SELECT frequency FROM table_name_99 WHERE model_number = "c3 850" |
What is the name of the City with December 21 as a Date? | CREATE TABLE table_name_94 (city VARCHAR, date VARCHAR) | SELECT city FROM table_name_94 WHERE date = "december 21" |
What's the type of the school whose students are nicknamed Chargers? | CREATE TABLE table_1969577_3 (type VARCHAR, nickname VARCHAR) | SELECT type FROM table_1969577_3 WHERE nickname = "Chargers" |
What player belongs to Northwestern College? | CREATE TABLE table_name_34 (player VARCHAR, college VARCHAR) | SELECT player FROM table_name_34 WHERE college = "northwestern" |
what's the preliminaries with average being 9.360 | CREATE TABLE table_11970261_2 (preliminaries VARCHAR, average VARCHAR) | SELECT preliminaries FROM table_11970261_2 WHERE average = "9.360" |
How many people were in the crowd for a game than had carlton as the visiting team? | CREATE TABLE table_name_31 (crowd VARCHAR, away_team VARCHAR) | SELECT crowd FROM table_name_31 WHERE away_team = "carlton" |
Which School has a Capacity larger than 730, and an Ofsted smaller than 106135, and a Locality of heaton mersey? | CREATE TABLE table_name_89 (school VARCHAR, locality VARCHAR, capacity VARCHAR, ofsted VARCHAR) | SELECT school FROM table_name_89 WHERE capacity > 730 AND ofsted < 106135 AND locality = "heaton mersey" |
What was the average finish the year Bodine finished 3rd? | CREATE TABLE table_2387790_2 (avg_finish VARCHAR, position VARCHAR) | SELECT avg_finish FROM table_2387790_2 WHERE position = "3rd" |
What is the Year with a Number that is larger than 34? | CREATE TABLE table_name_96 (year VARCHAR, number INTEGER) | SELECT year FROM table_name_96 WHERE number > 34 |
Name the preliminary for north carolina | CREATE TABLE table_17516967_1 (preliminary VARCHAR, state VARCHAR) | SELECT preliminary FROM table_17516967_1 WHERE state = "North Carolina" |
What are the names of perpetrators whose country is not "China"? | CREATE TABLE perpetrator (People_ID VARCHAR, Country VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR) | SELECT T1.Name FROM people AS T1 JOIN perpetrator AS T2 ON T1.People_ID = T2.People_ID WHERE T2.Country <> "China" |
Show the names of members and the location of performances they attended in ascending alphabetical order of their names. | CREATE TABLE performance (Location VARCHAR, Performance_ID VARCHAR); CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE member_attendance (Member_ID VARCHAR, Performance_ID VARCHAR) | SELECT T2.Name, T3.Location FROM member_attendance AS T1 JOIN member AS T2 ON T1.Member_ID = T2.Member_ID JOIN performance AS T3 ON T1.Performance_ID = T3.Performance_ID ORDER BY T2.Name |
What years did Elden Campbell category:articles with hcards and jersesy number of 41 play? | CREATE TABLE table_name_31 (years VARCHAR, jersey_number_s_ VARCHAR, player VARCHAR) | SELECT years FROM table_name_31 WHERE jersey_number_s_ = 41 AND player = "elden campbell category:articles with hcards" |
What is the Label of the September 20, 2008 release with Catalog number RTRADCD491? | CREATE TABLE table_name_22 (label VARCHAR, catalog VARCHAR, date VARCHAR) | SELECT label FROM table_name_22 WHERE catalog = "rtradcd491" AND date = "september 20, 2008" |
What is the median household income for Woodside? | CREATE TABLE table_1447085_1 (median_house__hold_income VARCHAR, place VARCHAR) | SELECT median_house__hold_income FROM table_1447085_1 WHERE place = "Woodside" |
Who had the highest rebounds on game 5? | CREATE TABLE table_name_33 (high_rebounds VARCHAR, game VARCHAR) | SELECT high_rebounds FROM table_name_33 WHERE game = 5 |
What is the Total that has a number of Nation and a Gold smaller than 16? | CREATE TABLE table_name_96 (total INTEGER, nation VARCHAR, gold VARCHAR) | SELECT MIN(total) FROM table_name_96 WHERE nation = "total" AND gold < 16 |
What are the names of players who have the best dribbling? | CREATE TABLE Player (player_name VARCHAR, player_api_id VARCHAR); CREATE TABLE Player_Attributes (player_api_id VARCHAR, dribbling VARCHAR); CREATE TABLE Player_Attributes (overall_rating INTEGER) | SELECT DISTINCT T1.player_name FROM Player AS T1 JOIN Player_Attributes AS T2 ON T1.player_api_id = T2.player_api_id WHERE T2.dribbling = (SELECT MAX(overall_rating) FROM Player_Attributes) |
Find the average age of students who live in the city with code "NYC" and have secretary votes in the spring election cycle. | CREATE TABLE STUDENT (Age INTEGER, StuID VARCHAR, city_code VARCHAR); CREATE TABLE VOTING_RECORD (Election_Cycle VARCHAR) | SELECT AVG(T1.Age) FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = SECRETARY_Vote WHERE T1.city_code = "NYC" AND T2.Election_Cycle = "Spring" |
Which Fencing Victories (pts) has a Total of 5640? | CREATE TABLE table_name_68 (fencing_victories__pts_ VARCHAR, total VARCHAR) | SELECT fencing_victories__pts_ FROM table_name_68 WHERE total = 5640 |
How many laps did the 6th placed in 1998 complete? | CREATE TABLE table_name_90 (laps INTEGER, pos VARCHAR, year VARCHAR) | SELECT SUM(laps) FROM table_name_90 WHERE pos = "6th" AND year = 1998 |
Where was the 1966 competition with a winner of Gary Cowan held? | CREATE TABLE table_name_18 (venue VARCHAR, winner VARCHAR, year VARCHAR) | SELECT venue FROM table_name_18 WHERE winner = "gary cowan" AND year = "1966" |
What shows for 202 when the 1994 is A, the 1989 is NME, and the 199 is 2R? | CREATE TABLE table_name_3 (Id VARCHAR) | SELECT 2002 FROM table_name_3 WHERE 1994 = "a" AND 1989 = "nme" AND 1999 = "2r" |
What is the biggest clean and jerk number when snatch was less than 150 and the bodyweight was bigger than 93.13? | CREATE TABLE table_name_91 (_jerk VARCHAR, clean_ INTEGER, snatch VARCHAR, bodyweight VARCHAR) | SELECT MAX(clean_) & _jerk FROM table_name_91 WHERE snatch < 150 AND bodyweight > 93.13 |
What is To Par, when Money ( $ ) is Playoff, and when Score is 68-73-77-65=283? | CREATE TABLE table_name_97 (to_par VARCHAR, money___$__ VARCHAR, score VARCHAR) | SELECT to_par FROM table_name_97 WHERE money___$__ = "playoff" AND score = 68 - 73 - 77 - 65 = 283 |
Name the vertical for 明勾(ys月南) | CREATE TABLE table_25519358_1 (vertical_0_b VARCHAR, horizontal_0_a VARCHAR) | SELECT vertical_0_b FROM table_25519358_1 WHERE horizontal_0_a = "明勾(YS月南)" |
What Game has a Location of Philadelphia Spectrum and an Opponent of New York Knicks? | CREATE TABLE table_name_91 (game VARCHAR, location VARCHAR, opponent VARCHAR) | SELECT game FROM table_name_91 WHERE location = "philadelphia spectrum" AND opponent = "new york knicks" |
How many silver medals for the nation with fewer than 1 golds and total less than 1? | CREATE TABLE table_name_57 (silver VARCHAR, gold VARCHAR, total VARCHAR) | SELECT COUNT(silver) FROM table_name_57 WHERE gold < 1 AND total < 1 |
What team was the bike with a 350cc class, over 2 points, and 1 win? | CREATE TABLE table_name_47 (team VARCHAR, wins VARCHAR, class VARCHAR, points VARCHAR) | SELECT team FROM table_name_47 WHERE class = "350cc" AND points > 2 AND wins = 1 |
Who is the home team on March 5? | CREATE TABLE table_name_52 (home VARCHAR, date VARCHAR) | SELECT home FROM table_name_52 WHERE date = "march 5" |
How many high assists where there for the team of caja laboral? | CREATE TABLE table_27756474_2 (high_assists VARCHAR, team VARCHAR) | SELECT COUNT(high_assists) FROM table_27756474_2 WHERE team = "Caja Laboral" |
Which Attendance has an Opponent of green bay packers, and a Week larger than 10? | CREATE TABLE table_name_95 (attendance INTEGER, opponent VARCHAR, week VARCHAR) | SELECT MIN(attendance) FROM table_name_95 WHERE opponent = "green bay packers" AND week > 10 |
What is the population where the rank is higher than 51 and the Median House-hold income is $25,250? | CREATE TABLE table_name_50 (population INTEGER, rank VARCHAR, median_house__hold_income VARCHAR) | SELECT SUM(population) FROM table_name_50 WHERE rank > 51 AND median_house__hold_income = "$25,250" |
What was the smallest crowd that Melbourne played for at home? | CREATE TABLE table_name_18 (crowd INTEGER, home_team VARCHAR) | SELECT MIN(crowd) FROM table_name_18 WHERE home_team = "melbourne" |
Which Points difference has Points against of 786? | CREATE TABLE table_name_20 (points_difference VARCHAR, points_against VARCHAR) | SELECT points_difference FROM table_name_20 WHERE points_against = "786" |
Name the average week for result of l 28–17 | CREATE TABLE table_name_56 (week INTEGER, result VARCHAR) | SELECT AVG(week) FROM table_name_56 WHERE result = "l 28–17" |
What are the sum of points in 1989 with 0 wins? | CREATE TABLE table_name_85 (points INTEGER, wins VARCHAR, year VARCHAR) | SELECT SUM(points) FROM table_name_85 WHERE wins = 0 AND year = 1989 |
Name the number of series episode for s piston | CREATE TABLE table_15187735_8 (series_ep VARCHAR, segment_a VARCHAR) | SELECT COUNT(series_ep) FROM table_15187735_8 WHERE segment_a = "s Piston" |
What city has the museum that holds the Sue specimen? | CREATE TABLE table_name_48 (museum VARCHAR, name VARCHAR) | SELECT museum AS city FROM table_name_48 WHERE name = "sue" |
Who played as Team 2 against Team 1 SC Gagnoa? | CREATE TABLE table_name_73 (team_2 VARCHAR, team_1 VARCHAR) | SELECT team_2 FROM table_name_73 WHERE team_1 = "sc gagnoa" |
In what district was John E. Miller the incumbent? | CREATE TABLE table_1342338_5 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_1342338_5 WHERE incumbent = "John E. Miller" |
What is Round, when School/Club Team is "Tennessee-Chattanooga"? | CREATE TABLE table_name_62 (round VARCHAR, school_club_team VARCHAR) | SELECT round FROM table_name_62 WHERE school_club_team = "tennessee-chattanooga" |
What was the attendance like for week 8? | CREATE TABLE table_name_45 (attendance VARCHAR, week VARCHAR) | SELECT attendance FROM table_name_45 WHERE week = 8 |
What is the Arrival time of the Patna Junction Station? | CREATE TABLE table_name_62 (arrival VARCHAR, station_name VARCHAR) | SELECT arrival FROM table_name_62 WHERE station_name = "patna junction" |
How many HC climbs had 1 visit more recently than 1984, a first HC climb before 1994, and a height of 1900? | CREATE TABLE table_name_35 (no_of_hc_climbs VARCHAR, height__m_ VARCHAR, first_time_as_hc_climb VARCHAR, no_of_times_visited VARCHAR, most_recent VARCHAR) | SELECT no_of_hc_climbs FROM table_name_35 WHERE no_of_times_visited = 1 AND most_recent > 1984 AND first_time_as_hc_climb < 1994 AND height__m_ = "1900" |
How many draws were there when there were points less than 23, 6 losses, and more than 21 against? | CREATE TABLE table_name_49 (drawn VARCHAR, against VARCHAR, points VARCHAR, lost VARCHAR) | SELECT COUNT(drawn) FROM table_name_49 WHERE points < 23 AND lost = 6 AND against > 21 |
What day did Alex Best exit? | CREATE TABLE table_name_26 (exited VARCHAR, celebrity VARCHAR) | SELECT exited FROM table_name_26 WHERE celebrity = "alex best" |
Name the manufacturer with grid of 11 | CREATE TABLE table_name_43 (manufacturer VARCHAR, grid VARCHAR) | SELECT manufacturer FROM table_name_43 WHERE grid = 11 |
What is the Home team at the Lincoln City Away game? | CREATE TABLE table_name_80 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_80 WHERE away_team = "lincoln city" |
Who directed the episode aired on February 27, 2009? | CREATE TABLE table_18424435_3 (directed_by VARCHAR, us_air_date VARCHAR) | SELECT directed_by FROM table_18424435_3 WHERE us_air_date = "February 27, 2009" |
What is the club that has played 22 rounds, has a drawn score of 0, has lost 14, and whose losing BP is 5? | CREATE TABLE table_name_96 (club VARCHAR, losing_bp VARCHAR, lost VARCHAR, played VARCHAR, drawn VARCHAR) | SELECT club FROM table_name_96 WHERE played = "22" AND drawn = "0" AND lost = "14" AND losing_bp = "5" |
Who was the finalist in the 2010 season in the host city tartu? | CREATE TABLE table_name_57 (finalist VARCHAR, host_city VARCHAR, season VARCHAR) | SELECT finalist FROM table_name_57 WHERE host_city = "tartu" AND season = 2010 |
What is the number of gold medals when the number of bronze medals is 8? | CREATE TABLE table_name_88 (gold VARCHAR, bronze VARCHAR) | SELECT gold FROM table_name_88 WHERE bronze = "8" |
What is the former school of the player from North Port, FL? | CREATE TABLE table_29418619_1 (former_school VARCHAR, hometown VARCHAR) | SELECT former_school FROM table_29418619_1 WHERE hometown = "North Port, FL" |
When the winners votes were 50.54% who were the members of parliment? | CREATE TABLE table_18106841_1 (members_of_parliament VARCHAR, winners__percentage_votes VARCHAR) | SELECT members_of_parliament FROM table_18106841_1 WHERE winners__percentage_votes = "50.54%" |
What's the center of the Artsakh province? | CREATE TABLE table_23887174_1 (center VARCHAR, province__ashkharh_ VARCHAR) | SELECT center FROM table_23887174_1 WHERE province__ashkharh_ = "Artsakh" |
What is the earliest season with more than 14 races and more than 4 podiums? | CREATE TABLE table_name_72 (season INTEGER, races VARCHAR, podiums VARCHAR) | SELECT MIN(season) FROM table_name_72 WHERE races > 14 AND podiums > 4 |
What is the week 13 Nov 30 standing with USC (7-3) on week 11 Nov 16? | CREATE TABLE table_name_36 (week_13_nov_30 VARCHAR, week_11_nov_16 VARCHAR) | SELECT week_13_nov_30 FROM table_name_36 WHERE week_11_nov_16 = "usc (7-3)" |
What is Player, when Country is "United States", and when Place is "6"? | CREATE TABLE table_name_41 (player VARCHAR, country VARCHAR, place VARCHAR) | SELECT player FROM table_name_41 WHERE country = "united states" AND place = "6" |
what is the position when the pick is higher than 33 and the school is tottenville hs (staten island, ny)? | CREATE TABLE table_name_16 (position VARCHAR, pick VARCHAR, school VARCHAR) | SELECT position FROM table_name_16 WHERE pick > 33 AND school = "tottenville hs (staten island, ny)" |
Which race 3 has points greater than 36, and 2 as the race 1? | CREATE TABLE table_name_93 (race_3 VARCHAR, points VARCHAR, race_1 VARCHAR) | SELECT race_3 FROM table_name_93 WHERE points > 36 AND race_1 = 2 |
In what Year is the Works no. 2040-2049? | CREATE TABLE table_name_86 (year VARCHAR, works_no VARCHAR) | SELECT year FROM table_name_86 WHERE works_no = "2040-2049" |
When South warrnambool has more than 8 wins, what is the least amount of losses? | CREATE TABLE table_name_64 (losses INTEGER, club VARCHAR, wins VARCHAR) | SELECT MIN(losses) FROM table_name_64 WHERE club = "south warrnambool" AND wins > 8 |
What is the democratic seat plurality with partisan order of New Hampshire? | CREATE TABLE table_name_91 (democratic_seat_plurality VARCHAR, state_ranked_in_partisan_order VARCHAR) | SELECT democratic_seat_plurality FROM table_name_91 WHERE state_ranked_in_partisan_order = "new hampshire" |
How many wins have 24 points? | CREATE TABLE table_18703133_6 (wins VARCHAR, points VARCHAR) | SELECT wins FROM table_18703133_6 WHERE points = 24 |
If the population is 2188, what was the median household income? | CREATE TABLE table_1840495_2 (median_house__hold_income VARCHAR, population VARCHAR) | SELECT median_house__hold_income FROM table_1840495_2 WHERE population = 2188 |
What player has 12 caps? | CREATE TABLE table_name_36 (player VARCHAR, caps VARCHAR) | SELECT player FROM table_name_36 WHERE caps = 12 |
What is the lowest value for runs when the average is 42.36? | CREATE TABLE table_2985664_8 (runs INTEGER, average VARCHAR) | SELECT MIN(runs) FROM table_2985664_8 WHERE average = "42.36" |
What is the average crowd size when fitzroy plays at home? | CREATE TABLE table_name_41 (crowd INTEGER, home_team VARCHAR) | SELECT AVG(crowd) FROM table_name_41 WHERE home_team = "fitzroy" |
Name the Comp which has a Name of smith? | CREATE TABLE table_name_71 (comp VARCHAR, name VARCHAR) | SELECT comp FROM table_name_71 WHERE name = "smith" |
What is the money rank of the poker player with the highest earnings? | CREATE TABLE poker_player (Money_Rank VARCHAR, Earnings VARCHAR) | SELECT Money_Rank FROM poker_player ORDER BY Earnings DESC LIMIT 1 |
Who Eliminated Kane? | CREATE TABLE table_name_63 (eliminated_by VARCHAR, wrestler VARCHAR) | SELECT eliminated_by FROM table_name_63 WHERE wrestler = "kane" |
What kind of engine is in the car for Scuderia Ferrari that went all rounds? | CREATE TABLE table_name_28 (engine VARCHAR, rounds VARCHAR, entrant VARCHAR) | SELECT engine FROM table_name_28 WHERE rounds = "all" AND entrant = "scuderia ferrari" |
IN THE ISSUE WHERE NICOLE NARAIN WAS THE CENTERFOLD MODEL, WHO WAS THE INTERVIEW SUBJECT? | CREATE TABLE table_1566852_3 (interview_subject VARCHAR, centerfold_model VARCHAR) | SELECT interview_subject FROM table_1566852_3 WHERE centerfold_model = "Nicole Narain" |
Attendance of 55,340 had what opponent? | CREATE TABLE table_name_58 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_58 WHERE attendance = "55,340" |
Where did the games that had Wisconsin as big ten team take place? | CREATE TABLE table_29535057_4 (location VARCHAR, big_ten_team VARCHAR) | SELECT location FROM table_29535057_4 WHERE big_ten_team = "Wisconsin" |
List the studios which average gross is above 4500000. | CREATE TABLE film (Studio VARCHAR, Gross_in_dollar INTEGER) | SELECT Studio FROM film GROUP BY Studio HAVING AVG(Gross_in_dollar) >= 4500000 |
What was the home team's score when they played at Lake Oval? | CREATE TABLE table_name_96 (home_team VARCHAR, venue VARCHAR) | SELECT home_team AS score FROM table_name_96 WHERE venue = "lake oval" |
what's the earliest year that serena williams had more than 2 sets? | CREATE TABLE table_name_47 (year INTEGER, player VARCHAR, sets VARCHAR) | SELECT MIN(year) FROM table_name_47 WHERE player = "serena williams" AND sets > 2 |
What is the NTSC M for Pal M 525/60? | CREATE TABLE table_name_23 (ntsc_m VARCHAR, pal_m VARCHAR) | SELECT ntsc_m FROM table_name_23 WHERE pal_m = "525/60" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.