answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 484 |
|---|---|---|
SELECT timeslot FROM table_name_26 WHERE air_date = "april 28, 2009" | What is the timeslot for the episode that aired April 28, 2009? | CREATE TABLE table_name_26 (timeslot VARCHAR, air_date VARCHAR) |
SELECT Giant AS slalom FROM table_name_34 WHERE overall = 25 | Which giant slalom had an Overall number of 25? | CREATE TABLE table_name_34 (Giant VARCHAR, overall VARCHAR) |
SELECT recorded FROM table_name_84 WHERE translation = "brussels" | What is the record for Brussels translations? | CREATE TABLE table_name_84 (recorded VARCHAR, translation VARCHAR) |
SELECT series_ep FROM table_15187735_3 WHERE netflix = "S02E08" | Name the series ep for s02e08 | CREATE TABLE table_15187735_3 (series_ep VARCHAR, netflix VARCHAR) |
SELECT T1.owner_id, T1.zip_code FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id JOIN Treatments AS T3 ON T2.dog_id = T3.dog_id GROUP BY T1.owner_id ORDER BY SUM(T3.cost_of_treatment) DESC LIMIT 1 | Which owner has paid the largest amount of money in total for their dogs? Show the owner id and zip code. | CREATE TABLE Treatments (dog_id VARCHAR, cost_of_treatment INTEGER); CREATE TABLE Owners (owner_id VARCHAR, zip_code VARCHAR); CREATE TABLE Dogs (owner_id VARCHAR, dog_id VARCHAR) |
SELECT scoring_rank FROM table_14836185_3 WHERE year = 2009 | What was the scoring rank for Angela Stanford in 2009? | CREATE TABLE table_14836185_3 (scoring_rank VARCHAR, year VARCHAR) |
SELECT institutional_authority FROM table_name_67 WHERE rocket_launch = "rehnuma-10" | Which Institutional authority has a Rocket launch of rehnuma-10? | CREATE TABLE table_name_67 (institutional_authority VARCHAR, rocket_launch VARCHAR) |
SELECT 1901 FROM table_name_12 WHERE 1851 = "1961" | Name the 1901 with 1851 of 1961 | CREATE TABLE table_name_12 (Id VARCHAR) |
SELECT guest_s_ FROM table_29135051_3 WHERE ratings = "1.44m" | who guest starred on the episode with a 1.44m rating | CREATE TABLE table_29135051_3 (guest_s_ VARCHAR, ratings VARCHAR) |
SELECT date FROM table_name_11 WHERE record = "9-10-2" | Can you tell me the Date thay has the Reocrd of 9-10-2? | CREATE TABLE table_name_11 (date VARCHAR, record VARCHAR) |
SELECT title FROM table_1322904_1 WHERE release = "August 27" | What title was released on August 27? | CREATE TABLE table_1322904_1 (title VARCHAR, release VARCHAR) |
SELECT time_retired FROM table_17693171_1 WHERE driver = "Marco Andretti" | What is the time/retired if the driver is Marco Andretti? | CREATE TABLE table_17693171_1 (time_retired VARCHAR, driver VARCHAR) |
SELECT foundation FROM table_name_17 WHERE enterprise = "2" | Which Foundation has an Enterprise of 2? | CREATE TABLE table_name_17 (foundation VARCHAR, enterprise VARCHAR) |
SELECT player FROM table_name_45 WHERE score = 70 - 68 - 70 = 208 | Who is the player with a score of 70-68-70=208? | CREATE TABLE table_name_45 (player VARCHAR, score VARCHAR) |
SELECT release_price___usd__ FROM table_name_90 WHERE release_date = "april 2012" AND part_number_s_ = "cm8063701211900bx80637i73770s" | Which Release price (USD ) that has a Release date on april 2012 and a Part number(s) of cm8063701211900bx80637i73770s? | CREATE TABLE table_name_90 (release_price___usd__ VARCHAR, release_date VARCHAR, part_number_s_ VARCHAR) |
SELECT gname, gtype FROM Video_games ORDER BY gname | Show all video games and their types in the order of their names. | CREATE TABLE Video_games (gname VARCHAR, gtype VARCHAR) |
SELECT ihsaa_class FROM table_name_4 WHERE school = "mitchell" | Which IHSAA Class has a School of mitchell? | CREATE TABLE table_name_4 (ihsaa_class VARCHAR, school VARCHAR) |
SELECT original_title FROM table_20963074_1 WHERE result = "Not Nominated" AND film_title_used_in_nomination = "Report on Death" | Name the original title for not nominated result with report on death | CREATE TABLE table_20963074_1 (original_title VARCHAR, result VARCHAR, film_title_used_in_nomination VARCHAR) |
SELECT opponent FROM table_name_24 WHERE attendance = "55,527" | Tell me the opponent for attendance of 55,527 | CREATE TABLE table_name_24 (opponent VARCHAR, attendance VARCHAR) |
SELECT name FROM table_name_53 WHERE term_end = "5 march 1930" | Who is the prime minister that had a term that ended on 5 March 1930? | CREATE TABLE table_name_53 (name VARCHAR, term_end VARCHAR) |
SELECT SUM(drawn) FROM table_name_61 WHERE games < 6 | How many Drawn is which has a Games smaller than 6? | CREATE TABLE table_name_61 (drawn INTEGER, games INTEGER) |
SELECT skipper FROM table_name_17 WHERE combined_elapsed_time = "174d 01h 11m 59s" | Which skipper has a combine elapsed time of 174d 01h 11m 59s? | CREATE TABLE table_name_17 (skipper VARCHAR, combined_elapsed_time VARCHAR) |
SELECT member_senator FROM table_name_4 WHERE first_elected = 2002 AND district > 41 | Who was firest elected in 2002 in a district larger than 41? | CREATE TABLE table_name_4 (member_senator VARCHAR, first_elected VARCHAR, district VARCHAR) |
SELECT player FROM table_name_91 WHERE year_s__won = "1994" | Who is the player who won in 1994? | CREATE TABLE table_name_91 (player VARCHAR, year_s__won VARCHAR) |
SELECT COUNT(rank) FROM table_name_92 WHERE points > 99 AND club = "barcelona" | Can you tell me the total number of Rank that has the Points larger than 99, and the Club of barcelona? | CREATE TABLE table_name_92 (rank VARCHAR, points VARCHAR, club VARCHAR) |
SELECT date FROM table_name_5 WHERE label = "village records" AND catalog = "vrcl-2205" | On what date was a record from Village Records with catalog VRCL-2205 released? | CREATE TABLE table_name_5 (date VARCHAR, label VARCHAR, catalog VARCHAR) |
SELECT MAX(laps) FROM table_name_82 WHERE grid = 7 | What is the highest laps for the grid of 7? | CREATE TABLE table_name_82 (laps INTEGER, grid VARCHAR) |
SELECT average FROM table_23316034_16 WHERE innings = 68 | If the innings is 68, what is the average? | CREATE TABLE table_23316034_16 (average VARCHAR, innings VARCHAR) |
SELECT winner FROM table_17111812_1 WHERE fifth = "Dizzee Rascal" | When dizzee rascal is 5th, who was the winner? | CREATE TABLE table_17111812_1 (winner VARCHAR, fifth VARCHAR) |
SELECT year FROM table_11677760_1 WHERE player = "Derrick Favors" | what is the year for player is derrick favors? | CREATE TABLE table_11677760_1 (year VARCHAR, player VARCHAR) |
SELECT railway FROM table_15608800_2 WHERE class = "J19" | Name the railway when class is j19 | CREATE TABLE table_15608800_2 (railway VARCHAR, class VARCHAR) |
SELECT country FROM table_name_62 WHERE city = "san juan" | Tell me the country for san juan | CREATE TABLE table_name_62 (country VARCHAR, city VARCHAR) |
SELECT subdivision_name___ru____gost_ FROM table_290017_1 WHERE subdivision_name___be____bgn_pcgn_ = "Hrodzenskaya voblasts'" | What are the subdivision names (RU) where the subdivision name (BE) is Hrodzenskaya Voblasts'? | CREATE TABLE table_290017_1 (subdivision_name___ru____gost_ VARCHAR, subdivision_name___be____bgn_pcgn_ VARCHAR) |
SELECT DISTINCT region_name FROM region ORDER BY Label | Show all distinct region names ordered by their labels. | CREATE TABLE region (region_name VARCHAR, Label VARCHAR) |
SELECT MAX(population) FROM table_name_96 WHERE county = "baraga" AND number_of_households < 3 OFFSET 444 | What is the highest population for Baraga County with less than 3,444 households? | CREATE TABLE table_name_96 (population INTEGER, county VARCHAR, number_of_households VARCHAR) |
SELECT character FROM table_name_10 WHERE portrayed_by = "elias koteas" | Which character is portrayed by Elias Koteas? | CREATE TABLE table_name_10 (character VARCHAR, portrayed_by VARCHAR) |
SELECT MIN(wins) FROM table_name_8 WHERE player = "larry nelson" AND rank < 5 | What was the lowest wins of Larry Nelson, who ranked less than 5? | CREATE TABLE table_name_8 (wins INTEGER, player VARCHAR, rank VARCHAR) |
SELECT drawn FROM table_13741576_6 WHERE tries_for = "54" | Risca RFC has 54 tries for and how many draws? | CREATE TABLE table_13741576_6 (drawn VARCHAR, tries_for VARCHAR) |
SELECT opponent FROM table_name_87 WHERE event = "rumble of the kings 6" | Who did he fight in Rumble of the Kings 6? | CREATE TABLE table_name_87 (opponent VARCHAR, event VARCHAR) |
SELECT constructor FROM table_name_67 WHERE time_retired = "+2:06.0" | Who constructed the car that has a Time/Retired of +2:06.0? | CREATE TABLE table_name_67 (constructor VARCHAR, time_retired VARCHAR) |
SELECT SUM(number_of_households) FROM table_name_76 WHERE median_family_income = "$65,240" AND population > 744 OFFSET 344 | What is the number of households in the county with median income of $65,240 and population greater than 744,344? | CREATE TABLE table_name_76 (number_of_households INTEGER, median_family_income VARCHAR, population VARCHAR) |
SELECT australian FROM table_name_79 WHERE examples = "illyria, cf. cirrhosis" | What is the entry for the Australian sound that has an example of illyria, cf. cirrhosis? | CREATE TABLE table_name_79 (australian VARCHAR, examples VARCHAR) |
SELECT MAX(year) FROM table_name_29 WHERE partner = "gardnar mulloy" AND score = "12β10, 8β10, 12β10, 6β2" | what is the most recent year gardnar mulloy played as a partner and score was 12β10, 8β10, 12β10, 6β2? | CREATE TABLE table_name_29 (year INTEGER, partner VARCHAR, score VARCHAR) |
SELECT tribunal FROM table_name_34 WHERE total = "4167" | Which tribunal had a total of 4167? | CREATE TABLE table_name_34 (tribunal VARCHAR, total VARCHAR) |
SELECT usage FROM table_name_60 WHERE engine = "f136e" | What is the usage for the f136e engline? | CREATE TABLE table_name_60 (usage VARCHAR, engine VARCHAR) |
SELECT MIN(points) FROM table_name_66 WHERE losses < 8 AND team_name = "vancouver burrards" AND games < 24 | What's the lowest number of points with fewer than 8 losses and fewer than 24 games for the vancouver burrards? | CREATE TABLE table_name_66 (points INTEGER, games VARCHAR, losses VARCHAR, team_name VARCHAR) |
SELECT AVG(wins) FROM table_name_91 WHERE games < 3 AND manager = "george scherger" AND losses < 1 | What was the average of wins with manager George Scherger smaller than 3 and losses smaller than 1? | CREATE TABLE table_name_91 (wins INTEGER, losses VARCHAR, games VARCHAR, manager VARCHAR) |
SELECT max_downstream_throughput___mbit_s__ FROM table_2394927_1 WHERE power___dbm__ = "+17.5" | What are the highest mbit/s when the dbm is +17.5? | CREATE TABLE table_2394927_1 (max_downstream_throughput___mbit_s__ VARCHAR, power___dbm__ VARCHAR) |
SELECT score FROM table_name_70 WHERE date = "october 29, 2008" | Which score has a Date of october 29, 2008? | CREATE TABLE table_name_70 (score VARCHAR, date VARCHAR) |
SELECT COUNT(diameter__km_) FROM table_name_71 WHERE latitude < 14 AND name = "xenia" AND longitude > 249.4 | What in Xenia's Diameter in km, with a latitude of 14 and a longitude of 249.4? | CREATE TABLE table_name_71 (diameter__km_ VARCHAR, longitude VARCHAR, latitude VARCHAR, name VARCHAR) |
SELECT T1.lname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pet_age = 3 AND T3.pettype = 'cat' | Find the last name of the student who has a cat that is age 3. | CREATE TABLE student (lname VARCHAR, stuid VARCHAR); CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE pets (petid VARCHAR, pet_age VARCHAR, pettype VARCHAR) |
SELECT opponent FROM table_name_24 WHERE location = "america west arena" | Who is the opponent at america west arena? | CREATE TABLE table_name_24 (opponent VARCHAR, location VARCHAR) |
SELECT player FROM table_name_97 WHERE college = "san sebastian" | What player has a college named san sebastian? | CREATE TABLE table_name_97 (player VARCHAR, college VARCHAR) |
SELECT award FROM table_name_62 WHERE year < 2005 | What award did they win before 2005? | CREATE TABLE table_name_62 (award VARCHAR, year INTEGER) |
SELECT SUM(poles) FROM table_name_27 WHERE drivers = "juan cruz Γ‘lvarez" AND flaps > 0 | How many Poles have Drivers of juan cruz Γ‘lvarez, and FLaps larger than 0? | CREATE TABLE table_name_27 (poles INTEGER, drivers VARCHAR, flaps VARCHAR) |
SELECT MIN(laps) FROM table_name_82 WHERE position = "dnf" AND number < 25 AND year < 2001 | What is the fewest laps for a team with a position of DNF and a number smaller than 25 before 2001? | CREATE TABLE table_name_82 (laps INTEGER, year VARCHAR, position VARCHAR, number VARCHAR) |
SELECT family FROM table_name_40 WHERE name = "humpback whale" | Which family has a Name of humpback whale? | CREATE TABLE table_name_40 (family VARCHAR, name VARCHAR) |
SELECT T2.Store_Name FROM Bookings AS T1 JOIN Drama_Workshop_Groups AS T2 ON T1.Workshop_Group_ID = T2.Workshop_Group_ID WHERE T1.Status_Code = "stop" | What are the names of the workshop groups that have bookings with status code "stop"? | CREATE TABLE Bookings (Workshop_Group_ID VARCHAR, Status_Code VARCHAR); CREATE TABLE Drama_Workshop_Groups (Store_Name VARCHAR, Workshop_Group_ID VARCHAR) |
SELECT player FROM table_name_96 WHERE school_club_team = "southern illinois" | What Player is from the Southern Illinois team? | CREATE TABLE table_name_96 (player VARCHAR, school_club_team VARCHAR) |
SELECT MIN(grid) FROM table_name_72 WHERE time_retired = "retirement" AND laps > 17 | WHAT IS THE LOWEST GRID FOR RETIREMENT, AND LAPS LARGER THAN 17? | CREATE TABLE table_name_72 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) |
SELECT COUNT(grand_prix) FROM table_1137702_3 WHERE winning_constructor = "Benetton - Ford" AND pole_position = "Michael Schumacher" | How many Grand Prix were the winning constructor Benetton - Ford and the pole position was Michael Schumacher? | CREATE TABLE table_1137702_3 (grand_prix VARCHAR, winning_constructor VARCHAR, pole_position VARCHAR) |
SELECT year FROM table_13114949_3 WHERE qualifying_score = "15.150" | what is the year where the qualifying score was 15.150? | CREATE TABLE table_13114949_3 (year VARCHAR, qualifying_score VARCHAR) |
SELECT 1 AS st_leg FROM table_17968229_1 WHERE home__2nd_leg_ = "River Plate" | For home of River Plate, what is the first leg listed? | CREATE TABLE table_17968229_1 (home__2nd_leg_ VARCHAR) |
SELECT location FROM table_name_97 WHERE cause = "gas explosion" AND death_toll > 38 AND date = "10 june" | Where has a cause of gas explosion, a Death toll larger than 38 on 10 june? | CREATE TABLE table_name_97 (location VARCHAR, date VARCHAR, cause VARCHAR, death_toll VARCHAR) |
SELECT T2.Title FROM TV_Channel AS T1 JOIN Cartoon AS T2 ON T1.id = T2.Channel WHERE T1.series_name = "Sky Radio" | List the title of all Cartoons showed on TV Channel with series name "Sky Radio". | CREATE TABLE Cartoon (Title VARCHAR, Channel VARCHAR); CREATE TABLE TV_Channel (id VARCHAR, series_name VARCHAR) |
SELECT MAX(year) FROM table_name_59 WHERE start > 2 | Name the most year with start more than 2 | CREATE TABLE table_name_59 (year INTEGER, start INTEGER) |
SELECT player FROM table_name_9 WHERE country = "united states" AND place = "t2" | What player has The United States as the country, with t2 as the place? | CREATE TABLE table_name_9 (player VARCHAR, country VARCHAR, place VARCHAR) |
SELECT home_team FROM table_name_80 WHERE away_team = "lincoln city" | What is the Home team at the Lincoln City Away game? | CREATE TABLE table_name_80 (home_team VARCHAR, away_team VARCHAR) |
SELECT segment_c FROM table_15187735_21 WHERE segment_d = "Motorcycle Brake Locks" | What are the titles of segment c when segment d is motorcycle brake locks? | CREATE TABLE table_15187735_21 (segment_c VARCHAR, segment_d VARCHAR) |
SELECT 1 AS st__m_ FROM table_14407512_9 WHERE points = "272.7" | What is the 1st(m) score for the Person who had a total points of 272.7 | CREATE TABLE table_14407512_9 (points VARCHAR) |
SELECT MIN(opening) FROM table_10601843_2 WHERE tenant = "Bursaspor" | When did the stadium where Bursaspor is the tenant open? | CREATE TABLE table_10601843_2 (opening INTEGER, tenant VARCHAR) |
SELECT away_team FROM table_name_51 WHERE date = "31 january 1987" AND home_team = "wimbledon" | Who was the away team on 31 January 1987 when the home team was Wimbledon? | CREATE TABLE table_name_51 (away_team VARCHAR, date VARCHAR, home_team VARCHAR) |
SELECT circuit FROM table_name_1 WHERE fastest_lap = "phil hill" | What is the name of the circuit when Phil Hill has the fastest lap? | CREATE TABLE table_name_1 (circuit VARCHAR, fastest_lap VARCHAR) |
SELECT surface FROM table_name_30 WHERE score = "2β6, 6β4, 7β6" | What is the Surface of the match with a Score of 2β6, 6β4, 7β6? | CREATE TABLE table_name_30 (surface VARCHAR, score VARCHAR) |
SELECT COUNT(final_venue) FROM table_19651669_1 WHERE season = "1997-98" | How many final venues were there in the 1997-98 season? | CREATE TABLE table_19651669_1 (final_venue VARCHAR, season VARCHAR) |
SELECT MIN(laps) FROM table_name_20 WHERE time_retired = "engine" AND grid > 8 AND driver = "george eaton" | What's the least amount of laps that George Eaton completed that has a time/retired engine and a grid larger than 8? | CREATE TABLE table_name_20 (laps INTEGER, driver VARCHAR, time_retired VARCHAR, grid VARCHAR) |
SELECT played FROM table_name_21 WHERE try_bonus = "4" AND points_against = "391" | How many games did the Club that has a try bonus of 4 and 391 points against play ? | CREATE TABLE table_name_21 (played VARCHAR, try_bonus VARCHAR, points_against VARCHAR) |
SELECT third_place FROM table_name_82 WHERE year = 2012 | Who took third place in 2012? | CREATE TABLE table_name_82 (third_place VARCHAR, year VARCHAR) |
SELECT bleeding_time FROM table_1099080_1 WHERE partial_thromboplastin_time = "Unaffected" AND platelet_count = "Unaffected" | What were the bleeding times when both the platelet count was unaffected and the partial thromboplastin time was unaffected | CREATE TABLE table_1099080_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR) |
SELECT AVG(year) FROM table_name_35 WHERE entrant = "cooper car company" | What year did Cooper Car Company enter? | CREATE TABLE table_name_35 (year INTEGER, entrant VARCHAR) |
SELECT MIN(no) FROM table_10015132_21 WHERE years_in_toronto = "1998-2001" | What number is the player that played 1998-2001 | CREATE TABLE table_10015132_21 (no INTEGER, years_in_toronto VARCHAR) |
SELECT COUNT(*) FROM review | Find the number of reviews. | CREATE TABLE review (Id VARCHAR) |
SELECT position FROM table_11677691_8 WHERE hometown = "Loganville, Georgia" | What position did the kid from loganville, georgia play | CREATE TABLE table_11677691_8 (position VARCHAR, hometown VARCHAR) |
SELECT T1.duration, T1.file_size, T1.formats FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id WHERE T2.genre_is = "pop" ORDER BY T2.song_name | List the duration, file size and format of songs whose genre is pop, ordered by title? | CREATE TABLE song (f_id VARCHAR, genre_is VARCHAR, song_name VARCHAR); CREATE TABLE files (duration VARCHAR, file_size VARCHAR, formats VARCHAR, f_id VARCHAR) |
SELECT instant_messaging FROM table_name_26 WHERE telephony = "yes with integrated sametime" | What is Instant Messaging, when Telephony is "Yes with integrated Sametime"? | CREATE TABLE table_name_26 (instant_messaging VARCHAR, telephony VARCHAR) |
SELECT record FROM table_name_1 WHERE score = "110-106" | What is the record of the game with a 110-106 score? | CREATE TABLE table_name_1 (record VARCHAR, score VARCHAR) |
SELECT 2009 FROM table_name_68 WHERE tournament = "tournaments played" | WHAT IS THE 2009 PERFORMANCE FOR TOURNAMENTS PLAYED? | CREATE TABLE table_name_68 (tournament VARCHAR) |
SELECT average FROM table_17088705_2 WHERE evening_gown = "9.226" | What are the average scores of participants with 9.226 in evening gown | CREATE TABLE table_17088705_2 (average VARCHAR, evening_gown VARCHAR) |
SELECT height_from_sea_level_in_meters FROM table_1430913_1 WHERE trekking_route = "22km" | if 22km is the trekking route what is height from sea level in meters? | CREATE TABLE table_1430913_1 (height_from_sea_level_in_meters VARCHAR, trekking_route VARCHAR) |
SELECT wicket FROM table_1670921_2 WHERE runs = "451" AND fielding_team = "India" | What are the wickets when there are 451 runs and india is the fielding team? | CREATE TABLE table_1670921_2 (wicket VARCHAR, runs VARCHAR, fielding_team VARCHAR) |
SELECT level FROM table_name_43 WHERE points > 25 AND goals = "64β31" | What is the level when points are larger than 25, and goals are 64β31? | CREATE TABLE table_name_43 (level VARCHAR, points VARCHAR, goals VARCHAR) |
SELECT horizontal_bar FROM table_name_18 WHERE pommel_horse = "n/a" AND position < 27 AND parallel_bars = "15.800" | What is the horizontal bar score with a pommel horse of n/a, and the position is less than 27, and the parallel bars score is 15.800? | CREATE TABLE table_name_18 (horizontal_bar VARCHAR, parallel_bars VARCHAR, pommel_horse VARCHAR, position VARCHAR) |
SELECT name FROM table_name_63 WHERE location = "china" AND notes = "described from a single tooth" | What is the Name of the dinosaur that was discovered in the Location, China, and whose Notes are, "described from a single tooth"? | CREATE TABLE table_name_63 (name VARCHAR, location VARCHAR, notes VARCHAR) |
SELECT record FROM table_name_69 WHERE opponent = "tampa bay buccaneers" | What is the record of Tampa Bay Buccaneers? | CREATE TABLE table_name_69 (record VARCHAR, opponent VARCHAR) |
SELECT trainer FROM table_name_94 WHERE owner = "cherry valley farm" | Who is the trainer for Cherry Valley Farm? | CREATE TABLE table_name_94 (trainer VARCHAR, owner VARCHAR) |
SELECT result FROM table_name_49 WHERE competition = "2006 world cup qualification" | what is the result of the competition in 2006 world cup qualification? | CREATE TABLE table_name_49 (result VARCHAR, competition VARCHAR) |
SELECT date FROM table_name_57 WHERE result = "106-105" | On what date was the result 106-105? | CREATE TABLE table_name_57 (date VARCHAR, result VARCHAR) |
SELECT margin_of_victory FROM table_name_51 WHERE runner_s__up = "brad faxon" | What was the margin of victory over Brad Faxon? | CREATE TABLE table_name_51 (margin_of_victory VARCHAR, runner_s__up VARCHAR) |
SELECT opponent FROM table_name_2 WHERE record = "5-2" | Who has a Record of 5-2? | CREATE TABLE table_name_2 (opponent VARCHAR, record VARCHAR) |
SELECT under_17 FROM table_26368963_2 WHERE under_15 = "Maria Elena Ubina" | What is every value for Under-17 if Under-15 is Maria Elena Ubina? | CREATE TABLE table_26368963_2 (under_17 VARCHAR, under_15 VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.