answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
|
|---|---|---|
SELECT rider FROM table_name_5 WHERE grid = "21"
|
WHAT IS THE RIDER WITH A 21 GRID?
|
CREATE TABLE table_name_5 (rider VARCHAR, grid VARCHAR)
|
SELECT gerb FROM table_name_16 WHERE attack = "11%"
|
What GERB has an 11% Attack?
|
CREATE TABLE table_name_16 (gerb VARCHAR, attack VARCHAR)
|
SELECT founded FROM table_name_65 WHERE school = "airds high school"
|
What is the year Airds High School was founded?
|
CREATE TABLE table_name_65 (founded VARCHAR, school VARCHAR)
|
SELECT weblink FROM table_name_85 WHERE college_or_campus_name = "anna university college of engineering kanchipuram"
|
What Weblink has a College or Campus Name of anna university college of engineering kanchipuram?
|
CREATE TABLE table_name_85 (weblink VARCHAR, college_or_campus_name VARCHAR)
|
SELECT organization FROM table_name_93 WHERE finish = "4th"
|
Which organization has a Finish of 4th?
|
CREATE TABLE table_name_93 (organization VARCHAR, finish VARCHAR)
|
SELECT country FROM table_name_70 WHERE name = "cordier"
|
What is the country of cordier?
|
CREATE TABLE table_name_70 (country VARCHAR, name VARCHAR)
|
SELECT result FROM table_name_17 WHERE week = 12
|
What is the week 12 result?
|
CREATE TABLE table_name_17 (result VARCHAR, week VARCHAR)
|
SELECT MAX(lot_no) FROM table_name_46 WHERE notes = "b4 bogies" AND diagram = 185
|
Name the most lot number with notes of b4 bogies and diagram of 185
|
CREATE TABLE table_name_46 (lot_no INTEGER, notes VARCHAR, diagram VARCHAR)
|
SELECT SUM(goal_difference) FROM table_name_99 WHERE played > 44
|
How many goal differences have Played larger than 44?
|
CREATE TABLE table_name_99 (goal_difference INTEGER, played INTEGER)
|
SELECT nhl_team FROM table_2679061_11 WHERE pick__number = 203
|
What team had pick 203?
|
CREATE TABLE table_2679061_11 (nhl_team VARCHAR, pick__number VARCHAR)
|
SELECT MIN(laps) FROM table_name_67 WHERE team = "team green" AND grid = 1
|
What is the smallest number of laps for Team Green when the grid is 1?
|
CREATE TABLE table_name_67 (laps INTEGER, team VARCHAR, grid VARCHAR)
|
SELECT result FROM table_name_49 WHERE date = "november 20, 1988"
|
What was the result on November 20, 1988?
|
CREATE TABLE table_name_49 (result VARCHAR, date VARCHAR)
|
SELECT performance FROM table_name_49 WHERE season > 2003 AND discipline = "3000 m"
|
What were the performance lengths in the 3000 m events in and after 2003?
|
CREATE TABLE table_name_49 (performance VARCHAR, season VARCHAR, discipline VARCHAR)
|
SELECT party FROM table_name_88 WHERE first_elected > 1999 AND position = "supervisor" AND name = "john foust"
|
Name the party with first elected more than 1999 and position of supervisor for john foust
|
CREATE TABLE table_name_88 (party VARCHAR, name VARCHAR, first_elected VARCHAR, position VARCHAR)
|
SELECT strongs__number FROM table_1242447_2 WHERE english_spelling = "Jirmejah"
|
What is the strongs # for the english spelling of the word jirmejah?
|
CREATE TABLE table_1242447_2 (strongs__number VARCHAR, english_spelling VARCHAR)
|
SELECT final_ladder_position FROM table_name_75 WHERE finals_qualification = "dnq" AND teams < 10
|
What's the ladder position when team is less than 10 and the Finals qualifications were DNQ?
|
CREATE TABLE table_name_75 (final_ladder_position VARCHAR, finals_qualification VARCHAR, teams VARCHAR)
|
SELECT MIN(swimsuit) FROM table_name_85 WHERE interview < 8.56 AND evening_gown > 8.54
|
What is the lowest swimsuit score where the contestant scored less than 8.56 in the interview and greater than 8.54 in the evening gown?
|
CREATE TABLE table_name_85 (swimsuit INTEGER, interview VARCHAR, evening_gown VARCHAR)
|
SELECT SUM(week) FROM table_name_9 WHERE result = "l 3-17"
|
How many weeks have l 3-17 as the result?
|
CREATE TABLE table_name_9 (week INTEGER, result VARCHAR)
|
SELECT DISTINCT T1.supplier_name, T1.supplier_phone FROM suppliers AS T1 JOIN product_suppliers AS T2 ON T1.supplier_id = T2.supplier_id JOIN products AS T3 ON T2.product_id = T3.product_id WHERE T3.product_name = "red jeans"
|
List the names and phone numbers of all the distinct suppliers who supply red jeans.
|
CREATE TABLE product_suppliers (supplier_id VARCHAR, product_id VARCHAR); CREATE TABLE suppliers (supplier_name VARCHAR, supplier_phone VARCHAR, supplier_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR)
|
SELECT status FROM table_name_33 WHERE date = "10/05/1975"
|
What is Status, when Date is 10/05/1975?
|
CREATE TABLE table_name_33 (status VARCHAR, date VARCHAR)
|
SELECT COUNT(candidates) FROM table_1342198_38 WHERE district = "Pennsylvania 21"
|
What is the number of candidates for pennsylvania 21
|
CREATE TABLE table_1342198_38 (candidates VARCHAR, district VARCHAR)
|
SELECT tries_against FROM table_name_4 WHERE points_for = "207"
|
What is the Tries against for the team that has 207 points for?
|
CREATE TABLE table_name_4 (tries_against VARCHAR, points_for VARCHAR)
|
SELECT record FROM table_name_14 WHERE date = "april 6"
|
What is the record after the April 6 game?
|
CREATE TABLE table_name_14 (record VARCHAR, date VARCHAR)
|
SELECT mascot FROM table_name_23 WHERE enrollment > 2 OFFSET 464
|
What Mascot has an Enrollment greater than 2,464?
|
CREATE TABLE table_name_23 (mascot VARCHAR, enrollment INTEGER)
|
SELECT years FROM table_name_98 WHERE name = "kawerau putauaki school"
|
What are the years for Kawerau Putauaki School?
|
CREATE TABLE table_name_98 (years VARCHAR, name VARCHAR)
|
SELECT COUNT(round) FROM table_name_24 WHERE overall = 211
|
How many rounds had an overall of 211?
|
CREATE TABLE table_name_24 (round VARCHAR, overall VARCHAR)
|
SELECT SUM(draws) FROM table_name_27 WHERE el_zamalek_wins < 36 AND total > 2 AND al_ahly_wins > 37
|
What is the sum of draws for El Zamalek wins under 36, total over 2, and Al Ahly wins over 37?
|
CREATE TABLE table_name_27 (draws INTEGER, al_ahly_wins VARCHAR, el_zamalek_wins VARCHAR, total VARCHAR)
|
SELECT record FROM table_10647639_1 WHERE date = "December 16, 1985"
|
On december 16, 1985, all the records were what?
|
CREATE TABLE table_10647639_1 (record VARCHAR, date VARCHAR)
|
SELECT player FROM table_name_83 WHERE total > 148 AND to_par = 12
|
What is Player, when Total is greater than 148, and when To Par is "12"?
|
CREATE TABLE table_name_83 (player VARCHAR, total VARCHAR, to_par VARCHAR)
|
SELECT MAX(points) FROM table_25711913_2 WHERE player = "Curtis"
|
How many maximum points did Curtis scored?
|
CREATE TABLE table_25711913_2 (points INTEGER, player VARCHAR)
|
SELECT rating__18_49_ FROM table_24689168_5 WHERE viewers__millions_ = "9.50"
|
What was the 18 to 49 rating when 9.50 million watched?
|
CREATE TABLE table_24689168_5 (rating__18_49_ VARCHAR, viewers__millions_ VARCHAR)
|
SELECT leagues_entering_at_this_round FROM table_23449363_1 WHERE round = "Extra Preliminary round"
|
Which leagues entered an extra preliminary round?
|
CREATE TABLE table_23449363_1 (leagues_entering_at_this_round VARCHAR, round VARCHAR)
|
SELECT number FROM table_name_19 WHERE acquisition_via = "import" AND season = "2002"
|
What is the number of the acquisition of import in the 2002 season?
|
CREATE TABLE table_name_19 (number VARCHAR, acquisition_via VARCHAR, season VARCHAR)
|
SELECT country FROM table_name_18 WHERE player = "retief goosen"
|
What country is Retief Goosen from?
|
CREATE TABLE table_name_18 (country VARCHAR, player VARCHAR)
|
SELECT SUM(overall) FROM table_name_25 WHERE college = "notre dame"
|
What is the overall total for players drafted from notre dame?
|
CREATE TABLE table_name_25 (overall INTEGER, college VARCHAR)
|
SELECT track FROM table_name_44 WHERE date = "june 9"
|
Tell me the track for june 9
|
CREATE TABLE table_name_44 (track VARCHAR, date VARCHAR)
|
SELECT AVG(against) FROM table_name_73 WHERE venue = "twickenham , london" AND date = "25 november 1978"
|
Name the average Against that has a Venue of twickenham , london on 25 november 1978?
|
CREATE TABLE table_name_73 (against INTEGER, venue VARCHAR, date VARCHAR)
|
SELECT country FROM addresses GROUP BY country HAVING COUNT(address_id) > 4
|
List the countries having more than 4 addresses listed.
|
CREATE TABLE addresses (country VARCHAR, address_id VARCHAR)
|
SELECT MAX(points) FROM table_name_84 WHERE place = "3rd" AND draw > 5
|
What is the highest point total that placed 3rd and has a draw larger than 5?
|
CREATE TABLE table_name_84 (points INTEGER, place VARCHAR, draw VARCHAR)
|
SELECT population FROM table_name_93 WHERE area_km_2 = 173.4
|
What is the population when the area km2 is 173.4?
|
CREATE TABLE table_name_93 (population VARCHAR, area_km_2 VARCHAR)
|
SELECT episode_number FROM table_25391981_20 WHERE episode = "Week 4, Part 1"
|
What number episode was Week 4, Part 1?
|
CREATE TABLE table_25391981_20 (episode_number VARCHAR, episode VARCHAR)
|
SELECT AVG(game) FROM table_name_58 WHERE record = "4-4-0"
|
What was the average game with a record of 4-4-0?
|
CREATE TABLE table_name_58 (game INTEGER, record VARCHAR)
|
SELECT SUM(2003) FROM table_name_97 WHERE 2001 = 0 AND 2009 > 0 AND 1999 < 0
|
How many are there in 2003 that have 0 in 2001, more than 0 in 2009 and fewer than 0 in 1999?
|
CREATE TABLE table_name_97 (Id VARCHAR)
|
SELECT player FROM table_name_4 WHERE score = 74 - 68 - 71 = 213
|
Name the player with score of 74-68-71=213
|
CREATE TABLE table_name_4 (player VARCHAR, score VARCHAR)
|
SELECT COUNT(dominant_religion__2002_) FROM table_2562572_52 WHERE cyrillic_name = "Сибач"
|
how many times is the cyrillic name сибач?
|
CREATE TABLE table_2562572_52 (dominant_religion__2002_ VARCHAR, cyrillic_name VARCHAR)
|
SELECT winning_driver FROM table_name_98 WHERE winning_team = "mobilecast impul" AND circuit = "twin ring motegi"
|
Name the winning driver for mobilecast impul and twin ring motegi
|
CREATE TABLE table_name_98 (winning_driver VARCHAR, winning_team VARCHAR, circuit VARCHAR)
|
SELECT MIN(bronze) FROM table_name_75 WHERE silver < 1 AND rank < 5
|
What is the fewest bronze medals for a team with fewer than 1 silver and rank lower than 5?
|
CREATE TABLE table_name_75 (bronze INTEGER, silver VARCHAR, rank VARCHAR)
|
SELECT ch_1 FROM table_name_73 WHERE region_served = "central tablelands"
|
What is the Ch1 in the region served by Central Tablelands?
|
CREATE TABLE table_name_73 (ch_1 VARCHAR, region_served VARCHAR)
|
SELECT MAX(november) FROM table_name_80 WHERE record = "11-7-3" AND game > 21
|
When in November were they 11-7-3 with over 21 games?
|
CREATE TABLE table_name_80 (november INTEGER, record VARCHAR, game VARCHAR)
|
SELECT SUM(total) FROM table_name_29 WHERE gold < 0
|
Which Total has a Gold smaller than 0?
|
CREATE TABLE table_name_29 (total INTEGER, gold INTEGER)
|
SELECT AVG(total) FROM table_name_23 WHERE rank > 4 AND silver > 0 AND bronze < 1
|
With a greater than 4 rank, and the silver medal greater than 0, and the bronze medal less than 1, what is the average total?
|
CREATE TABLE table_name_23 (total INTEGER, bronze VARCHAR, rank VARCHAR, silver VARCHAR)
|
SELECT COUNT(sets) FROM table_name_21 WHERE player = "gary muller"
|
How many Sets did Gary Muller have?
|
CREATE TABLE table_name_21 (sets VARCHAR, player VARCHAR)
|
SELECT part_2 FROM table_name_92 WHERE part_4 = "gebonden"
|
what is part 2 when part 4 is gebonden?
|
CREATE TABLE table_name_92 (part_2 VARCHAR, part_4 VARCHAR)
|
SELECT MIN(series__number) FROM table_28019988_5 WHERE production_code = "BDF409"
|
What episode number of the series had a production code of bdf409?
|
CREATE TABLE table_28019988_5 (series__number INTEGER, production_code VARCHAR)
|
SELECT super_b_capacity_reached_[_citation_needed_] FROM table_12791809_1 WHERE freight_carried_s_tonne = 198818
|
When was the super b capacity reached when the freight carried s tonne was 198818?
|
CREATE TABLE table_12791809_1 (super_b_capacity_reached_ VARCHAR, _citation_needed_ VARCHAR, freight_carried_s_tonne VARCHAR)
|
SELECT episode_number FROM table_name_1 WHERE name = "vibhav gautam"
|
Which episode number was associated with Vibhav Gautam?
|
CREATE TABLE table_name_1 (episode_number VARCHAR, name VARCHAR)
|
SELECT format FROM table_name_78 WHERE catalog = "vcrd 103"
|
What is the Format with a Catalog that is vcrd 103?
|
CREATE TABLE table_name_78 (format VARCHAR, catalog VARCHAR)
|
SELECT college FROM table_name_93 WHERE name = "hardy brown"
|
Which College has a Name of hardy brown?
|
CREATE TABLE table_name_93 (college VARCHAR, name VARCHAR)
|
SELECT DISTINCT date_moved_in FROM residents
|
What are the distinct move in dates of the residents?
|
CREATE TABLE residents (date_moved_in VARCHAR)
|
SELECT directed_by FROM table_14562722_1 WHERE written_by = "Aaron Ehasz & John O'Bryan"
|
Who directed all the episodes that were written by aaron ehasz & john o'bryan?
|
CREATE TABLE table_14562722_1 (directed_by VARCHAR, written_by VARCHAR)
|
SELECT opponents FROM table_name_23 WHERE year = "1998–99" AND team = "aston villa"
|
Which Opponents have a Year of 1998–99, and a Team of aston villa?
|
CREATE TABLE table_name_23 (opponents VARCHAR, year VARCHAR, team VARCHAR)
|
SELECT rider FROM table_name_88 WHERE constructor = "honda" AND team = "scot racing team" AND rounds = "6-17"
|
Who is the rider of Scot Racing team with a Honda constructor and rounds 6-17?
|
CREATE TABLE table_name_88 (rider VARCHAR, rounds VARCHAR, constructor VARCHAR, team VARCHAR)
|
SELECT league FROM table_1214035_1 WHERE division = "3"
|
What leagues includes division 3
|
CREATE TABLE table_1214035_1 (league VARCHAR, division VARCHAR)
|
SELECT surface FROM table_23235767_1 WHERE score_in_the_final = "6–4, 6–7 (1–7) , 6–7 (4–7) , 4–6"
|
What is every surface with a score in the final of 6–4, 6–7 (1–7) , 6–7 (4–7) , 4–6?
|
CREATE TABLE table_23235767_1 (surface VARCHAR, score_in_the_final VARCHAR)
|
SELECT years FROM table_name_36 WHERE decile < 4 AND name = "tkkm o te ara rima"
|
Tkkm o te ara rima has a decile less than 4 in what years?
|
CREATE TABLE table_name_36 (years VARCHAR, decile VARCHAR, name VARCHAR)
|
SELECT manufacturer FROM table_name_89 WHERE laps = 21 AND grid > 16 AND rider = "akira ryō"
|
Which Manufacturer has a Laps of 21, a Grid larger than 16, and a Rider of akira ryō?
|
CREATE TABLE table_name_89 (manufacturer VARCHAR, rider VARCHAR, laps VARCHAR, grid VARCHAR)
|
SELECT COUNT(position) FROM table_18597302_1 WHERE points = 9
|
What was the position where the team scored 9 points?
|
CREATE TABLE table_18597302_1 (position VARCHAR, points VARCHAR)
|
SELECT high_rebounds FROM table_22871316_6 WHERE high_assists = "Brandon Jennings (8)"
|
Who did the high rebounds in the game in which Brandon Jennings (8) did the high assists?
|
CREATE TABLE table_22871316_6 (high_rebounds VARCHAR, high_assists VARCHAR)
|
SELECT position FROM table_name_62 WHERE competition = "world athletics final" AND year > 2008
|
What position was played at the World Athletics Final Competition in a year more recent than 2008?
|
CREATE TABLE table_name_62 (position VARCHAR, competition VARCHAR, year VARCHAR)
|
SELECT district FROM table_1342218_11 WHERE incumbent = "James C. Davis"
|
What district does incumbent james c. davis represent?
|
CREATE TABLE table_1342218_11 (district VARCHAR, incumbent VARCHAR)
|
SELECT constellation FROM table_name_27 WHERE message = "cosmic call 1" AND arrival_date = "october 2067"
|
Which constellation has cosmic call 1 as the message, and an arrival date of october 2067?
|
CREATE TABLE table_name_27 (constellation VARCHAR, message VARCHAR, arrival_date VARCHAR)
|
SELECT total_assets___percentage_change_ FROM table_name_86 WHERE performance_return_on_capital___percentage_ > 25.63 AND performance_return_on_capital__score_ > 7
|
What Total Assets (% Change) that has Performance/Return on Capital (%) greater than 25.63, and a Performance/Return on Capital (Score) greater than 7?
|
CREATE TABLE table_name_86 (total_assets___percentage_change_ VARCHAR, performance_return_on_capital___percentage_ VARCHAR, performance_return_on_capital__score_ VARCHAR)
|
SELECT percentage_of_votes FROM table_26267849_11 WHERE finished = "3rd"
|
Name the percentage of votes for 3rd finished
|
CREATE TABLE table_26267849_11 (percentage_of_votes VARCHAR, finished VARCHAR)
|
SELECT total_number FROM table_14330096_4 WHERE director = "Roger Goldby"
|
How many of the episodes have Roger Goldby as the director?
|
CREATE TABLE table_14330096_4 (total_number VARCHAR, director VARCHAR)
|
SELECT SUM(laps) FROM table_name_15 WHERE grid < 14 AND driver = "ricardo zonta"
|
How many laps did Ricardo Zonta drive with a grid less than 14?
|
CREATE TABLE table_name_15 (laps INTEGER, grid VARCHAR, driver VARCHAR)
|
SELECT artist FROM table_name_79 WHERE percentage = "11.32%"
|
Which Artist has a Percentage of 11.32%?
|
CREATE TABLE table_name_79 (artist VARCHAR, percentage VARCHAR)
|
SELECT date FROM table_name_67 WHERE winner = "new york jets" AND result = "30–28"
|
What date was the winner the new york jets and a Result of 30–28?
|
CREATE TABLE table_name_67 (date VARCHAR, winner VARCHAR, result VARCHAR)
|
SELECT result FROM table_name_94 WHERE date = "11 august 2010"
|
what is the result for 11 august 2010?
|
CREATE TABLE table_name_94 (result VARCHAR, date VARCHAR)
|
SELECT ntfs FROM table_name_20 WHERE fat32 = "yes" AND refs = "no"
|
Which NTFS has a yes for FAT32 and a no for ReFS?
|
CREATE TABLE table_name_20 (ntfs VARCHAR, fat32 VARCHAR, refs VARCHAR)
|
SELECT title FROM table_26565917_2 WHERE no_in_season = 5
|
what was the name of episode 5?
|
CREATE TABLE table_26565917_2 (title VARCHAR, no_in_season VARCHAR)
|
SELECT national_league FROM table_name_7 WHERE season = "1969-70"
|
Which National League is in 1969-70 season?
|
CREATE TABLE table_name_7 (national_league VARCHAR, season VARCHAR)
|
SELECT replaced_by FROM table_28181347_6 WHERE date_of_vacancy = "8 October 2007"
|
In football league one, what coach was hired as a replacement on 8 October 2007
|
CREATE TABLE table_28181347_6 (replaced_by VARCHAR, date_of_vacancy VARCHAR)
|
SELECT episode FROM table_29574579_1 WHERE uk_viewers__million_ = "4.50"
|
How many episodes hve 4.50 million viewers?
|
CREATE TABLE table_29574579_1 (episode VARCHAR, uk_viewers__million_ VARCHAR)
|
SELECT part_3 FROM table_1745843_6 WHERE class = "4"
|
What's the part 3 of the verb whose class is 4?
|
CREATE TABLE table_1745843_6 (part_3 VARCHAR, class VARCHAR)
|
SELECT opponent FROM table_name_8 WHERE city = "belgrade" AND results¹ = "5:2"
|
Who was the opponent in Belgrade and had a result of 5:2?
|
CREATE TABLE table_name_8 (opponent VARCHAR, city VARCHAR, results¹ VARCHAR)
|
SELECT constructor FROM table_name_7 WHERE laps > 9 AND grid < 2
|
Which Constructor has Laps larger than 9, and a Grid smaller than 2?
|
CREATE TABLE table_name_7 (constructor VARCHAR, laps VARCHAR, grid VARCHAR)
|
SELECT grüne FROM table_name_14 WHERE fritz = "1.3%"
|
What percent did GRÜNE get in the state where FRITZ got 1.3%?
|
CREATE TABLE table_name_14 (grüne VARCHAR, fritz VARCHAR)
|
SELECT language FROM table_name_87 WHERE translator = "ritah meltser and amatsyah porat"
|
What is the language for translators ritah meltser and amatsyah porat?
|
CREATE TABLE table_name_87 (language VARCHAR, translator VARCHAR)
|
SELECT bronze FROM table_name_65 WHERE total > 7 AND silver = 3 AND games = "summer" AND gold = 5
|
Which Bronze has a Total larger than 7 and a Silver of 3, and a Games of summer, and a Gold of 5?
|
CREATE TABLE table_name_65 (bronze VARCHAR, gold VARCHAR, games VARCHAR, total VARCHAR, silver VARCHAR)
|
SELECT AVG(points) FROM table_name_55 WHERE place = "8th" AND draw > 8
|
What is the average of points for 8th place with draw more than 8?
|
CREATE TABLE table_name_55 (points INTEGER, place VARCHAR, draw VARCHAR)
|
SELECT venue FROM table_name_19 WHERE opponent = "collingwood"
|
Name the venue with opponent of collingwood
|
CREATE TABLE table_name_19 (venue VARCHAR, opponent VARCHAR)
|
SELECT studio_host FROM table_name_19 WHERE play_by_play = "paul sunderland" AND studio_analysts = "jack haley"
|
Who is the studio host for the game that has Paul Sunderland as play by play commentator and Jack Haley as the Studio Analyst?
|
CREATE TABLE table_name_19 (studio_host VARCHAR, play_by_play VARCHAR, studio_analysts VARCHAR)
|
SELECT exited FROM table_name_53 WHERE finished = "12th"
|
What day did the person who finished in 12th place leave on?
|
CREATE TABLE table_name_53 (exited VARCHAR, finished VARCHAR)
|
SELECT COUNT(high_assists) FROM table_27723526_9 WHERE date = "December 21"
|
Who had highest assists at game on December 21?
|
CREATE TABLE table_27723526_9 (high_assists VARCHAR, date VARCHAR)
|
SELECT COUNT(party) FROM table_1342233_11 WHERE candidates = "Albert Sidney Camp (D) Unopposed"
|
Which party is associated with the candidate Albert Sidney Camp (D) unopposed?
|
CREATE TABLE table_1342233_11 (party VARCHAR, candidates VARCHAR)
|
SELECT chassis FROM table_name_14 WHERE tyre = "b" AND engine_† = "ferrari 050 ferrari 051" AND driver = "rubens barrichello"
|
what is the chassis when the tyre is b, the engine is ferrari 050 ferrari 051 and the driver is rubens barrichello?
|
CREATE TABLE table_name_14 (chassis VARCHAR, driver VARCHAR, tyre VARCHAR, engine_† VARCHAR)
|
SELECT county FROM table_name_4 WHERE latitude < 46.935364 AND geo_id = 3801700500
|
In what county is the latitude less than 46.935364 and GEO ID is 3801700500?
|
CREATE TABLE table_name_4 (county VARCHAR, latitude VARCHAR, geo_id VARCHAR)
|
SELECT sport FROM table_name_27 WHERE date = "november 14, 2009"
|
What sport was played on November 14, 2009?
|
CREATE TABLE table_name_27 (sport VARCHAR, date VARCHAR)
|
SELECT COUNT(building) FROM table_13397394_1 WHERE address = "201 1st Avenue South"
|
what is the total number of building for address on 201 1st avenue south
|
CREATE TABLE table_13397394_1 (building VARCHAR, address VARCHAR)
|
SELECT result FROM table_1341472_15 WHERE first_elected = "1948 , 1964"
|
what's the result for first elected in 1948 , 1964
|
CREATE TABLE table_1341472_15 (result VARCHAR, first_elected VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.