answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT fsb___ht__mhz_ FROM table_name_50 WHERE southbridge = "amd-8131 amd-8132" | What is the FSB / HT (MHz) when the Southbridge is amd-8131 amd-8132? | CREATE TABLE table_name_50 (fsb___ht__mhz_ VARCHAR, southbridge VARCHAR) |
SELECT circuit FROM table_name_79 WHERE date = "10 may" AND name = "targa florio" | Tell me the circuit for 10 may for targa florio | CREATE TABLE table_name_79 (circuit VARCHAR, date VARCHAR, name VARCHAR) |
SELECT date_of_successors_formal_installation FROM table_2417330_3 WHERE successor = "Orville H. Browning (R)" | When did Orville H. Browning (r) succeed? | CREATE TABLE table_2417330_3 (date_of_successors_formal_installation VARCHAR, successor VARCHAR) |
SELECT AVG(attendance) FROM table_name_16 WHERE record = "38–31–8" | What was the average attendance of a team with a 38–31–8 record? | CREATE TABLE table_name_16 (attendance INTEGER, record VARCHAR) |
SELECT 2007 FROM table_name_16 WHERE 2004 = "olympic games" | What is in 2007 has 2004 olympic games? | CREATE TABLE table_name_16 (Id VARCHAR) |
SELECT torque FROM table_21154679_1 WHERE model = "S7 4.0 TFSI quattro" | What is the s7 4.0 tfsi quattro engine torque? | CREATE TABLE table_21154679_1 (torque VARCHAR, model VARCHAR) |
SELECT mountains_classification FROM table_15059783_1 WHERE winner = "Alejandro Valverde" AND points_classification = "Erik Zabel" | If winner is alejandro Valverde and the points Classification is by Erik Zabel, who is the mountain classification? | CREATE TABLE table_15059783_1 (mountains_classification VARCHAR, winner VARCHAR, points_classification VARCHAR) |
SELECT country FROM table_name_81 WHERE place = "t3" AND score = 70 - 68 = 138 | What country was the player from who placed t3 with a score of 70-68=138? | CREATE TABLE table_name_81 (country VARCHAR, place VARCHAR, score VARCHAR) |
SELECT runner_up FROM table_name_53 WHERE year > 2010 AND winner = "ding junhui" | Who came in 2nd place when Ding Junhui won in 2010? | CREATE TABLE table_name_53 (runner_up VARCHAR, year VARCHAR, winner VARCHAR) |
SELECT DISTINCT T4.name FROM PersonFriend AS T1 JOIN Person AS T2 ON T1.name = T2.name JOIN PersonFriend AS T3 ON T1.friend = T3.name JOIN PersonFriend AS T4 ON T3.friend = T4.name WHERE T2.name = 'Alice' AND T4.name <> 'Alice' | Find Alice's friends of friends. | CREATE TABLE PersonFriend (name VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR) |
SELECT SUM(swimsuit) FROM table_name_67 WHERE average < 7.362 AND evening_gown < 6.983 | Name the sum of swimsuit when the evening gown is less than 6.983 and the average is less than 7.362 | CREATE TABLE table_name_67 (swimsuit INTEGER, average VARCHAR, evening_gown VARCHAR) |
SELECT rank FROM table_19210674_1 WHERE hk_viewers = "2.26 million" | How was the episode seen by 2.26 million HK viewers ranked? | CREATE TABLE table_19210674_1 (rank VARCHAR, hk_viewers VARCHAR) |
SELECT role FROM table_name_56 WHERE director = "r.n. bradbury" AND title = "the trail beyond" | What role did John Wayne play in The Trail Beyond, directed by R.N. Bradbury? | CREATE TABLE table_name_56 (role VARCHAR, director VARCHAR, title VARCHAR) |
SELECT team FROM table_name_36 WHERE location = "leicester" | Which team is located in Leicester? | CREATE TABLE table_name_36 (team VARCHAR, location VARCHAR) |
SELECT COUNT(race_name) FROM table_22673872_1 WHERE location = "College Station, Texas" AND winning_driver = "Johnny Rutherford" | How many races are in College Station, Texas and won by Johnny Rutherford? | CREATE TABLE table_22673872_1 (race_name VARCHAR, location VARCHAR, winning_driver VARCHAR) |
SELECT report FROM table_name_21 WHERE winning_driver = "jack brabham" | What report did Jack Brabham win? | CREATE TABLE table_name_21 (report VARCHAR, winning_driver VARCHAR) |
SELECT commissioned FROM table_name_8 WHERE laid_down = "17 dec 1951" | what is the commissioned date with laid down of 17 dec 1951? | CREATE TABLE table_name_8 (commissioned VARCHAR, laid_down VARCHAR) |
SELECT chassis FROM table_name_7 WHERE engine_† = "playlife fb02" AND driver = "alexander wurz" | What's the chassis for alexander wurz's playlife fb02 engine? | CREATE TABLE table_name_7 (chassis VARCHAR, engine_† VARCHAR, driver VARCHAR) |
SELECT T1.Product_Name, COUNT(*) FROM Products AS T1 JOIN Products_in_Events AS T2 ON T1.Product_ID = T2.Product_ID GROUP BY T1.Product_Name ORDER BY COUNT(*) DESC | Show the names of products and the number of events they are in, sorted by the number of events in descending order. | CREATE TABLE Products (Product_Name VARCHAR, Product_ID VARCHAR); CREATE TABLE Products_in_Events (Product_ID VARCHAR) |
SELECT opponents FROM table_24638867_6 WHERE score = "6–2, 3–6, 6–3" | Name the opponents for 6–2, 3–6, 6–3 | CREATE TABLE table_24638867_6 (opponents VARCHAR, score VARCHAR) |
SELECT AVG(pick) FROM table_name_9 WHERE name = "john strohmeyer" AND round < 12 | What was John Strohmeyer's average pick before round 12? | CREATE TABLE table_name_9 (pick INTEGER, name VARCHAR, round VARCHAR) |
SELECT label FROM table_name_98 WHERE catalog = "7243 8 49494 2 6" | Which Label has a Catalog of 7243 8 49494 2 6? | CREATE TABLE table_name_98 (label VARCHAR, catalog VARCHAR) |
SELECT artist FROM table_2161859_1 WHERE strip_numbers = "3932-4031A" | Who is the artist for strip numbers 3932-4031a? | CREATE TABLE table_2161859_1 (artist VARCHAR, strip_numbers VARCHAR) |
SELECT COUNT(spins__since_1998__source) AS :_mediabase FROM table_name_61 WHERE ccm_chart = "chr" AND peak_pos < 1 | How many Spins sources have a CCM Chart of CHR with a peak position less than 1? | CREATE TABLE table_name_61 (spins__since_1998__source VARCHAR, ccm_chart VARCHAR, peak_pos VARCHAR) |
SELECT outcome FROM table_name_79 WHERE partnering = "jordan kerr" AND date = "july 19, 2004" | Name the outcome for jordan kerr july 19, 2004 | CREATE TABLE table_name_79 (outcome VARCHAR, partnering VARCHAR, date VARCHAR) |
SELECT MIN(total) FROM table_name_18 WHERE rank < 3 AND county = "cork" | Which Total has a Rank smaller than 3, and a County of cork? | CREATE TABLE table_name_18 (total INTEGER, rank VARCHAR, county VARCHAR) |
SELECT SUM(attendance) FROM table_name_79 WHERE score = "3:1" | What was the total attendance for the 3:1 game? | CREATE TABLE table_name_79 (attendance INTEGER, score VARCHAR) |
SELECT COUNT(position) FROM table_name_61 WHERE goals_against > 48 AND points_1 = "29" AND played < 34 | What is the total number of positions when there are more than 48 goals against, 1 of 29 points are played, and less than 34 games have been played? | CREATE TABLE table_name_61 (position VARCHAR, played VARCHAR, goals_against VARCHAR, points_1 VARCHAR) |
SELECT drawn FROM table_name_39 WHERE played = "22" AND club = "ystrad rhondda rfc" | Name the Drawn for Ystrad Rhondda RFC and has Played of 22. | CREATE TABLE table_name_39 (drawn VARCHAR, played VARCHAR, club VARCHAR) |
SELECT province, _community FROM table_name_13 WHERE hometown = "jamao afuera" | What is the province for Jamao Afuera? | CREATE TABLE table_name_13 (province VARCHAR, _community VARCHAR, hometown VARCHAR) |
SELECT MIN(no_in_series) FROM table_22347090_4 WHERE us_viewers__million_ = "1.98" | Which series number had 1.98 million viewers? | CREATE TABLE table_22347090_4 (no_in_series INTEGER, us_viewers__million_ VARCHAR) |
SELECT date FROM table_20466963_4 WHERE presenter = "Johnny Vaughan" | What is the date of the episode in which the presenter is Johnny Vaughan? | CREATE TABLE table_20466963_4 (date VARCHAR, presenter VARCHAR) |
SELECT green_rating FROM table_name_68 WHERE l_100km_urban__cold_ > 10.9 AND mpg_us_urban > 14.1 AND manufacturer = "volkswagen" AND engine_capacity < 3189 | What is the green rating for the vehicle with L/100km urban (cold) over 10.9, mpg in the US (urban) over 14.1, manufacturer of Volkswagen, and engine capacity under 3189? | CREATE TABLE table_name_68 (green_rating VARCHAR, engine_capacity VARCHAR, manufacturer VARCHAR, l_100km_urban__cold_ VARCHAR, mpg_us_urban VARCHAR) |
SELECT date FROM table_name_81 WHERE fastest_lap = "james winslow" AND race = 1 AND winning_driver = "leanne tander" | What is Date, when Fastest Lap is James Winslow, when Race is 1, and when Winning Driver is Leanne Tander? | CREATE TABLE table_name_81 (date VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR, race VARCHAR) |
SELECT venue FROM table_name_82 WHERE home_team = "fitzroy" | What is Fitzroy's home field? | CREATE TABLE table_name_82 (venue VARCHAR, home_team VARCHAR) |
SELECT home FROM table_name_5 WHERE date = "26 february 2008" | Who was the home team of the game on 26 February 2008? | CREATE TABLE table_name_5 (home VARCHAR, date VARCHAR) |
SELECT members FROM table_19439814_1 WHERE sold__albums_and_singles_ = "65 million" | How many members were in the group that sold 65 million albums and singles? | CREATE TABLE table_19439814_1 (members VARCHAR, sold__albums_and_singles_ VARCHAR) |
SELECT COUNT(round) FROM table_name_23 WHERE player = "jamie arniel" | WHAT IS THE ROUND FOR JAMIE ARNIEL? | CREATE TABLE table_name_23 (round VARCHAR, player VARCHAR) |
SELECT version_number, template_type_code FROM Templates WHERE version_number > 5 | What is the version number and template type code for the template with version number later than 5? | CREATE TABLE Templates (version_number INTEGER, template_type_code VARCHAR) |
SELECT position FROM table_14342210_2 WHERE player = "Shorts" | Name the position for shorts | CREATE TABLE table_14342210_2 (position VARCHAR, player VARCHAR) |
SELECT visitor FROM table_name_33 WHERE series = "series tied 2–2" | who is the Visitor that has a Series of series tied 2–2? | CREATE TABLE table_name_33 (visitor VARCHAR, series VARCHAR) |
SELECT COUNT(events) FROM table_name_58 WHERE top_5 = 2 AND cuts_made = 4 AND wins < 0 | How many events total is the Top-5 2, and 4 is the cuts made, and less than 0 wins? | CREATE TABLE table_name_58 (events VARCHAR, wins VARCHAR, top_5 VARCHAR, cuts_made VARCHAR) |
SELECT record FROM table_name_64 WHERE date = "february 26" | What is the Record of the February 26 date? | CREATE TABLE table_name_64 (record VARCHAR, date VARCHAR) |
SELECT host_country FROM table_26669939_1 WHERE host_city = "Bar" | Who was the host country when Bar was the host city? | CREATE TABLE table_26669939_1 (host_country VARCHAR, host_city VARCHAR) |
SELECT COUNT(population__2000_) FROM table_2004733_2 WHERE barangay = "San Gabriel" | How many people lived in san gabriel in the year 2000? | CREATE TABLE table_2004733_2 (population__2000_ VARCHAR, barangay VARCHAR) |
SELECT away_team AS score FROM table_name_55 WHERE crowd > 6 OFFSET 872 | What did the away team score when the crowd was larger than 6,872? | CREATE TABLE table_name_55 (away_team VARCHAR, crowd INTEGER) |
SELECT score FROM table_name_35 WHERE date = "21 may 2011" | Name the score for 21 may 2011 | CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR) |
SELECT COUNT(*) FROM Country AS T1 JOIN League AS T2 ON T1.id = T2.country_id WHERE T1.name = "England" | How many leagues are there in England? | CREATE TABLE League (country_id VARCHAR); CREATE TABLE Country (id VARCHAR, name VARCHAR) |
SELECT womens_singles FROM table_12163387_1 WHERE mens_singles = "Jonas Lyduch" | Who won the womens singles event the year that Jonas Lyduch won? | CREATE TABLE table_12163387_1 (womens_singles VARCHAR, mens_singles VARCHAR) |
SELECT tries_against FROM table_name_48 WHERE losing_bonus = "losing bonus" | What is the tries against for the team that has a losing bonus? | CREATE TABLE table_name_48 (tries_against VARCHAR, losing_bonus VARCHAR) |
SELECT score FROM table_name_17 WHERE round = "1st round" AND club = "union luxembourg" | What is the final score of the 1st round game of club Union Luxembourg? | CREATE TABLE table_name_17 (score VARCHAR, round VARCHAR, club VARCHAR) |
SELECT Winery FROM WINE ORDER BY SCORE LIMIT 1 | Which winery is the wine that has the highest score from? | CREATE TABLE WINE (Winery VARCHAR, SCORE VARCHAR) |
SELECT density FROM table_2013618_1 WHERE traditional = "古田縣" | Name the density for 古田縣 | CREATE TABLE table_2013618_1 (density VARCHAR, traditional VARCHAR) |
SELECT title FROM table_name_78 WHERE name = "amenemhat ii" | What is the title of Amenemhat II? | CREATE TABLE table_name_78 (title VARCHAR, name VARCHAR) |
SELECT team_1 FROM table_name_11 WHERE season > 2005 AND score = "4-2" | What is the name of team 1 that was after the 2005 season and with a 4-2 score? | CREATE TABLE table_name_11 (team_1 VARCHAR, season VARCHAR, score VARCHAR) |
SELECT high_points FROM table_name_66 WHERE record = "31–48" | What is the name of the player with the High points when there was a Record of 31–48? | CREATE TABLE table_name_66 (high_points VARCHAR, record VARCHAR) |
SELECT rounds FROM table_name_59 WHERE tyre = "y" AND drivers = "tomonobu fujii" | In what rounds was the featured driver Tomonobu Fujii with a Tyre of Y? | CREATE TABLE table_name_59 (rounds VARCHAR, tyre VARCHAR, drivers VARCHAR) |
SELECT score FROM table_name_89 WHERE home = "toronto" | What was the score when the home team was Toronto? | CREATE TABLE table_name_89 (score VARCHAR, home VARCHAR) |
SELECT roll FROM table_name_2 WHERE area = "mahia" | Which roll has an Area of mahia? | CREATE TABLE table_name_2 (roll VARCHAR, area VARCHAR) |
SELECT MIN(year) FROM table_name_17 WHERE notes = "dnf" | Which Year that has Notes of dnf? | CREATE TABLE table_name_17 (year INTEGER, notes VARCHAR) |
SELECT COUNT(first_elected) FROM table_2668243_17 WHERE candidates = "Thomas Maxwell (J) 60.1% David Woodcock (AJ) 39.9%" | Name the number of first elected for thomas maxwell (j) 60.1% david woodcock (aj) 39.9% | CREATE TABLE table_2668243_17 (first_elected VARCHAR, candidates VARCHAR) |
SELECT AVG(fuml) FROM table_name_13 WHERE att = 5 AND long > 7 | I want to know the average Fuml for Att of 5 and long more than 7 | CREATE TABLE table_name_13 (fuml INTEGER, att VARCHAR, long VARCHAR) |
SELECT MIN(played) FROM table_name_97 WHERE pd_per_game > 6.28 AND loss < 4 | Which Played has a PD per game larger than 6.28, and a Loss smaller than 4? | CREATE TABLE table_name_97 (played INTEGER, pd_per_game VARCHAR, loss VARCHAR) |
SELECT COUNT(*) FROM area_code_state | How many states are there? | CREATE TABLE area_code_state (Id VARCHAR) |
SELECT poles FROM table_name_51 WHERE points = "104" | What is the number of poles with 104 points? | CREATE TABLE table_name_51 (poles VARCHAR, points VARCHAR) |
SELECT opposing_teams FROM table_name_18 WHERE date = "06/02/1988" | Which Opposing Teams is on 06/02/1988? | CREATE TABLE table_name_18 (opposing_teams VARCHAR, date VARCHAR) |
SELECT record FROM table_name_34 WHERE date = "october 11" | Name the record for october 11 | CREATE TABLE table_name_34 (record VARCHAR, date VARCHAR) |
SELECT MIN(pick) FROM table_name_73 WHERE overall = 38 | What is the lowest pick number where the overall pick number was 38? | CREATE TABLE table_name_73 (pick INTEGER, overall VARCHAR) |
SELECT name FROM table_name_31 WHERE terminated = "march 1993" | What is the Name of the Space Telescope Terminated on March 1993? | CREATE TABLE table_name_31 (name VARCHAR, terminated VARCHAR) |
SELECT T1.student_id, COUNT(*) FROM students AS T1 JOIN student_course_registrations AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id | List the id of students who registered some courses and the number of their registered courses? | CREATE TABLE students (student_id VARCHAR); CREATE TABLE student_course_registrations (student_id VARCHAR) |
SELECT COUNT(directed_by) FROM table_20942925_1 WHERE _number = 15 | How many directors for #15? | CREATE TABLE table_20942925_1 (directed_by VARCHAR, _number VARCHAR) |
SELECT performance FROM table_name_11 WHERE season = 1999 AND place = "bydgoszcz, poland" | What was the performance length of the 1999 season in bydgoszcz, poland? | CREATE TABLE table_name_11 (performance VARCHAR, season VARCHAR, place VARCHAR) |
SELECT transmitter_location FROM table_name_95 WHERE city = "maryborough" | What is the transmitter location for city of Maryborough? | CREATE TABLE table_name_95 (transmitter_location VARCHAR, city VARCHAR) |
SELECT Party FROM representative WHERE State = "New York" INTERSECT SELECT Party FROM representative WHERE State = "Pennsylvania" | Show the parties that have both representatives in New York state and representatives in Pennsylvania state. | CREATE TABLE representative (Party VARCHAR, State VARCHAR) |
SELECT party FROM table_name_69 WHERE ipsos_6_3_09 = "27%" | Who had an Ipsos of 27%? | CREATE TABLE table_name_69 (party VARCHAR, ipsos_6_3_09 VARCHAR) |
SELECT opponent_in_the_final FROM table_name_23 WHERE date = "january 10, 2004" | Final that has a Date of january 10, 2004 had what opponent? | CREATE TABLE table_name_23 (opponent_in_the_final VARCHAR, date VARCHAR) |
SELECT won FROM table_13399573_4 WHERE tries_against = "47" | In the 2008/2009 season one team had 47 tries against, how many games did they win that year? | CREATE TABLE table_13399573_4 (won VARCHAR, tries_against VARCHAR) |
SELECT venue FROM table_17120964_6 WHERE man_of_the_match = "Alex Mettam/Mark Williams" | At what venue did Alex Mettam/Mark Williams be named Man of the Match? | CREATE TABLE table_17120964_6 (venue VARCHAR, man_of_the_match VARCHAR) |
SELECT team FROM table_name_69 WHERE location_attendance = "madison square garden unknown" AND high_points = "alonzo mourning (24)" | What is Team, when Location Attendance is "Madison Square Garden Unknown", and when High Points is "Alonzo Mourning (24)"? | CREATE TABLE table_name_69 (team VARCHAR, location_attendance VARCHAR, high_points VARCHAR) |
SELECT COUNT(latitude) FROM table_24192190_1 WHERE time__utc_ = "9:47:38" | When 9:47:38 is the time (utc) how many measurements of latitude are there? | CREATE TABLE table_24192190_1 (latitude VARCHAR, time__utc_ VARCHAR) |
SELECT COUNT(game) FROM table_17323042_9 WHERE date = "March 15" | How many games were played on March 15? | CREATE TABLE table_17323042_9 (game VARCHAR, date VARCHAR) |
SELECT MAX(lost) FROM table_26677836_1 | What is the highest lost? | CREATE TABLE table_26677836_1 (lost INTEGER) |
SELECT COUNT(june_10_11) FROM table_25235489_2 WHERE november_3 = "november_3, 1975" | How many times does an occurance happen in June when it happens on NOvember 3, 1975? | CREATE TABLE table_25235489_2 (june_10_11 VARCHAR, november_3 VARCHAR) |
SELECT judge FROM table_name_42 WHERE state = "sd" | Who was the judge for the state SD? | CREATE TABLE table_name_42 (judge VARCHAR, state VARCHAR) |
SELECT COUNT(games) FROM table_name_21 WHERE rushes = 41 AND yards < 197 | How many games had 41 rushes and were than 197 yards? | CREATE TABLE table_name_21 (games VARCHAR, rushes VARCHAR, yards VARCHAR) |
SELECT population_density__per_km²_ FROM table_name_31 WHERE gdp__ppp__$m_usd = "$188,112" | How much is the population density with a GDP at $188,112? | CREATE TABLE table_name_31 (population_density__per_km²_ VARCHAR, gdp__ppp__$m_usd VARCHAR) |
SELECT location FROM table_name_65 WHERE authors = "molnar" | What is the location of the authors of Molnar? | CREATE TABLE table_name_65 (location VARCHAR, authors VARCHAR) |
SELECT first_broadcast FROM table_29141354_4 WHERE jamie_and_johns_guest = "Andy Murray" | What date did the episode with Andy Murray as Jamie and John's guest first broadcast? | CREATE TABLE table_29141354_4 (first_broadcast VARCHAR, jamie_and_johns_guest VARCHAR) |
SELECT player FROM table_name_59 WHERE original_season = "fresh meat" AND eliminated = "episode 8" | Who's the player eliminated on episode 8 of Fresh Meat? | CREATE TABLE table_name_59 (player VARCHAR, original_season VARCHAR, eliminated VARCHAR) |
SELECT player FROM table_name_2 WHERE pick > 24 AND nba_years_[a_] = "9" | What is Player, when Pick is greater than 24, and when NBA years [a ] is "9"? | CREATE TABLE table_name_2 (player VARCHAR, pick VARCHAR, nba_years_ VARCHAR, a_ VARCHAR) |
SELECT venue FROM table_name_52 WHERE away_team = "melbourne" | What venue did melbourne play at as the away team? | CREATE TABLE table_name_52 (venue VARCHAR, away_team VARCHAR) |
SELECT november FROM table_name_66 WHERE july = "hope marie carlton" | Who is the November playmate with the July playmate Hope Marie Carlton? | CREATE TABLE table_name_66 (november VARCHAR, july VARCHAR) |
SELECT mixed_doubles FROM table_15001572_1 WHERE year = 1998 | Who won the mixed doubles in 1998? | CREATE TABLE table_15001572_1 (mixed_doubles VARCHAR, year VARCHAR) |
SELECT score FROM table_name_38 WHERE outcome = "runner-up" | What was the score when she was a runner-up? | CREATE TABLE table_name_38 (score VARCHAR, outcome VARCHAR) |
SELECT original_air_date FROM table_11630008_6 WHERE production_code = 410 | When did the episode with production code 410 air? | CREATE TABLE table_11630008_6 (original_air_date VARCHAR, production_code VARCHAR) |
SELECT MIN(wickets) FROM table_27268238_5 | What is the lowest wickets? | CREATE TABLE table_27268238_5 (wickets INTEGER) |
SELECT 2012 FROM table_name_22 WHERE 2009 = "205" | What's the 2012 when 2009 was 205? | CREATE TABLE table_name_22 (Id VARCHAR) |
SELECT silver FROM table_name_77 WHERE gold = 1 AND rank < 3 AND nation = "japan" | What is silver when gold is 1 and the rank is less than 3 for japan? | CREATE TABLE table_name_77 (silver VARCHAR, nation VARCHAR, gold VARCHAR, rank VARCHAR) |
SELECT loss FROM table_name_91 WHERE date = "august 19" | What was the loss for August 19? | CREATE TABLE table_name_91 (loss VARCHAR, date VARCHAR) |
SELECT 2010 FROM table_name_9 WHERE 2011 = "qf" | What is the 2010 with a qf in 2011? | CREATE TABLE table_name_9 (Id VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.