answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
|
|---|---|---|
SELECT role_description FROM ROLES WHERE role_code = "ED"
|
What is the description of role code ED?
|
CREATE TABLE ROLES (role_description VARCHAR, role_code VARCHAR)
|
SELECT score FROM table_name_83 WHERE opponent = "sydney roosters"
|
What is the score of the match with the sydney roosters as the opponent?
|
CREATE TABLE table_name_83 (score VARCHAR, opponent VARCHAR)
|
SELECT COUNT(chinese__traditional_) FROM table_1893815_1 WHERE album_number = "6th"
|
Name the number of traditional chinese for album number 6th
|
CREATE TABLE table_1893815_1 (chinese__traditional_ VARCHAR, album_number VARCHAR)
|
SELECT school FROM table_name_47 WHERE hometown = "dallas, tx"
|
What is the school of the player from Dallas, TX?
|
CREATE TABLE table_name_47 (school VARCHAR, hometown VARCHAR)
|
SELECT time FROM table_name_35 WHERE round < 3
|
What was the time for a round less than 3?
|
CREATE TABLE table_name_35 (time VARCHAR, round INTEGER)
|
SELECT location_attendance FROM table_name_63 WHERE date = "december 30"
|
What is Location Attendance, when Date is "December 30"?
|
CREATE TABLE table_name_63 (location_attendance VARCHAR, date VARCHAR)
|
SELECT score FROM table_name_60 WHERE tie_no = "27"
|
what is the score that has tie number 27
|
CREATE TABLE table_name_60 (score VARCHAR, tie_no VARCHAR)
|
SELECT T1.customer_name, T1.customer_phone FROM customers AS T1 JOIN mailshot_customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.outcome_code = 'No Response'
|
Show the name and phone for customers with a mailshot with outcome code 'No Response'.
|
CREATE TABLE customers (customer_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR); CREATE TABLE mailshot_customers (customer_id VARCHAR, outcome_code VARCHAR)
|
SELECT result FROM table_name_21 WHERE week < 10 AND opponent = "chicago bears"
|
What was the result in a week lower than 10 with an opponent of Chicago Bears?
|
CREATE TABLE table_name_21 (result VARCHAR, week VARCHAR, opponent VARCHAR)
|
SELECT country FROM table_name_48 WHERE city = "wellington"
|
Which country is Wellington located in?
|
CREATE TABLE table_name_48 (country VARCHAR, city VARCHAR)
|
SELECT semi_ddm_class FROM table_1153898_1 WHERE comparisons = "Drawing Tablet Support"
|
Is drawing tablet support part of the semi-DDM class?
|
CREATE TABLE table_1153898_1 (semi_ddm_class VARCHAR, comparisons VARCHAR)
|
SELECT current_club FROM table_name_97 WHERE player = "bassem balaa"
|
Which Current Club has a Player of bassem balaa?
|
CREATE TABLE table_name_97 (current_club VARCHAR, player VARCHAR)
|
SELECT 2 AS nd FROM table_1310499_1 WHERE application = "1996-2002 Dodge Viper"
|
What is the 2nd ratio of 1996-2002 Dodge Viper?
|
CREATE TABLE table_1310499_1 (application VARCHAR)
|
SELECT COUNT(rnd) FROM table_22670216_1 WHERE track = "Ontario Motor Speedway" AND pole_position = "Johnny Rutherford"
|
If the pole position is Johnny Rutherford and the track is the Ontario Motor Speedway, what is the RND total number?
|
CREATE TABLE table_22670216_1 (rnd VARCHAR, track VARCHAR, pole_position VARCHAR)
|
SELECT event FROM table_name_12 WHERE city = "florianopolis"
|
What event is in florianopolis?
|
CREATE TABLE table_name_12 (event VARCHAR, city VARCHAR)
|
SELECT fastest_lap FROM table_name_31 WHERE race = "belgian grand prix"
|
What was the fastest lap in the Belgian Grand Prix?
|
CREATE TABLE table_name_31 (fastest_lap VARCHAR, race VARCHAR)
|
SELECT gsr_class FROM table_name_49 WHERE type = "0-4-2t"
|
What GSR class is associated with a 0-4-2t type?
|
CREATE TABLE table_name_49 (gsr_class VARCHAR, type VARCHAR)
|
SELECT current_club FROM table_23670057_5 WHERE height__m_ = "2.14"
|
Which clubs have players with height 2.14m?
|
CREATE TABLE table_23670057_5 (current_club VARCHAR, height__m_ VARCHAR)
|
SELECT opponent FROM table_name_43 WHERE week = 4
|
Who did the Patriots play in week 4?
|
CREATE TABLE table_name_43 (opponent VARCHAR, week VARCHAR)
|
SELECT torque__nm AS @rpm_ FROM table_1147701_5 WHERE engine_code = "D5244 T5"
|
Name the torque of the engine is d5244 t5
|
CREATE TABLE table_1147701_5 (torque__nm VARCHAR, engine_code VARCHAR)
|
SELECT away FROM table_name_45 WHERE attendance = 916
|
What team was the away team for the game with 916 in attendance?
|
CREATE TABLE table_name_45 (away VARCHAR, attendance VARCHAR)
|
SELECT MAX(rank) FROM table_21100348_15 WHERE player = "Rodney Marsh"
|
What rank does Rodney Marsh have?
|
CREATE TABLE table_21100348_15 (rank INTEGER, player VARCHAR)
|
SELECT loss FROM table_name_85 WHERE record = "30-32"
|
Which Loss has a Record of 30-32?
|
CREATE TABLE table_name_85 (loss VARCHAR, record VARCHAR)
|
SELECT player FROM table_24431264_18 WHERE new_points = 1285
|
List the players with 1285 new points?
|
CREATE TABLE table_24431264_18 (player VARCHAR, new_points VARCHAR)
|
SELECT COUNT(first_elected) FROM table_1341549_33 WHERE result = "Re-elected" AND incumbent = "Gary Ackerman Redistricted from the 7th district"
|
how many first elected with result being re-elected and incumbent being gary ackerman redistricted from the 7th district
|
CREATE TABLE table_1341549_33 (first_elected VARCHAR, result VARCHAR, incumbent VARCHAR)
|
SELECT athlete FROM table_name_91 WHERE run_1 > 54.95 AND run_2 = 56.19
|
Who is the athlete with a run 1 larger than 54.95 and a 56.19 run 2?
|
CREATE TABLE table_name_91 (athlete VARCHAR, run_1 VARCHAR, run_2 VARCHAR)
|
SELECT label FROM table_name_16 WHERE release = "liebesgrüsse aus ost-berlin"
|
Which Label has a Release of liebesgrüsse aus ost-berlin?
|
CREATE TABLE table_name_16 (label VARCHAR, release VARCHAR)
|
SELECT player FROM table_name_89 WHERE team = "buffalo braves" AND previous_team = "los angeles lakers" AND career_with_the_franchise_[b_] = "1970"
|
Who is the player from the Buffalo Braves with the previous team Los Angeles Lakers and a career with the franchase in 1970?
|
CREATE TABLE table_name_89 (player VARCHAR, team VARCHAR, previous_team VARCHAR, career_with_the_franchise_ VARCHAR, b_ VARCHAR)
|
SELECT school FROM table_name_43 WHERE size < 674 AND county = "19 dubois" AND mascot = "rangers"
|
What school has a size less than 674, has a county of 19 dubois, and has the rangers as their mascot?
|
CREATE TABLE table_name_43 (school VARCHAR, mascot VARCHAR, size VARCHAR, county VARCHAR)
|
SELECT position FROM table_name_89 WHERE college = "louisiana state"
|
What position does the College of Louisiana State have?
|
CREATE TABLE table_name_89 (position VARCHAR, college VARCHAR)
|
SELECT season FROM table_178242_7 WHERE the_mole = "Milouska"
|
Which season is it when Milouska was the show's mole ?
|
CREATE TABLE table_178242_7 (season VARCHAR, the_mole VARCHAR)
|
SELECT successful_defenses FROM table_name_89 WHERE days_held = 126 AND reigns = "3"
|
What successful defenses has 126 days held and a Reigns of 3?
|
CREATE TABLE table_name_89 (successful_defenses VARCHAR, days_held VARCHAR, reigns VARCHAR)
|
SELECT t1.product_name FROM products AS t1 JOIN ref_colors AS t2 ON t1.color_code = t2.color_code WHERE t2.color_description = "white"
|
List all the product names with the color description "white".
|
CREATE TABLE ref_colors (color_code VARCHAR, color_description VARCHAR); CREATE TABLE products (product_name VARCHAR, color_code VARCHAR)
|
SELECT significand__fraction_field_ FROM table_name_2 WHERE value = "1.0"
|
What's the Significant of a value 1.0?
|
CREATE TABLE table_name_2 (significand__fraction_field_ VARCHAR, value VARCHAR)
|
SELECT COUNT(matchup_results) FROM table_23718905_6 WHERE city = "San Diego, California"
|
How many different matchup/results appear in San Diego, California?
|
CREATE TABLE table_23718905_6 (matchup_results VARCHAR, city VARCHAR)
|
SELECT AVG(round) FROM table_name_8 WHERE position = "defensive tackle" AND pick__number > 187
|
Which round was the defensive tackle picked after 187?
|
CREATE TABLE table_name_8 (round INTEGER, position VARCHAR, pick__number VARCHAR)
|
SELECT local_authority FROM table_name_33 WHERE services = "greater anglia"
|
Which Local authority has Services of greater anglia?
|
CREATE TABLE table_name_33 (local_authority VARCHAR, services VARCHAR)
|
SELECT template_type_code, template_type_description FROM Ref_template_types
|
Show all template type codes and descriptions.
|
CREATE TABLE Ref_template_types (template_type_code VARCHAR, template_type_description VARCHAR)
|
SELECT committee FROM table_27050981_7 WHERE district = "46"
|
What committees do the district 46 members serve on?
|
CREATE TABLE table_27050981_7 (committee VARCHAR, district VARCHAR)
|
SELECT COUNT(*) FROM Departments AS T1 JOIN Degree_Programs AS T2 ON T1.department_id = T2.department_id WHERE T1.department_name = 'engineer'
|
How many degrees does the engineering department offer?
|
CREATE TABLE Degree_Programs (department_id VARCHAR); CREATE TABLE Departments (department_id VARCHAR, department_name VARCHAR)
|
SELECT rank FROM table_name_80 WHERE athletes = "andreas kiligkaridis"
|
What is Andreas Kiligkaridis rank?
|
CREATE TABLE table_name_80 (rank VARCHAR, athletes VARCHAR)
|
SELECT tv_network_s_ FROM table_18821196_1 WHERE weekly_schedule = "Monday to Thursday @ 11:00 pm"
|
What is every TV network with a weekly schedule of Monday to Thursday @ 11:00 pm?
|
CREATE TABLE table_18821196_1 (tv_network_s_ VARCHAR, weekly_schedule VARCHAR)
|
SELECT place FROM table_name_8 WHERE score = 71 - 70 = 141
|
What place had a score of 71-70=141?
|
CREATE TABLE table_name_8 (place VARCHAR, score VARCHAR)
|
SELECT date FROM table_name_91 WHERE winner = "ram vaswani"
|
Ram Vaswani was a winner on what date?
|
CREATE TABLE table_name_91 (date VARCHAR, winner VARCHAR)
|
SELECT name FROM table_name_36 WHERE rank > 7 AND goals < 305 AND matches = "418"
|
Who had a rank larger than 7, less than 305 goals, and 418 matches?
|
CREATE TABLE table_name_36 (name VARCHAR, matches VARCHAR, rank VARCHAR, goals VARCHAR)
|
SELECT current_womens_lacrosse_conference FROM table_27378582_1 WHERE nickname = "Bison"
|
Name the current womens lacrosse conference for bison
|
CREATE TABLE table_27378582_1 (current_womens_lacrosse_conference VARCHAR, nickname VARCHAR)
|
SELECT high_assists FROM table_name_13 WHERE team = "atlanta"
|
Who had the most assists in the game against Atlanta?
|
CREATE TABLE table_name_13 (high_assists VARCHAR, team VARCHAR)
|
SELECT tie_no FROM table_name_26 WHERE home_team = "swansea city"
|
What is the tie no for the home team swansea city?
|
CREATE TABLE table_name_26 (tie_no VARCHAR, home_team VARCHAR)
|
SELECT competition FROM table_name_47 WHERE year < 2007 AND notes = "7434"
|
What competition was held earlier than 2007 and has 7434 in the notes field?
|
CREATE TABLE table_name_47 (competition VARCHAR, year VARCHAR, notes VARCHAR)
|
SELECT COUNT(population) FROM table_171236_2 WHERE official_name = "Westfield"
|
What is the population in Westfield?
|
CREATE TABLE table_171236_2 (population VARCHAR, official_name VARCHAR)
|
SELECT MIN(pick__number) FROM table_name_16 WHERE position = "cornerback" AND round < 1
|
What Cornerback has the lowest Pick # and Round of less than 1?
|
CREATE TABLE table_name_16 (pick__number INTEGER, position VARCHAR, round VARCHAR)
|
SELECT team_name FROM table_name_23 WHERE losses > 15 AND season = "1988"
|
Which team had more than 15 losses in 1988?
|
CREATE TABLE table_name_23 (team_name VARCHAR, losses VARCHAR, season VARCHAR)
|
SELECT name, operating_system FROM web_client_accelerator EXCEPT SELECT T1.name, T1.operating_system FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id JOIN browser AS T3 ON T2.browser_id = T3.id WHERE T3.name = 'Opera'
|
Show the accelerator names and supporting operating systems that are not compatible with the browser named 'Opera'.
|
CREATE TABLE browser (id VARCHAR, name VARCHAR); CREATE TABLE web_client_accelerator (name VARCHAR, operating_system VARCHAR); CREATE TABLE accelerator_compatible_browser (accelerator_id VARCHAR, browser_id VARCHAR); CREATE TABLE web_client_accelerator (name VARCHAR, operating_system VARCHAR, id VARCHAR)
|
SELECT length FROM table_name_68 WHERE name = "himos"
|
What is the Length, when the Name is Himos?
|
CREATE TABLE table_name_68 (length VARCHAR, name VARCHAR)
|
SELECT play_by_play FROM table_name_11 WHERE color_commentator_s_ = "eric wynalda" AND year < 2005
|
What was the Play-by-play when the color commentator was Eric Wynalda, earlier than 2005?
|
CREATE TABLE table_name_11 (play_by_play VARCHAR, color_commentator_s_ VARCHAR, year VARCHAR)
|
SELECT rank FROM table_name_42 WHERE worldwide_gross = "$914,691,118"
|
What is the Rank of the Film with a Worldwide Gross of $914,691,118?
|
CREATE TABLE table_name_42 (rank VARCHAR, worldwide_gross VARCHAR)
|
SELECT award FROM table_name_93 WHERE year < 2013 AND title_of_work = "saber" AND category = "best action"
|
What was awarded before 2013 to the Saber in the category of Best Action?
|
CREATE TABLE table_name_93 (award VARCHAR, category VARCHAR, year VARCHAR, title_of_work VARCHAR)
|
SELECT player FROM table_name_69 WHERE score = 68 - 68 - 75 - 74 = 285
|
Name the player for 68-68-75-74=285
|
CREATE TABLE table_name_69 (player VARCHAR, score VARCHAR)
|
SELECT city___state FROM table_name_96 WHERE series = "atcc round 1"
|
What city had a series of atcc round 1?
|
CREATE TABLE table_name_96 (city___state VARCHAR, series VARCHAR)
|
SELECT status FROM table_name_91 WHERE date = "07/01/1961"
|
What is the status for 07/01/1961?
|
CREATE TABLE table_name_91 (status VARCHAR, date VARCHAR)
|
SELECT 1999 FROM table_name_18 WHERE 1998 = "2r"
|
What is 1999, when 1998 is 2R?
|
CREATE TABLE table_name_18 (Id VARCHAR)
|
SELECT MAX(year) FROM table_name_66 WHERE category = "best film"
|
Which Year has a Category of best film?
|
CREATE TABLE table_name_66 (year INTEGER, category VARCHAR)
|
SELECT COUNT(enrollment) FROM table_name_79 WHERE ihsaa_class = "aaaaa" AND mascot = "spartans"
|
How much Enrollment has an IHSAA Class of aaaaa, and a Mascot of spartans?
|
CREATE TABLE table_name_79 (enrollment VARCHAR, ihsaa_class VARCHAR, mascot VARCHAR)
|
SELECT AVG(draw) FROM table_name_62 WHERE place = 5 AND points > 15
|
what is the average draw when the place is 5 and points more than 15?
|
CREATE TABLE table_name_62 (draw INTEGER, place VARCHAR, points VARCHAR)
|
SELECT f_id FROM files WHERE formats = "mp4" UNION SELECT f_id FROM song WHERE resolution > 720
|
What are the ids of songs that are available in either mp4 format or have resolution above 720?
|
CREATE TABLE song (f_id VARCHAR, formats VARCHAR, resolution INTEGER); CREATE TABLE files (f_id VARCHAR, formats VARCHAR, resolution INTEGER)
|
SELECT away_team AS score FROM table_name_3 WHERE away_team = "st kilda" AND crowd = 8157
|
Name the Away team score which has an Away team of st kilda, and a Crowd of 8157?
|
CREATE TABLE table_name_3 (away_team VARCHAR, crowd VARCHAR)
|
SELECT opposing_teams FROM table_name_86 WHERE against < 6
|
What is Opposing Teams, when Against is less than 6?
|
CREATE TABLE table_name_86 (opposing_teams VARCHAR, against INTEGER)
|
SELECT distance FROM table_name_24 WHERE race = "sam's town 250"
|
What is the distance of the Sam's town 250 race?
|
CREATE TABLE table_name_24 (distance VARCHAR, race VARCHAR)
|
SELECT SUM(year) FROM table_name_68 WHERE points > 0
|
How many years had more than 0 points?
|
CREATE TABLE table_name_68 (year INTEGER, points INTEGER)
|
SELECT dates_administered FROM table_name_72 WHERE lead_margin > 14 AND poll_source = "research 2000"
|
What were the dates administered when the lead margin was larger than 14 and the poll source was Research 2000?
|
CREATE TABLE table_name_72 (dates_administered VARCHAR, lead_margin VARCHAR, poll_source VARCHAR)
|
SELECT winner FROM table_name_10 WHERE general_classification = "miguel indurain" AND points_classification = "mario cipollini" AND mountains_classification = "claudio chiappucci" AND young_rider_classification = "pavel tonkov"
|
Who was the winner when the General classification was held by Miguel Indurain, the Points classification held by Mario Cipollini, the Mountains classification held by Claudio Chiappucci, and the Young RIder classification held by Pavel Tonkov?
|
CREATE TABLE table_name_10 (winner VARCHAR, young_rider_classification VARCHAR, mountains_classification VARCHAR, general_classification VARCHAR, points_classification VARCHAR)
|
SELECT opponent FROM table_name_36 WHERE loss = "sele (0-1)"
|
Who was the opponent at the game with a loss of Sele (0-1)?
|
CREATE TABLE table_name_36 (opponent VARCHAR, loss VARCHAR)
|
SELECT ihsa_cheerleading_class FROM table_27653955_1 WHERE enrollment = 2600
|
What is the IHSA cheerleading class for the enrollment of 2600?
|
CREATE TABLE table_27653955_1 (ihsa_cheerleading_class VARCHAR, enrollment VARCHAR)
|
SELECT tyre FROM table_name_81 WHERE circuit = "kyalami"
|
What tyre was used in Kyalami?
|
CREATE TABLE table_name_81 (tyre VARCHAR, circuit VARCHAR)
|
SELECT administrative_capital FROM table_1966992_1 WHERE census_2006_population = 249425
|
What is the administrative capital that has a 2006 census population of 249425?
|
CREATE TABLE table_1966992_1 (administrative_capital VARCHAR, census_2006_population VARCHAR)
|
SELECT score FROM table_name_32 WHERE venue = "stade général seyni kountché, niamey" AND competition = "friendly" AND date = "9 october 2012"
|
what is the score when the venue is stade général seyni kountché, niamey, the competition is friendly and the date is 9 october 2012?
|
CREATE TABLE table_name_32 (score VARCHAR, date VARCHAR, venue VARCHAR, competition VARCHAR)
|
SELECT AVG(total) FROM table_name_20 WHERE fa_cup_goals = "1" AND league_goals = "10" AND club = "crystal palace"
|
What is the average Total, when FA Cup Goals is 1, when League Goals is 10, and when Club is Crystal Palace?
|
CREATE TABLE table_name_20 (total INTEGER, club VARCHAR, fa_cup_goals VARCHAR, league_goals VARCHAR)
|
SELECT MAX(money__) AS ¥_ FROM table_name_65 WHERE round_2 = 65 AND round_4 < 67
|
What is the maximum ¥ for a round 2 score of 65 and a round 4 score smaller than 67?
|
CREATE TABLE table_name_65 (money__ INTEGER, round_2 VARCHAR, round_4 VARCHAR)
|
SELECT competition FROM table_name_71 WHERE score = "3-0"
|
What was the competition for score of 3-0
|
CREATE TABLE table_name_71 (competition VARCHAR, score VARCHAR)
|
SELECT place FROM table_name_20 WHERE score = 70 AND country = "australia"
|
Where was the place in Australia that had a score of 70?
|
CREATE TABLE table_name_20 (place VARCHAR, score VARCHAR, country VARCHAR)
|
SELECT location_attendance FROM table_name_69 WHERE date = "january 2"
|
Where was the game, and how many attended the game on january 2?
|
CREATE TABLE table_name_69 (location_attendance VARCHAR, date VARCHAR)
|
SELECT T2.investor_id FROM INVESTORS AS T1 JOIN TRANSACTIONS AS T2 ON T1.investor_id = T2.investor_id GROUP BY T2.investor_id HAVING COUNT(*) >= 2
|
Show the ids of the investors who have at least two transactions.
|
CREATE TABLE TRANSACTIONS (investor_id VARCHAR); CREATE TABLE INVESTORS (investor_id VARCHAR)
|
SELECT COUNT(no_in_series) FROM table_2618119_1 WHERE no_in_season = 8
|
How many numbers in series were for the number in season of 8?
|
CREATE TABLE table_2618119_1 (no_in_series VARCHAR, no_in_season VARCHAR)
|
SELECT builder FROM table_name_98 WHERE kanji = "曙"
|
Which builder has the the kanji of 曙?
|
CREATE TABLE table_name_98 (builder VARCHAR, kanji VARCHAR)
|
SELECT MIN(matches) FROM table_27922491_8
|
What is the least amount of matches?
|
CREATE TABLE table_27922491_8 (matches INTEGER)
|
SELECT 1995 FROM table_name_29 WHERE 1986 = "a" AND 1992 = "2r"
|
What is the 1995 value with A in 1986 and 2r in 1992?
|
CREATE TABLE table_name_29 (Id VARCHAR)
|
SELECT to_par FROM table_name_60 WHERE score = 71 - 74 = 145 AND player = "tom weiskopf"
|
What is the to par of player tom weiskopf, who has a 71-74=145 score?
|
CREATE TABLE table_name_60 (to_par VARCHAR, player VARCHAR, score VARCHAR)
|
SELECT COUNT(content) FROM table_15887683_19 WHERE television_service = "R-LIGHT"
|
How many times was something listed under content when the television was R-light?
|
CREATE TABLE table_15887683_19 (content VARCHAR, television_service VARCHAR)
|
SELECT winning_constructor FROM table_name_22 WHERE grand_prix = "abu dhabi grand prix"
|
Name the winning constructor for abu dhabi grand prix
|
CREATE TABLE table_name_22 (winning_constructor VARCHAR, grand_prix VARCHAR)
|
SELECT MIN(average_cards_a_game) FROM table_name_22 WHERE season = "2004/2005" AND red_cards > 3
|
Which Average Cards a game has a Season of 2004/2005, and a Red Cards larger than 3?
|
CREATE TABLE table_name_22 (average_cards_a_game INTEGER, season VARCHAR, red_cards VARCHAR)
|
SELECT AVG(total) FROM table_name_60 WHERE to_par < 10 AND country = "south korea"
|
Can you tell me the average Total that has the To par smaller than 10, and the Country of south korea?
|
CREATE TABLE table_name_60 (total INTEGER, to_par VARCHAR, country VARCHAR)
|
SELECT australian FROM table_name_67 WHERE british = "ɪ" AND letter = "æ /i/"
|
What is the Australian letter with a British of ɪ and a letter of æ /i/??
|
CREATE TABLE table_name_67 (australian VARCHAR, british VARCHAR, letter VARCHAR)
|
SELECT uci_protour_points FROM table_name_33 WHERE cyclist = "davide rebellin"
|
What is Davide Rebellin' UCI ProTour Points?
|
CREATE TABLE table_name_33 (uci_protour_points VARCHAR, cyclist VARCHAR)
|
SELECT driver FROM table_name_87 WHERE chassis = "bugatti t51" AND entrant = "automobiles ettore bugatti"
|
Who was the Driver, when the Chassis was Bugatti T51, and when the Entrant was Automobiles Ettore Bugatti?
|
CREATE TABLE table_name_87 (driver VARCHAR, chassis VARCHAR, entrant VARCHAR)
|
SELECT MAX(rank) FROM table_name_13 WHERE silver = 4 AND bronze < 3
|
Name the highest rank when silver is 4 and bronze is less than 3
|
CREATE TABLE table_name_13 (rank INTEGER, silver VARCHAR, bronze VARCHAR)
|
SELECT chassis FROM table_2503102_2 WHERE team = "Rahal Letterman Lanigan Racing"
|
What chassis is on the car repped by team rahal letterman lanigan racing?
|
CREATE TABLE table_2503102_2 (chassis VARCHAR, team VARCHAR)
|
SELECT points FROM table_13741576_6 WHERE points_for = "546"
|
Nantyglo RFC had 546 points for and how many points?
|
CREATE TABLE table_13741576_6 (points VARCHAR, points_for VARCHAR)
|
SELECT place FROM table_name_65 WHERE player = "tom lehman"
|
WHAT PLACE DOES TOM LEHMAN HAVE?
|
CREATE TABLE table_name_65 (place VARCHAR, player VARCHAR)
|
SELECT MIN(season) FROM table_name_13 WHERE runner_up = "aisha jefcoate"
|
What is the earliest season where Aisha Jefcoate was the runner-up?
|
CREATE TABLE table_name_13 (season INTEGER, runner_up VARCHAR)
|
SELECT result FROM table_14984039_1 WHERE date = "October 14, 1956"
|
what is the result for October 14, 1956?
|
CREATE TABLE table_14984039_1 (result VARCHAR, date VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.