answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT SUM(top_10) FROM table_name_82 WHERE avg_start = 18.9 | How many times did the team with an average start of 18.9 make the top 10? | CREATE TABLE table_name_82 (top_10 INTEGER, avg_start VARCHAR) |
SELECT COUNT(release_date) FROM table_23981741_1 WHERE year = 1988 AND additional_rock_band_3_features = "None" | How many release dates are there for year of 1988 and additional rock band 3 features is none? | CREATE TABLE table_23981741_1 (release_date VARCHAR, year VARCHAR, additional_rock_band_3_features VARCHAR) |
SELECT home FROM table_name_6 WHERE date = "april 6" | Was it a home game on the date of April 6? | CREATE TABLE table_name_6 (home VARCHAR, date VARCHAR) |
SELECT scores FROM table_23575917_6 WHERE lees_team = "Kevin Bridges and Katy Wix" | When kevin bridges and katy wix are both on the less team what is the score? | CREATE TABLE table_23575917_6 (scores VARCHAR, lees_team VARCHAR) |
SELECT venue FROM table_name_41 WHERE date = "23 october 1966" | What is the venue of the game that was played on 23 October 1966? | CREATE TABLE table_name_41 (venue VARCHAR, date VARCHAR) |
SELECT home_team FROM table_name_59 WHERE venue = "glenferrie oval" | What is glenferrie oval's home team? | CREATE TABLE table_name_59 (home_team VARCHAR, venue VARCHAR) |
SELECT MIN(touchdowns) FROM table_name_66 WHERE points > 5 AND field_goals = 0 AND player = "snow" AND extra_points > 0 | What's the number of touchdowns that Snow made that had 0 field goals, more than 5 points, and more than 0 extra points? | CREATE TABLE table_name_66 (touchdowns INTEGER, extra_points VARCHAR, player VARCHAR, points VARCHAR, field_goals VARCHAR) |
SELECT COUNT(pommel_horse) FROM table_name_52 WHERE total < 230.019 AND team = "china (chn)" AND vault < 38.437 | How many pommel horses have a Total smaller than 230.019, a Team of china (chn), and a Vault smaller than 38.437? | CREATE TABLE table_name_52 (pommel_horse VARCHAR, vault VARCHAR, total VARCHAR, team VARCHAR) |
SELECT result FROM table_name_36 WHERE week = 16 | What was the result for week 16? | CREATE TABLE table_name_36 (result VARCHAR, week VARCHAR) |
SELECT MAX(goals_for) FROM table_name_74 WHERE position > 2 AND lost > 18 AND team = "matlock town" AND goals_against > 79 | Which Goals For has a Position larger than 2, a Lost larger than 18, a Team of matlock town, and a Goals Against larger than 79? | CREATE TABLE table_name_74 (goals_for INTEGER, goals_against VARCHAR, team VARCHAR, position VARCHAR, lost VARCHAR) |
SELECT COUNT(dvd_release) FROM table_19982699_1 WHERE director = "David DeCoteau" | How many dvd releases where directed by david decoteau? | CREATE TABLE table_19982699_1 (dvd_release VARCHAR, director VARCHAR) |
SELECT position FROM table_name_35 WHERE player = "adam rachel" | What position does adam rachel play? | CREATE TABLE table_name_35 (position VARCHAR, player VARCHAR) |
SELECT no FROM table_11950720_4 WHERE date_of_birth = "15 November 1973" | What is the number when birthday is 15 november 1973? | CREATE TABLE table_11950720_4 (no VARCHAR, date_of_birth VARCHAR) |
SELECT location FROM table_name_50 WHERE year = "2009" | What was the location in 2009? | CREATE TABLE table_name_50 (location VARCHAR, year VARCHAR) |
SELECT COUNT(pick) FROM table_name_98 WHERE position = "ot" AND overall > 91 AND round > 21 AND college = "mississippi" | What is the total number of Pick, when Position is OT, when Overall is greater than 91, when Round is greater than 21, and when College is Mississippi? | CREATE TABLE table_name_98 (pick VARCHAR, college VARCHAR, round VARCHAR, position VARCHAR, overall VARCHAR) |
SELECT COUNT(attendance) FROM table_name_3 WHERE result = "l 18-6" | Tell me the total number of attendance for result of l 18-6 | CREATE TABLE table_name_3 (attendance VARCHAR, result VARCHAR) |
SELECT general_classification FROM table_name_94 WHERE mountains_classification = "christophe moreau" AND team_classification = "team csc" | What is the general classification for a mountains value of Christophe Moreau and a Team winner of Team CSC? | CREATE TABLE table_name_94 (general_classification VARCHAR, mountains_classification VARCHAR, team_classification VARCHAR) |
SELECT AVG(games) FROM table_name_80 WHERE points = 6 AND lost < 2 | What is the average number of games associated with 6 points and under 2 losses? | CREATE TABLE table_name_80 (games INTEGER, points VARCHAR, lost VARCHAR) |
SELECT SUM(events) FROM table_name_80 WHERE top_10 = 7 AND top_5 > 4 | What is the sum of Events, when Top-10 is 7, and when Top-5 is greater than 4? | CREATE TABLE table_name_80 (events INTEGER, top_10 VARCHAR, top_5 VARCHAR) |
SELECT name, city, country, elevation FROM airports WHERE city = 'New York' | Find the name, city, country, and altitude (or elevation) of the airports in the city of New York. | CREATE TABLE airports (name VARCHAR, city VARCHAR, country VARCHAR, elevation VARCHAR) |
SELECT date FROM table_name_32 WHERE catalog = "alca-275" | On what date was the record with catalog ALCA-275 released? | CREATE TABLE table_name_32 (date VARCHAR, catalog VARCHAR) |
SELECT builder FROM table_name_92 WHERE works_number = "323" | Who was the Builder for the locomotive that has a works number of 323? | CREATE TABLE table_name_92 (builder VARCHAR, works_number VARCHAR) |
SELECT date FROM table_name_92 WHERE game = 4 | What was the date of game 4? | CREATE TABLE table_name_92 (date VARCHAR, game VARCHAR) |
SELECT AVG(code) FROM table_name_35 WHERE regional_county_municipality = "matawinie" AND type = "p" AND name = "saint-damien" | What is the code for Saint-Damien in Matawinie with a type p? | CREATE TABLE table_name_35 (code INTEGER, name VARCHAR, regional_county_municipality VARCHAR, type VARCHAR) |
SELECT venue FROM table_name_32 WHERE opponents = "queens park rangers" | What venue held that game against the Queens Park Rangers? | CREATE TABLE table_name_32 (venue VARCHAR, opponents VARCHAR) |
SELECT launched FROM table_name_31 WHERE time_elapsed = "1991 days (5 yr, 5 mo, 12 d)" | What Launched has Time elapsed of 1991 days (5 yr, 5 mo, 12 d)? | CREATE TABLE table_name_31 (launched VARCHAR, time_elapsed VARCHAR) |
SELECT COUNT(clean_electric_grid_california__san_francisco_) FROM table_23840623_4 WHERE vehicle = "Nissan Leaf" | How many clean electric grid california (san francisco) figures are given for the Nissan Leaf? | CREATE TABLE table_23840623_4 (clean_electric_grid_california__san_francisco_ VARCHAR, vehicle VARCHAR) |
SELECT class FROM table_name_17 WHERE power = "22500 watts" | what is the class when the power is 22500 watts? | CREATE TABLE table_name_17 (class VARCHAR, power VARCHAR) |
SELECT MAX(round) FROM table_name_86 WHERE player = "mike taylor" AND pick > 55 | WHAT IS THE HIGHEST ROUND FOR MIKE TAYLOR, WITH PICK HIGHER THAN 55? | CREATE TABLE table_name_86 (round INTEGER, player VARCHAR, pick VARCHAR) |
SELECT rider FROM table_23465864_5 WHERE mon_24_aug = "21' 12.02 106.781mph" | What is every rider on Monday August 24 at 21' 12.02 106.781mph? | CREATE TABLE table_23465864_5 (rider VARCHAR, mon_24_aug VARCHAR) |
SELECT AVG(heat) FROM table_name_43 WHERE time = "59.11" AND lane > 3 | What is the average of all Heats of competitors with a Time of 59.11 and a lane higher than 3? | CREATE TABLE table_name_43 (heat INTEGER, time VARCHAR, lane VARCHAR) |
SELECT school FROM table_name_27 WHERE team = "kansas city royals" | What school has the Kansas City Royals for a team? | CREATE TABLE table_name_27 (school VARCHAR, team VARCHAR) |
SELECT AVG(overall) FROM table_name_49 WHERE school_club_team = "duke" AND round > 9 | What is the average overall rank of all players drafted from Duke after round 9? | CREATE TABLE table_name_49 (overall INTEGER, school_club_team VARCHAR, round VARCHAR) |
SELECT COUNT(*) FROM Flights AS T1 JOIN Airports AS T2 ON T1.DestAirport = T2.AirportCode WHERE T2.city = "Aberdeen" OR T2.city = "Abilene" | Find the number of flights landing in the city of Aberdeen or Abilene. | CREATE TABLE Airports (AirportCode VARCHAR, city VARCHAR); CREATE TABLE Flights (DestAirport VARCHAR) |
SELECT AVG(year) FROM table_name_59 WHERE entrant = "elf team tyrrell" AND points = "34" | What year did Elf Team Tyrrell have 34 points? | CREATE TABLE table_name_59 (year INTEGER, entrant VARCHAR, points VARCHAR) |
SELECT avg_speed FROM table_23018775_3 WHERE total_time = "1:30.4842" | What was the average speed where the total time was 1:30.4842? | CREATE TABLE table_23018775_3 (avg_speed VARCHAR, total_time VARCHAR) |
SELECT result FROM table_name_1 WHERE film_title = "paljas" | What was the result for the fil Paljas? | CREATE TABLE table_name_1 (result VARCHAR, film_title VARCHAR) |
SELECT team FROM table_name_40 WHERE year = 1951 | Which team was in 1951? | CREATE TABLE table_name_40 (team VARCHAR, year VARCHAR) |
SELECT race_winner FROM table_name_47 WHERE circuit = "sachsenring" | Who won the race circuit of sachsenring? | CREATE TABLE table_name_47 (race_winner VARCHAR, circuit VARCHAR) |
SELECT reverse FROM table_1682865_1 WHERE £1_fraction = "1/480" | What is the reverse when the £1 fraction is 1/480? | CREATE TABLE table_1682865_1 (reverse VARCHAR, £1_fraction VARCHAR) |
SELECT MIN(polish_cup) FROM table_name_47 WHERE position = "midfielder" AND player = "miroslav radović" AND ekstraklasa < 1 | What is the lowest Polish Cup, when Position is "Midfielder", when Player is "Miroslav Radović", and when Ekstraklasa is less than 1? | CREATE TABLE table_name_47 (polish_cup INTEGER, ekstraklasa VARCHAR, position VARCHAR, player VARCHAR) |
SELECT score FROM table_name_26 WHERE decision = "parent" AND visitor = "philadelphia" AND date = "january 27" | Decision of parent, and a Visitor of Philadelphia, and a Date of January 27 had what score? | CREATE TABLE table_name_26 (score VARCHAR, date VARCHAR, decision VARCHAR, visitor VARCHAR) |
SELECT thursday_iuppiter__jupiter_ FROM table_1277350_1 WHERE tuesday_mars__mars_ = "Marterì" | what's the thursday iuppiter (jupiter) with tuesday mars (mars) being marterì | CREATE TABLE table_1277350_1 (thursday_iuppiter__jupiter_ VARCHAR, tuesday_mars__mars_ VARCHAR) |
SELECT monarch FROM table_26460435_8 WHERE heir = "Thado Minsaw" | Who is the monarch with the heir thado minsaw? | CREATE TABLE table_26460435_8 (monarch VARCHAR, heir VARCHAR) |
SELECT date FROM table_name_20 WHERE home_team = "cuba" | What is the date with Cuba is Home team? | CREATE TABLE table_name_20 (date VARCHAR, home_team VARCHAR) |
SELECT candidates FROM table_19753079_12 WHERE district = "Florida 10" | Who were candidates in Florida 10 district? | CREATE TABLE table_19753079_12 (candidates VARCHAR, district VARCHAR) |
SELECT id FROM tv_channel GROUP BY country HAVING COUNT(*) > 2 | find id of the tv channels that from the countries where have more than two tv channels. | CREATE TABLE tv_channel (id VARCHAR, country VARCHAR) |
SELECT result FROM table_14928423_1 WHERE original_title = "Γолемата Вода" | is γолемата вода nominated for anything? | CREATE TABLE table_14928423_1 (result VARCHAR, original_title VARCHAR) |
SELECT winner FROM table_name_65 WHERE third_place = "goran ivanišević" | What is the name of the winner when Goran Ivanišević was in third place? | CREATE TABLE table_name_65 (winner VARCHAR, third_place VARCHAR) |
SELECT episode_number_production_number FROM table_24222929_4 WHERE title = "Tasers and Mind Erasers" | Name the episode number for tasers and mind erasers | CREATE TABLE table_24222929_4 (episode_number_production_number VARCHAR, title VARCHAR) |
SELECT points_for FROM table_name_8 WHERE points_against = "points against" | what's the points total when points against was points against? | CREATE TABLE table_name_8 (points_for VARCHAR, points_against VARCHAR) |
SELECT average_ratings FROM table_name_32 WHERE episodes = "11" AND tv_station = "fuji tv" AND japanese_title = "プロポーズ大作戦" | What are the Ratings of Japanese Title プロポーズ大作戦 episode 11 on Fuji TV station? | CREATE TABLE table_name_32 (average_ratings VARCHAR, japanese_title VARCHAR, episodes VARCHAR, tv_station VARCHAR) |
SELECT tournament FROM table_name_93 WHERE partner = "julian knowle" | Which tournament features the partner julian knowle? | CREATE TABLE table_name_93 (tournament VARCHAR, partner VARCHAR) |
SELECT Party, COUNT(*) FROM representative GROUP BY Party | What are the different parties of representative? Show the party name and the number of representatives in each party. | CREATE TABLE representative (Party VARCHAR) |
SELECT winner FROM table_name_25 WHERE stage = "11" | Who was the winner of stage 11? | CREATE TABLE table_name_25 (winner VARCHAR, stage VARCHAR) |
SELECT MAX(wins__total_) FROM table_name_68 WHERE wins__indoor_ = 0 AND wins__outdoor_ = 1 AND rank < 7 | Name the most wins total with wins indoor of 0 and wins outdoor of 1 with rank less than 7 | CREATE TABLE table_name_68 (wins__total_ INTEGER, rank VARCHAR, wins__indoor_ VARCHAR, wins__outdoor_ VARCHAR) |
SELECT grid FROM table_20159025_1 WHERE part_1 = "1:31.063" | On what grid was the time for part 1 1:31.063? | CREATE TABLE table_20159025_1 (grid VARCHAR, part_1 VARCHAR) |
SELECT opponent FROM table_name_22 WHERE round = "qf replay" | Which Opponent has a Round of qf replay? | CREATE TABLE table_name_22 (opponent VARCHAR, round VARCHAR) |
SELECT MAX(game) FROM table_27755784_10 | What is the highest game number? | CREATE TABLE table_27755784_10 (game INTEGER) |
SELECT current_status FROM table_1353096_2 WHERE station = "KDAF **" | What is the current status of the KDAF ** Station? | CREATE TABLE table_1353096_2 (current_status VARCHAR, station VARCHAR) |
SELECT date, zip_code FROM weather WHERE max_temperature_f >= 80 | When and in what zip code did max temperature reach 80? | CREATE TABLE weather (date VARCHAR, zip_code VARCHAR, max_temperature_f VARCHAR) |
SELECT DISTINCT Police_force FROM county_public_safety WHERE LOCATION <> "East" | List the distinct police forces of counties whose location is not on east side. | CREATE TABLE county_public_safety (Police_force VARCHAR, LOCATION VARCHAR) |
SELECT player FROM table_1213511_5 WHERE nationality = "Canada" AND pick__number = 65 | who is the player with the nationality of canada and pick # is 65? | CREATE TABLE table_1213511_5 (player VARCHAR, nationality VARCHAR, pick__number VARCHAR) |
SELECT decision FROM table_name_53 WHERE record = "29–18–6" | Which Decision has a Record of 29–18–6? | CREATE TABLE table_name_53 (decision VARCHAR, record VARCHAR) |
SELECT AVG(year) FROM table_name_95 WHERE margin = 46 | Name the average year for 46 margin | CREATE TABLE table_name_95 (year INTEGER, margin VARCHAR) |
SELECT MIN(series_number) FROM table_13505192_3 WHERE season_number = 24 | What is the series number for season episode 24? | CREATE TABLE table_13505192_3 (series_number INTEGER, season_number VARCHAR) |
SELECT group FROM table_name_91 WHERE official_history = "david d'angers" | Which group has David D'Angers as the official history? | CREATE TABLE table_name_91 (group VARCHAR, official_history VARCHAR) |
SELECT date FROM table_name_76 WHERE visitor = "boston" | Which Date has a Visitor of boston? | CREATE TABLE table_name_76 (date VARCHAR, visitor VARCHAR) |
SELECT COUNT(DISTINCT major), COUNT(DISTINCT city_code) FROM student | Find the numbers of different majors and cities. | CREATE TABLE student (major VARCHAR, city_code VARCHAR) |
SELECT MAX(week) FROM table_name_52 WHERE opponent = "green bay packers" | Which week with Green Bay Packers as an opponent is the highest? | CREATE TABLE table_name_52 (week INTEGER, opponent VARCHAR) |
SELECT name FROM table_name_9 WHERE year > 2001 AND length = "52 x 20 mins" | Which Name has a Year larger than 2001, and a Length of 52 x 20 mins? | CREATE TABLE table_name_9 (name VARCHAR, year VARCHAR, length VARCHAR) |
SELECT replaced_by FROM table_27114708_2 WHERE outgoing_manager = "Alberto Malesani" | For outgoing manager is alberto malesani mention all the applicable replaced by person | CREATE TABLE table_27114708_2 (replaced_by VARCHAR, outgoing_manager VARCHAR) |
SELECT player FROM table_21321804_3 WHERE cfl_team = "Winnipeg Blue Bombers" | Which player plays for the Winnipeg Blue Bombers? | CREATE TABLE table_21321804_3 (player VARCHAR, cfl_team VARCHAR) |
SELECT lundu__salako_ FROM table_name_36 WHERE siburan_padawan = "ěku" | What is the Lundu (Salako) word for the Siburan-Pandawan word ěku? | CREATE TABLE table_name_36 (lundu__salako_ VARCHAR, siburan_padawan VARCHAR) |
SELECT year__ceremony_ FROM table_name_66 WHERE director = "wang siu-di" | What is Year (Ceremony), when Director is "Wang Siu-Di"? | CREATE TABLE table_name_66 (year__ceremony_ VARCHAR, director VARCHAR) |
SELECT MIN(touchdowns) FROM table_14342210_12 WHERE player = "Redden" | How many touchdowns did Redden score? | CREATE TABLE table_14342210_12 (touchdowns INTEGER, player VARCHAR) |
SELECT number_of_cpus FROM table_name_59 WHERE memory__gb_ = "0.5–16" | Which Number of CPUs has a Memory (GB) of 0.5–16? | CREATE TABLE table_name_59 (number_of_cpus VARCHAR, memory__gb_ VARCHAR) |
SELECT adelaide FROM table_name_13 WHERE perth = "no" AND gold_coast = "yes" AND sydney = "yes" | Which Adelaide has Perth no, Gold Coast no, and Sydney yes? | CREATE TABLE table_name_13 (adelaide VARCHAR, sydney VARCHAR, perth VARCHAR, gold_coast VARCHAR) |
SELECT location FROM table_name_81 WHERE college_or_campus_name = "anna university - tharamani campus" | What Location has a College or Campus Name of anna university - tharamani campus? | CREATE TABLE table_name_81 (location VARCHAR, college_or_campus_name VARCHAR) |
SELECT Investor FROM entrepreneur GROUP BY Investor ORDER BY COUNT(*) DESC LIMIT 1 | What is the investor that has invested in the most number of entrepreneurs? | CREATE TABLE entrepreneur (Investor VARCHAR) |
SELECT adverbial FROM table_name_92 WHERE nominative = "me" | What is the adverbial for the nominative me? | CREATE TABLE table_name_92 (adverbial VARCHAR, nominative VARCHAR) |
SELECT years_for_jazz FROM table_name_54 WHERE school_club_team = "houston" | What is the Year for Jazz club of Houston? | CREATE TABLE table_name_54 (years_for_jazz VARCHAR, school_club_team VARCHAR) |
SELECT AVG(born_in_other_eu_state__millions_) FROM table_name_57 WHERE total_foreign_born__millions_ = 0.5 AND total_population__millions_ < 5.534 | What was the average number of people born in other EU states in millions, when the total number of foreign-born people in millions was 0.5, and when the total population in millions was less than 5.534? | CREATE TABLE table_name_57 (born_in_other_eu_state__millions_ INTEGER, total_foreign_born__millions_ VARCHAR, total_population__millions_ VARCHAR) |
SELECT no_7 FROM table_name_70 WHERE no_3 = "sophia" AND no_10 = "abigail" | Who is number 7 when Sophia is number 3 and Abigail is number 10? | CREATE TABLE table_name_70 (no_7 VARCHAR, no_3 VARCHAR, no_10 VARCHAR) |
SELECT principal_victims FROM table_name_35 WHERE nat = "us" AND where_sunk = "mississippi river near memphis" | Who were the victims of the US ship that sank in the Mississippi River near Memphis? | CREATE TABLE table_name_35 (principal_victims VARCHAR, nat VARCHAR, where_sunk VARCHAR) |
SELECT tie_no FROM table_name_35 WHERE home_team = "orient" | What is the tie number for the home team Orient? | CREATE TABLE table_name_35 (tie_no VARCHAR, home_team VARCHAR) |
SELECT win__percentage FROM table_name_68 WHERE conference_titles = "0" AND win_loss = "20-10" | What is Win %, when Conference Titles is 0, and when Win-Loss is 20-10? | CREATE TABLE table_name_68 (win__percentage VARCHAR, conference_titles VARCHAR, win_loss VARCHAR) |
SELECT AVG(laps) FROM table_name_49 WHERE finish = "23" | What is the average lap of the race with a 23 finish? | CREATE TABLE table_name_49 (laps INTEGER, finish VARCHAR) |
SELECT opera FROM table_name_59 WHERE internet_explorer = "63.67%" | What percentage of users were using Opera during the period in which 63.67% were using Internet Explorer? | CREATE TABLE table_name_59 (opera VARCHAR, internet_explorer VARCHAR) |
SELECT oberbayern_b FROM table_23224961_1 WHERE oberpfalz = "FC Schwandorf" | When fc schwandorf is the oberpfalz what is the oberbayern b? | CREATE TABLE table_23224961_1 (oberbayern_b VARCHAR, oberpfalz VARCHAR) |
SELECT super_b_capacity_reached_[_citation_needed_] FROM table_12791809_1 WHERE number_of_truck_loads_north = 7735 | When was the Super B capacity reached when the number of truck loads north was 7735? | CREATE TABLE table_12791809_1 (super_b_capacity_reached_ VARCHAR, _citation_needed_ VARCHAR, number_of_truck_loads_north VARCHAR) |
SELECT COUNT(college_junior_club_team) FROM table_2781227_2 WHERE player = "Lee Sorochan" | How many teams does Lee Sorochan play for? | CREATE TABLE table_2781227_2 (college_junior_club_team VARCHAR, player VARCHAR) |
SELECT liberal_party FROM table_name_97 WHERE conservative_party = "16 (-1)" AND labour_party = "6 (+2)" | What was the Liberal Party result from the election having a Conservative Party result of 16 (-1) and Labour of 6 (+2)? | CREATE TABLE table_name_97 (liberal_party VARCHAR, conservative_party VARCHAR, labour_party VARCHAR) |
SELECT a_side FROM table_name_87 WHERE catalog_number = "902" | What is the A-side for catalog 902? | CREATE TABLE table_name_87 (a_side VARCHAR, catalog_number VARCHAR) |
SELECT home_team AS score FROM table_name_48 WHERE venue = "windy hill" | What is the Home team score At Windy Hill? | CREATE TABLE table_name_48 (home_team VARCHAR, venue VARCHAR) |
SELECT city FROM table_name_41 WHERE results¹ = "4:2" | what city has the results of 4:2? | CREATE TABLE table_name_41 (city VARCHAR, results¹ VARCHAR) |
SELECT MAX(successes) FROM table_name_36 WHERE launches > 1 AND failures < 0 | What is the highest number of successful launches associated with over 1 launch and under 0 fails? | CREATE TABLE table_name_36 (successes INTEGER, launches VARCHAR, failures VARCHAR) |
SELECT current_march_20, _2010 FROM table_19487922_2 WHERE country = "Denmark" | How many current drivers, as of March 20, 2010 does Denmark have? | CREATE TABLE table_19487922_2 (current_march_20 VARCHAR, _2010 VARCHAR, country VARCHAR) |
SELECT runner_up FROM table_name_30 WHERE tournament = "majorca" | Tell me the runner-up for majorca | CREATE TABLE table_name_30 (runner_up VARCHAR, tournament VARCHAR) |
SELECT commentator FROM table_184803_4 WHERE spokespersons = "Claude Darget" | who was the commentator when spokesperson was claude darget | CREATE TABLE table_184803_4 (commentator VARCHAR, spokespersons VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.