question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
What is the height of the delegate whose hometown is Renton, WA? | CREATE TABLE table_name_69 (height VARCHAR, hometown VARCHAR) | SELECT height FROM table_name_69 WHERE hometown = "renton, wa" |
what is the name when the heat is less than 3, the rank is less than 18, the nationality is east germany and the time is 2:35.31? | CREATE TABLE table_name_64 (name VARCHAR, time VARCHAR, nationality VARCHAR, heat VARCHAR, rank VARCHAR) | SELECT name FROM table_name_64 WHERE heat < 3 AND rank < 18 AND nationality = "east germany" AND time = "2:35.31" |
Who was the Away captain that played on 12,13,14 Jun 1902 which resulted in a draw? | CREATE TABLE table_name_83 (away_captain VARCHAR, result VARCHAR, date VARCHAR) | SELECT away_captain FROM table_name_83 WHERE result = "draw" AND date = "12,13,14 jun 1902" |
Name the number of lines for porta nolana - ottaviano- sarno | CREATE TABLE table_2385460_1 (lines VARCHAR, route VARCHAR) | SELECT COUNT(lines) FROM table_2385460_1 WHERE route = "Porta Nolana - Ottaviano- Sarno" |
Which result happened more recently than week 2, and had a date of November 30, 1958? | CREATE TABLE table_name_98 (result VARCHAR, week VARCHAR, date VARCHAR) | SELECT result FROM table_name_98 WHERE week > 2 AND date = "november 30, 1958" |
What is the total number of seasons with more than 0 wins and a 1st final placing? | CREATE TABLE table_name_30 (season VARCHAR, wins VARCHAR, final_placing VARCHAR) | SELECT COUNT(season) FROM table_name_30 WHERE wins > 0 AND final_placing = "1st" |
Which Company or Product name requested £70,000 on Episode 11? | CREATE TABLE table_name_17 (company_or_product_name VARCHAR, episode VARCHAR, money_requested__£_ VARCHAR) | SELECT company_or_product_name FROM table_name_17 WHERE episode = "episode 11" AND money_requested__£_ = "70,000" |
How many region 4 dates are associated with a region 2 date of July 9, 2007? | CREATE TABLE table_240936_2 (region_4__australia_ VARCHAR, region_2__uk_ VARCHAR) | SELECT COUNT(region_4__australia_) FROM table_240936_2 WHERE region_2__uk_ = "July 9, 2007" |
When was the first performance with a replacement cast? | CREATE TABLE table_name_80 (first_performance VARCHAR, status VARCHAR) | SELECT first_performance FROM table_name_80 WHERE status = "replacement cast" |
What is the To par for Robert Allenby from Australia | CREATE TABLE table_name_6 (to_par VARCHAR, country VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_6 WHERE country = "australia" AND player = "robert allenby" |
What is the total bronze with a Gold larger than 1, a Rank of 2, and a Silver smaller than 12? | CREATE TABLE table_name_62 (bronze VARCHAR, silver VARCHAR, gold VARCHAR, rank VARCHAR) | SELECT COUNT(bronze) FROM table_name_62 WHERE gold > 1 AND rank = 2 AND silver < 12 |
What is the number of stages where the teams classification leader is Cervélo Testteam? | CREATE TABLE table_26010857_13 (stage VARCHAR, teams_classification VARCHAR) | SELECT COUNT(stage) FROM table_26010857_13 WHERE teams_classification = "Cervélo TestTeam" |
Who built the car that retired due to suspension before 65 laps? | CREATE TABLE table_name_7 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR) | SELECT constructor FROM table_name_7 WHERE laps < 65 AND time_retired = "suspension" |
On what Date was Patty Sheehan Runner(s)-up? | CREATE TABLE table_name_62 (date VARCHAR, runner_s__up VARCHAR) | SELECT date FROM table_name_62 WHERE runner_s__up = "patty sheehan" |
What is the quantity of the item with the numbers of 29-36? | CREATE TABLE table_name_91 (quantity INTEGER, numbers VARCHAR) | SELECT AVG(quantity) FROM table_name_91 WHERE numbers = "29-36" |
What is the lowest profits (billion $) for the rank 6? | CREATE TABLE table_name_25 (profits__billion_ INTEGER, rank VARCHAR) | SELECT MIN(profits__billion_) AS $_ FROM table_name_25 WHERE rank = 6 |
What record has montreal, qc as the location, with boston bruins as the visitor? | CREATE TABLE table_name_14 (record VARCHAR, location VARCHAR, visitor VARCHAR) | SELECT record FROM table_name_14 WHERE location = "montreal, qc" AND visitor = "boston bruins" |
Ioannis Christou with a rank smaller than 6 has what notes? | CREATE TABLE table_name_71 (notes VARCHAR, rank VARCHAR, athlete VARCHAR) | SELECT notes FROM table_name_71 WHERE rank < 6 AND athlete = "ioannis christou" |
Which Team has 19 Carries, and a Week larger than 13? | CREATE TABLE table_name_18 (team VARCHAR, carries VARCHAR, week VARCHAR) | SELECT team FROM table_name_18 WHERE carries = 19 AND week > 13 |
What is the Result when the week is later than 9, and there are 65,858 people in attendance? | CREATE TABLE table_name_33 (result VARCHAR, week VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_33 WHERE week > 9 AND attendance = "65,858" |
What is the lowest match for goals larger than 36? | CREATE TABLE table_name_42 (matches INTEGER, goals INTEGER) | SELECT MIN(matches) FROM table_name_42 WHERE goals > 36 |
What is the average time in a rank of 61? | CREATE TABLE table_name_29 (time INTEGER, rank VARCHAR) | SELECT AVG(time) FROM table_name_29 WHERE rank = 61 |
what is the number of teams where conmebol 1996 did not qualify? | CREATE TABLE table_14310205_1 (team VARCHAR, conmebol_1996 VARCHAR) | SELECT COUNT(team) FROM table_14310205_1 WHERE conmebol_1996 = "did not qualify" |
What is the total of wins when the cuts made is 76 and the events greater than 115? | CREATE TABLE table_name_3 (wins INTEGER, cuts_made VARCHAR, events VARCHAR) | SELECT SUM(wins) FROM table_name_3 WHERE cuts_made = 76 AND events > 115 |
Which Date has a Record of 0-2? | CREATE TABLE table_name_14 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_14 WHERE record = "0-2" |
What rounds did rider Mika Kallio with a Ducati constructor have? | CREATE TABLE table_name_63 (rounds VARCHAR, constructor VARCHAR, rider VARCHAR) | SELECT rounds FROM table_name_63 WHERE constructor = "ducati" AND rider = "mika kallio" |
What is Authors, when Novelty is Gen Et Sp Nov, and when Name is Lanthanocephalus? | CREATE TABLE table_name_13 (authors VARCHAR, novelty VARCHAR, name VARCHAR) | SELECT authors FROM table_name_13 WHERE novelty = "gen et sp nov" AND name = "lanthanocephalus" |
How many clubs were founded in the westfalenstadion stadium? | CREATE TABLE table_26218124_1 (founded VARCHAR, stadium VARCHAR) | SELECT COUNT(founded) FROM table_26218124_1 WHERE stadium = "Westfalenstadion" |
Who is the musical director of the film Vettaiyaadu vilaiyaadu? | CREATE TABLE table_name_35 (music_director VARCHAR, film VARCHAR) | SELECT music_director FROM table_name_35 WHERE film = "vettaiyaadu vilaiyaadu" |
What team was the opponent when there was a score of 5–4 (11)? | CREATE TABLE table_name_38 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_38 WHERE score = "5–4 (11)" |
Name the total number of main contestants for safe position for tina parekh | CREATE TABLE table_18278508_4 (main_contestant VARCHAR, position VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR) | SELECT COUNT(main_contestant) FROM table_18278508_4 WHERE position = "Safe" AND co_contestant__yaar_vs_pyaar_ = "Tina Parekh" |
What were the years for Seasons in CSL when they played in the Guiyang Olympic Sports Center and had Top Division Titles (Overall) of 0? | CREATE TABLE table_name_15 (seasons_in_csl VARCHAR, top_division_titles__overall_ VARCHAR, home_stadium VARCHAR) | SELECT seasons_in_csl FROM table_name_15 WHERE top_division_titles__overall_ = 0 AND home_stadium = "guiyang olympic sports center" |
Who is the player when the pick is 22 and the year [A] is after 1979? | CREATE TABLE table_name_5 (player_name VARCHAR, pick VARCHAR, year_ VARCHAR, a_ VARCHAR) | SELECT player_name FROM table_name_5 WHERE pick = "22" AND year_[a_] > 1979 |
When was became dauphine when birth is 1393? | CREATE TABLE table_name_72 (became_dauphine VARCHAR, birth VARCHAR) | SELECT became_dauphine FROM table_name_72 WHERE birth = "1393" |
Tell me the power output for total production of 100 | CREATE TABLE table_name_38 (power_output_(kw) VARCHAR, total_production VARCHAR) | SELECT power_output_(kw) FROM table_name_38 WHERE total_production = 100 |
How many instruments does the song "Badlands" use? | CREATE TABLE instruments (songid VARCHAR); CREATE TABLE songs (songid VARCHAR) | SELECT COUNT(DISTINCT instrument) FROM instruments AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Badlands" |
What year did a school leave that was founded in 1880? | CREATE TABLE table_11658094_3 (left VARCHAR, founded VARCHAR) | SELECT left FROM table_11658094_3 WHERE founded = 1880 |
What round did the College of Minnesota pick? | CREATE TABLE table_name_27 (round VARCHAR, college VARCHAR) | SELECT round FROM table_name_27 WHERE college = "minnesota" |
What team did a manager leave on 12 Dec 2009 | CREATE TABLE table_22297198_3 (team VARCHAR, date_of_vacancy VARCHAR) | SELECT team FROM table_22297198_3 WHERE date_of_vacancy = "12 Dec 2009" |
Which professionals live in a city containing the substring 'West'? List his or her role, street, city and state. | CREATE TABLE professionals (role_code VARCHAR, street VARCHAR, city VARCHAR, state VARCHAR) | SELECT role_code, street, city, state FROM professionals WHERE city LIKE '%West%' |
Which team scored l 87–115 (ot)? | CREATE TABLE table_name_61 (team VARCHAR, score VARCHAR) | SELECT team FROM table_name_61 WHERE score = "l 87–115 (ot)" |
What is Name, when Games are less than 38, when Rank is less than 4, and when Points are 357? | CREATE TABLE table_name_11 (name VARCHAR, points VARCHAR, games VARCHAR, rank VARCHAR) | SELECT name FROM table_name_11 WHERE games < 38 AND rank < 4 AND points = 357 |
How many Laps have a Driver of satrio hermanto? | CREATE TABLE table_name_76 (laps INTEGER, driver VARCHAR) | SELECT SUM(laps) FROM table_name_76 WHERE driver = "satrio hermanto" |
What is the number of points for east germany, and a Places of 88? | CREATE TABLE table_name_84 (points INTEGER, nation VARCHAR, places VARCHAR) | SELECT SUM(points) FROM table_name_84 WHERE nation = "east germany" AND places = "88" |
What is the Bello when Ben-Tahir is 296? | CREATE TABLE table_11447995_2 (bello VARCHAR, ben_tahir VARCHAR) | SELECT bello FROM table_11447995_2 WHERE ben_tahir = "296" |
What year and where was the tournament when fan ying won the womens singles? | CREATE TABLE table_28138035_26 (year_location VARCHAR, womens_singles VARCHAR) | SELECT year_location FROM table_28138035_26 WHERE womens_singles = "Fan Ying" |
At the 2001 Davis Cup, what Opponent had less than 50 Aces? | CREATE TABLE table_name_93 (opponent VARCHAR, aces VARCHAR, event VARCHAR) | SELECT opponent FROM table_name_93 WHERE aces < 50 AND event = "2001 davis cup" |
What is the position of the player from Beaumont, Texas? | CREATE TABLE table_name_83 (position VARCHAR, hometown VARCHAR) | SELECT position FROM table_name_83 WHERE hometown = "beaumont, texas" |
What are Utah's high points? | CREATE TABLE table_name_49 (high_points VARCHAR, team VARCHAR) | SELECT high_points FROM table_name_49 WHERE team = "utah" |
What is the to par of United States' Cristie Kerr? | CREATE TABLE table_name_66 (to_par VARCHAR, country VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_66 WHERE country = "united states" AND player = "cristie kerr" |
What is the other value associated with a Christianity value of 10.24%? | CREATE TABLE table_name_21 (other VARCHAR, christianity VARCHAR) | SELECT other FROM table_name_21 WHERE christianity = "10.24%" |
list the first and last names, and the addresses of all employees in the ascending order of their birth date. | CREATE TABLE employee (fname VARCHAR, lname VARCHAR, address VARCHAR, Bdate VARCHAR) | SELECT fname, lname, address FROM employee ORDER BY Bdate |
what is c-span 2009 when times 2008** is 08? | CREATE TABLE table_name_80 (c_span_2009 VARCHAR, times_2008 VARCHAR) | SELECT c_span_2009 FROM table_name_80 WHERE times_2008 * * = "08" |
Which Opposing Teams is on 06/02/1988? | CREATE TABLE table_name_18 (opposing_teams VARCHAR, date VARCHAR) | SELECT opposing_teams FROM table_name_18 WHERE date = "06/02/1988" |
Caps of 93 had how many goals? | CREATE TABLE table_name_94 (goals VARCHAR, caps VARCHAR) | SELECT goals FROM table_name_94 WHERE caps = 93 |
What is the average horsepower for all cars produced before 1980 ? | CREATE TABLE cars_data (horsepower INTEGER, year INTEGER) | SELECT AVG(horsepower) FROM cars_data WHERE year < 1980 |
Find the names of Japanese constructors that have once earned more than 5 points? | CREATE TABLE constructorstandings (constructorid VARCHAR, points VARCHAR); CREATE TABLE constructors (name VARCHAR, constructorid VARCHAR, nationality VARCHAR) | SELECT T1.name FROM constructors AS T1 JOIN constructorstandings AS T2 ON T1.constructorid = T2.constructorid WHERE T1.nationality = "Japanese" AND T2.points > 5 |
What was the earliest year someone was first elected from Massachusetts 3 | CREATE TABLE table_1341395_22 (first_elected INTEGER, district VARCHAR) | SELECT MIN(first_elected) FROM table_1341395_22 WHERE district = "Massachusetts 3" |
What was the average election year that has less than 136 deputies, and 1,560,753 votes received? | CREATE TABLE table_name_86 (election_date INTEGER, number_of_deputies VARCHAR, number_of_votes_received VARCHAR) | SELECT AVG(election_date) FROM table_name_86 WHERE number_of_deputies < 136 AND number_of_votes_received = "1,560,753" |
What is the position that has the outgoing manager lászló Dajka? | CREATE TABLE table_name_60 (position_in_table VARCHAR, outgoing_manager VARCHAR) | SELECT position_in_table FROM table_name_60 WHERE outgoing_manager = "lászló dajka" |
What day was Australia the opposing team and the against 12? | CREATE TABLE table_name_92 (date VARCHAR, opposing_teams VARCHAR, against VARCHAR) | SELECT date FROM table_name_92 WHERE opposing_teams = "australia" AND against = 12 |
What is the year of the season that was 12? | CREATE TABLE table_10120207_8 (tv_season VARCHAR, season VARCHAR) | SELECT tv_season FROM table_10120207_8 WHERE season = 12 |
who is the away team when the home team is hartlepool united? | CREATE TABLE table_name_10 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_10 WHERE home_team = "hartlepool united" |
How many players named jake flaherty? | CREATE TABLE table_18064020_21 (solo VARCHAR, name VARCHAR) | SELECT COUNT(solo) FROM table_18064020_21 WHERE name = "Jake Flaherty" |
What is the MDR number of Rait Charhi Dharamshala? | CREATE TABLE table_26036389_1 (mdr_no INTEGER, name_of_road VARCHAR) | SELECT MIN(mdr_no) FROM table_26036389_1 WHERE name_of_road = "Rait Charhi Dharamshala" |
Which Total has a Rank of 4, and a Silver larger than 2? | CREATE TABLE table_name_11 (total INTEGER, rank VARCHAR, silver VARCHAR) | SELECT MIN(total) FROM table_name_11 WHERE rank = "4" AND silver > 2 |
What visiting team played at the home of the Chicago Black Hawks with a record of 1-1? | CREATE TABLE table_name_48 (visitor VARCHAR, home VARCHAR, record VARCHAR) | SELECT visitor FROM table_name_48 WHERE home = "chicago black hawks" AND record = "1-1" |
Who had the highest rebounds during the game with a record of 23-47? | CREATE TABLE table_22822559_8 (high_rebounds VARCHAR, record VARCHAR) | SELECT high_rebounds FROM table_22822559_8 WHERE record = "23-47" |
What entrant had a Maserati 250F chassis and fewer than 6 points before 1957? | CREATE TABLE table_name_17 (entrant VARCHAR, points VARCHAR, chassis VARCHAR, year VARCHAR) | SELECT entrant FROM table_name_17 WHERE chassis = "maserati 250f" AND year < 1957 AND points < 6 |
What is 2nd Party, when Election is "1865"? | CREATE TABLE table_name_82 (election VARCHAR) | SELECT 2 AS nd_party FROM table_name_82 WHERE election = "1865" |
What is the highest number of laps that also has a finish total of 8? | CREATE TABLE table_name_98 (laps INTEGER, finish VARCHAR) | SELECT MAX(laps) FROM table_name_98 WHERE finish = "8" |
What is listed in eliminated when the finish is 15th voted out 9th jury Member Day 46? | CREATE TABLE table_28742659_2 (eliminated VARCHAR, finish VARCHAR) | SELECT eliminated FROM table_28742659_2 WHERE finish = "15th voted Out 9th Jury Member Day 46" |
How many episodes were shown on Friday if 190 Boardwalk Empire was shown on Wednesday? | CREATE TABLE table_18173916_6 (friday VARCHAR, wednesday VARCHAR) | SELECT COUNT(friday) FROM table_18173916_6 WHERE wednesday = "190 Boardwalk Empire" |
Which Baltimore group is of the retroviridae family? | CREATE TABLE table_name_62 (baltimore_group VARCHAR, family VARCHAR) | SELECT baltimore_group FROM table_name_62 WHERE family = "retroviridae" |
What was the loss when the record was 46-59? | CREATE TABLE table_name_71 (loss VARCHAR, record VARCHAR) | SELECT loss FROM table_name_71 WHERE record = "46-59" |
Which junior team is associated with an NHL pick by the Buffalo Sabres? | CREATE TABLE table_2850912_4 (college_junior_club_team VARCHAR, nhl_team VARCHAR) | SELECT college_junior_club_team FROM table_2850912_4 WHERE nhl_team = "Buffalo Sabres" |
What was the year that had Anugerah Bintang Popular Berita Harian 23 as competition? | CREATE TABLE table_name_30 (year VARCHAR, competition VARCHAR) | SELECT COUNT(year) FROM table_name_30 WHERE competition = "anugerah bintang popular berita harian 23" |
What country does robert allenby represent? | CREATE TABLE table_18862490_2 (country VARCHAR, player VARCHAR) | SELECT country FROM table_18862490_2 WHERE player = "Robert Allenby" |
In the tournament that had 3 Top-10's, and less than 15 events, how many Top-5's did the player have? | CREATE TABLE table_name_59 (top_5 INTEGER, top_10 VARCHAR, events VARCHAR) | SELECT SUM(top_5) FROM table_name_59 WHERE top_10 = 3 AND events < 15 |
What was the score in the game in which Michael Beasley (26) did the high points? | CREATE TABLE table_27756314_11 (score VARCHAR, high_points VARCHAR) | SELECT score FROM table_27756314_11 WHERE high_points = "Michael Beasley (26)" |
what is the position for the united states u-20 affiliation | CREATE TABLE table_29626583_1 (position VARCHAR, affiliation VARCHAR) | SELECT position FROM table_29626583_1 WHERE affiliation = "United States U-20" |
How many Losses have Draws larger than 0? | CREATE TABLE table_name_58 (losses INTEGER, draws INTEGER) | SELECT MAX(losses) FROM table_name_58 WHERE draws > 0 |
What team did Derek Black Play for prior to being drafted? | CREATE TABLE table_1473672_6 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_1473672_6 WHERE player = "Derek Black" |
What is HDTV, when Language is English, and when Television Service is MTV Dance? | CREATE TABLE table_name_82 (hdtv VARCHAR, language VARCHAR, television_service VARCHAR) | SELECT hdtv FROM table_name_82 WHERE language = "english" AND television_service = "mtv dance" |
What is the highest amount of floors in Stockholm with a rank of 15? | CREATE TABLE table_name_96 (floors INTEGER, location VARCHAR, rank VARCHAR) | SELECT MAX(floors) FROM table_name_96 WHERE location = "stockholm" AND rank = "15" |
what is the rank for the rating 4.4? | CREATE TABLE table_15681686_4 (rank__night_ VARCHAR, rating VARCHAR) | SELECT rank__night_ FROM table_15681686_4 WHERE rating = "4.4" |
Which city has most number of departing flights? | CREATE TABLE AIRPORTS (City VARCHAR, AirportCode VARCHAR); CREATE TABLE FLIGHTS (SourceAirport VARCHAR) | SELECT T1.City FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.SourceAirport GROUP BY T1.City ORDER BY COUNT(*) DESC LIMIT 1 |
What is every name origin with the name Ovda Fluctus? | CREATE TABLE table_16799784_12 (name VARCHAR) | SELECT name AS origin FROM table_16799784_12 WHERE name = "Ovda Fluctus" |
when was the episode on which barbara windsor and heston blumenthal guest starred broadcasted | CREATE TABLE table_29135051_3 (broadcast_date VARCHAR, guest_s_ VARCHAR) | SELECT broadcast_date FROM table_29135051_3 WHERE guest_s_ = "Barbara Windsor and Heston Blumenthal" |
What year was Ontario's first LLCR? | CREATE TABLE table_28457809_3 (first_llcr VARCHAR, province VARCHAR) | SELECT first_llcr FROM table_28457809_3 WHERE province = "Ontario" |
How many republican incumbents first elected in 1974? | CREATE TABLE table_1341522_41 (incumbent VARCHAR, party VARCHAR, first_elected VARCHAR) | SELECT COUNT(incumbent) FROM table_1341522_41 WHERE party = "Republican" AND first_elected = 1974 |
what is the british name when the american name is sixteenth note? | CREATE TABLE table_name_50 (british_name VARCHAR, american_name VARCHAR) | SELECT british_name FROM table_name_50 WHERE american_name = "sixteenth note" |
What is the year average when not free was the status, and less than 7 was the civil liberties, and less than 6 political rights? | CREATE TABLE table_name_39 (year INTEGER, political_rights VARCHAR, status VARCHAR, civil_liberties VARCHAR) | SELECT AVG(year) FROM table_name_39 WHERE status = "not free" AND civil_liberties < 7 AND political_rights < 6 |
Where was the tournament where monica seles was the finalist who played on a hard surface? | CREATE TABLE table_name_60 (tournament VARCHAR, surface VARCHAR, finalist VARCHAR) | SELECT tournament FROM table_name_60 WHERE surface = "hard" AND finalist = "monica seles" |
What is Author, when TV Companions Featured is "Peri Brown", and when Title is "Race Against Time"? | CREATE TABLE table_name_1 (author VARCHAR, tv_companions_featured VARCHAR, title VARCHAR) | SELECT author FROM table_name_1 WHERE tv_companions_featured = "peri brown" AND title = "race against time" |
What is the date of the Kmart greater greensboro open in North Carolina? | CREATE TABLE table_name_65 (date VARCHAR, location VARCHAR, tournament VARCHAR) | SELECT date FROM table_name_65 WHERE location = "north carolina" AND tournament = "kmart greater greensboro open" |
Which Mark has an Athlete of heike drechsler? | CREATE TABLE table_name_17 (mark VARCHAR, athlete VARCHAR) | SELECT mark FROM table_name_17 WHERE athlete = "heike drechsler" |
What is the route that has a rank higher than 63, and Separation Summit as its mountain pass? | CREATE TABLE table_name_33 (route INTEGER, rank VARCHAR, mountain_pass VARCHAR) | SELECT SUM(route) FROM table_name_33 WHERE rank > 63 AND mountain_pass = "separation summit" |
Who provided lyrics or music to the artist Cube? | CREATE TABLE table_name_46 (lyrics__l____music__m_ VARCHAR, artist VARCHAR) | SELECT lyrics__l____music__m_ FROM table_name_46 WHERE artist = "cube" |
What's the Game SIte with an Opponent of San Diego Chargers? | CREATE TABLE table_name_97 (game_site VARCHAR, opponent VARCHAR) | SELECT game_site FROM table_name_97 WHERE opponent = "san diego chargers" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.