answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 484 |
|---|---|---|
SELECT constructor FROM table_name_96 WHERE driver = "giancarlo fisichella" | Who built giancarlo fisichella's car? | CREATE TABLE table_name_96 (constructor VARCHAR, driver VARCHAR) |
SELECT COUNT(location_s_) FROM table_19897294_11 WHERE family_families = "The Webb Family" | How many locations featured the Webb Family? | CREATE TABLE table_19897294_11 (location_s_ VARCHAR, family_families VARCHAR) |
SELECT team FROM table_name_85 WHERE points = "71" AND f_laps = "4" | Which team has 71 Points and F/Laps of 4? | CREATE TABLE table_name_85 (team VARCHAR, points VARCHAR, f_laps VARCHAR) |
SELECT leading_scorer FROM table_name_43 WHERE visitor = "golden state warriors" AND home = "dallas mavericks" | Who was the leading scorer in the match when the Golden State Warriors were visiting the Dallas Mavericks? | CREATE TABLE table_name_43 (leading_scorer VARCHAR, visitor VARCHAR, home VARCHAR) |
SELECT hangul FROM table_name_96 WHERE greek = "ϝ, υ" | What is the Hangul equivalent of the Greek ϝ, υ? | CREATE TABLE table_name_96 (hangul VARCHAR, greek VARCHAR) |
SELECT area FROM table_name_44 WHERE decile = 10 | In what area is the decile value 10? | CREATE TABLE table_name_44 (area VARCHAR, decile VARCHAR) |
SELECT year_s__won FROM table_name_30 WHERE country = "new zealand" | What years did New Zealand win? | CREATE TABLE table_name_30 (year_s__won VARCHAR, country VARCHAR) |
SELECT T2.Name, T2.age, T3.Theme FROM journal_committee AS T1 JOIN editor AS T2 ON T1.Editor_ID = T2.Editor_ID JOIN journal AS T3 ON T1.Journal_ID = T3.Journal_ID ORDER BY T3.Theme | Show the names and ages of editors and the theme of journals for which they serve on committees, in ascending alphabetical order of theme. | CREATE TABLE journal_committee (Editor_ID VARCHAR, Journal_ID VARCHAR); CREATE TABLE editor (Name VARCHAR, age VARCHAR, Editor_ID VARCHAR); CREATE TABLE journal (Theme VARCHAR, Journal_ID VARCHAR) |
SELECT opponent FROM table_name_10 WHERE record = "5-0-1" | Which opponent has a record of 5-0-1? | CREATE TABLE table_name_10 (opponent VARCHAR, record VARCHAR) |
SELECT player FROM table_name_41 WHERE total < 151 AND to_par = 8 | WHAT IS THE PLAYER WITH TOTAL LESS THAN 151, TO PAR OF 8? | CREATE TABLE table_name_41 (player VARCHAR, total VARCHAR, to_par VARCHAR) |
SELECT _percentage_wt_2nd FROM table_name_77 WHERE bp_3rd_comp__˚c_ = "98.4" | Tell me the % of wt 2nd for bp 3rd comp of 98.4 | CREATE TABLE table_name_77 (_percentage_wt_2nd VARCHAR, bp_3rd_comp__˚c_ VARCHAR) |
SELECT DISTINCT Destroyed_by_Employee_ID FROM Documents_to_be_destroyed | Show the ids of all employees who have destroyed a document. | CREATE TABLE Documents_to_be_destroyed (Destroyed_by_Employee_ID VARCHAR) |
SELECT home FROM table_name_56 WHERE record = "21–45–8–5" | Who was the home team when the record was 21–45–8–5? | CREATE TABLE table_name_56 (home VARCHAR, record VARCHAR) |
SELECT result FROM table_name_38 WHERE date = "26 jan 2005" | What is the Result on 26 jan 2005? | CREATE TABLE table_name_38 (result VARCHAR, date VARCHAR) |
SELECT platform_s_ FROM table_name_53 WHERE year = "2006" | What is the platform of the game built in 2006? | CREATE TABLE table_name_53 (platform_s_ VARCHAR, year VARCHAR) |
SELECT COUNT(helen_sildna) FROM table_29261215_4 WHERE iiris_vesik = 3 | How many scores did Helen Sildna give when Iiris Vesik gave a 3? | CREATE TABLE table_29261215_4 (helen_sildna VARCHAR, iiris_vesik VARCHAR) |
SELECT COUNT(highest) FROM table_11206916_1 WHERE team = "Elgin City" | What was the highest amount of people that attended the elgin city team? | CREATE TABLE table_11206916_1 (highest VARCHAR, team VARCHAR) |
SELECT name, country, age FROM singer ORDER BY age DESC | Show name, country, age for all singers ordered by age from the oldest to the youngest. | CREATE TABLE singer (name VARCHAR, country VARCHAR, age VARCHAR) |
SELECT zone FROM table_name_41 WHERE camp_type = "d/s" AND area = "bl9" | What zone has camp type D/S in area Bl9? | CREATE TABLE table_name_41 (zone VARCHAR, camp_type VARCHAR, area VARCHAR) |
SELECT state FROM table_name_39 WHERE electorate = "petrie" | In which state is the Petrie electorate? | CREATE TABLE table_name_39 (state VARCHAR, electorate VARCHAR) |
SELECT high_assists FROM table_17325937_8 WHERE team = "Miami" | Who had the most assists in the game against Miami? | CREATE TABLE table_17325937_8 (high_assists VARCHAR, team VARCHAR) |
SELECT date FROM table_25380472_2 WHERE final_score = "L 14–24" | On what dates was the final score of the game L 14–24? | CREATE TABLE table_25380472_2 (date VARCHAR, final_score VARCHAR) |
SELECT AVG(finish) FROM table_name_39 WHERE team = "buck baker" AND start < 13 | What is the average Finish, when Team is "Buck Baker", and when Start is less than 13? | CREATE TABLE table_name_39 (finish INTEGER, team VARCHAR, start VARCHAR) |
SELECT hometown FROM table_11677691_9 WHERE college = "Louisiana State" | Which hometown has the college Louisiana State? | CREATE TABLE table_11677691_9 (hometown VARCHAR, college VARCHAR) |
SELECT score FROM table_name_6 WHERE home = "detroit" AND date = "february 17" | What score has detroit as the home and february 17 as the date? | CREATE TABLE table_name_6 (score VARCHAR, home VARCHAR, date VARCHAR) |
SELECT bats FROM table_name_23 WHERE first = "mitchell" | Which bats did mitchell play first? | CREATE TABLE table_name_23 (bats VARCHAR, first VARCHAR) |
SELECT division FROM table_name_66 WHERE country = "ukraine" AND season = "2006/07" | What division was Ukraine in 2006/07? | CREATE TABLE table_name_66 (division VARCHAR, country VARCHAR, season VARCHAR) |
SELECT away_captain FROM table_name_69 WHERE date = "2,3,4,5 january 1999" | Which Away captain has a Date of 2,3,4,5 january 1999? | CREATE TABLE table_name_69 (away_captain VARCHAR, date VARCHAR) |
SELECT author FROM table_name_42 WHERE language = "english" AND book_title = "sironia, texas" | Which author wrote Sironia, Texas in English? | CREATE TABLE table_name_42 (author VARCHAR, language VARCHAR, book_title VARCHAR) |
SELECT MIN(area_2006_km²) FROM table_name_94 WHERE area_1996_km² = 26.39 AND pop_2006 < 18 OFFSET 610 | Which area 2006 km² has an area 1996 km² of 26.39, and a pop 2006 smaller than 18,610? | CREATE TABLE table_name_94 (area_2006_km² INTEGER, area_1996_km² VARCHAR, pop_2006 VARCHAR) |
SELECT zone FROM table_name_80 WHERE max_people > 23 AND group_s_ < 2 AND name = "robbers roost" | Which zone has max capacity of 23 in a group under 2 at Robbers Roost? | CREATE TABLE table_name_80 (zone VARCHAR, name VARCHAR, max_people VARCHAR, group_s_ VARCHAR) |
SELECT location_attendance FROM table_23211041_10 WHERE team = "Utah" | Name the location attendance for utah | CREATE TABLE table_23211041_10 (location_attendance VARCHAR, team VARCHAR) |
SELECT constructor FROM table_name_4 WHERE driver = "aguri suzuki" | Who constructed Aguri Suzuki's car? | CREATE TABLE table_name_4 (constructor VARCHAR, driver VARCHAR) |
SELECT salmonella FROM table_10321124_1 WHERE escherichia = "EspD" | what's the salmonella with escherichia being espd | CREATE TABLE table_10321124_1 (salmonella VARCHAR, escherichia 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 MIN(played) FROM table_name_38 WHERE points > 11 AND position = 1 AND lost < 1 | What is the lowest played that has points greater than 11, 1 as the position, and a loss less than 1? | CREATE TABLE table_name_38 (played INTEGER, lost VARCHAR, points VARCHAR, position VARCHAR) |
SELECT AVG(lost) FROM table_name_49 WHERE tied > 0 | What is the average number of losses when there are more than 0 ties? | CREATE TABLE table_name_49 (lost INTEGER, tied INTEGER) |
SELECT incumbent FROM table_2668243_22 WHERE district = "South Carolina 7" | Who was the "incumbent" of district south carolina 7? | CREATE TABLE table_2668243_22 (incumbent VARCHAR, district VARCHAR) |
SELECT MAX(average) FROM table_name_36 WHERE finale > 35 AND hk_viewers = "2.12 million" AND peak > 40 | What is the high average that has a Finale larger than 35, a HK viewers of 2.12 million, and a Peak larger than 40? | CREATE TABLE table_name_36 (average INTEGER, peak VARCHAR, finale VARCHAR, hk_viewers VARCHAR) |
SELECT name FROM table_name_46 WHERE pos = "d" AND date_of_birth = "1983-07-19" | What is the Name of the D Player born on 1983-07-19? | CREATE TABLE table_name_46 (name VARCHAR, pos VARCHAR, date_of_birth VARCHAR) |
SELECT MIN(laps) FROM table_name_64 WHERE constructor = "ferrari" AND grid < 4 | What is the least number of laps for the constructor Ferrari and where the grid number was less than 4? | CREATE TABLE table_name_64 (laps INTEGER, constructor VARCHAR, grid VARCHAR) |
SELECT reserved_for___sc___st__none_ FROM table_name_43 WHERE constituency_number = "108" | What's the reserved number for constituency number 108? | CREATE TABLE table_name_43 (reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR) |
SELECT player FROM table_name_3 WHERE pick < 126 AND team = "houston oilers" | What player was picked earlier than 126 by the Houston Oilers? | CREATE TABLE table_name_3 (player VARCHAR, pick VARCHAR, team VARCHAR) |
SELECT autonomous_community FROM table_23143607_1 WHERE television_channels = "TPA TPA2 RTPA Internacional" | What is the autonomous community with television channels tpa tpa2 rtpa internacional? | CREATE TABLE table_23143607_1 (autonomous_community VARCHAR, television_channels VARCHAR) |
SELECT T1.name, COUNT(*) FROM camera_lens AS T1 JOIN photos AS T2 ON T1.id = T2.camera_lens_id GROUP BY T1.id ORDER BY COUNT(*) | What is the name of each camera lens and the number of photos taken by it? Order the result by the count of photos. | CREATE TABLE photos (camera_lens_id VARCHAR); CREATE TABLE camera_lens (name VARCHAR, id VARCHAR) |
SELECT SUM(game) FROM table_name_71 WHERE november < 27 AND record = "2-0-0" | When the record is listed as 2-0-0, and the November date is less than 27, what is the sum of the game? | CREATE TABLE table_name_71 (game INTEGER, november VARCHAR, record VARCHAR) |
SELECT nation FROM table_name_70 WHERE athlete_s_ = "elizabeth yarnold" | What is Elizabeth Yarnold's nation? | CREATE TABLE table_name_70 (nation VARCHAR, athlete_s_ VARCHAR) |
SELECT issue_price FROM table_name_44 WHERE theme = "trumpeter swan" | What was the issue price for the Trumpeter Swan set? | CREATE TABLE table_name_44 (issue_price VARCHAR, theme VARCHAR) |
SELECT SUM(rank) FROM table_name_3 WHERE sites > 62 AND circuit = "cineplex entertainment" | what is the rank of the cinema when the number of sites is more than 62 and the circuit is cineplex entertainment? | CREATE TABLE table_name_3 (rank INTEGER, sites VARCHAR, circuit VARCHAR) |
SELECT title FROM table_name_38 WHERE english_translation = "without me" | What is the title of the song that has a translation of Without Me? | CREATE TABLE table_name_38 (title VARCHAR, english_translation VARCHAR) |
SELECT game FROM table_name_85 WHERE location_attendance = "the forum" AND series = "0-1" | Which game was played at the Forum and led to a series result of 0-1? | CREATE TABLE table_name_85 (game VARCHAR, location_attendance VARCHAR, series VARCHAR) |
SELECT round FROM table_name_64 WHERE opposing_team = "manchester united" | Which round has an Opposing Team of manchester united? | CREATE TABLE table_name_64 (round VARCHAR, opposing_team VARCHAR) |
SELECT mission FROM table_name_16 WHERE resident_country = "switzerland" | What is the mission for switzerland as a resident County? | CREATE TABLE table_name_16 (mission VARCHAR, resident_country VARCHAR) |
SELECT MAX(successful_defenses) FROM table_name_13 WHERE location = "brandon, florida" AND reign < 1 | What is the highest number of successful defenses in brandon, florida and a reign less than 1? | CREATE TABLE table_name_13 (successful_defenses INTEGER, location VARCHAR, reign VARCHAR) |
SELECT reidsville FROM table_25330991_3 WHERE information = "Enrollment" | Name the reidsville for enrollment | CREATE TABLE table_25330991_3 (reidsville VARCHAR, information VARCHAR) |
SELECT SUM(round) FROM table_name_85 WHERE time = "6:04" | What is the total number of Round that has a Time of 6:04? | CREATE TABLE table_name_85 (round INTEGER, time VARCHAR) |
SELECT high_points FROM table_name_75 WHERE team = "@ portland" | What are the High points for Team @ portland? | CREATE TABLE table_name_75 (high_points VARCHAR, team VARCHAR) |
SELECT medal_of_honor FROM table_2104176_1 WHERE air_force_cross = "Army Distinguished Service Medal" | What is the Medal of Honor with Army Distinguished Service Medal? | CREATE TABLE table_2104176_1 (medal_of_honor VARCHAR, air_force_cross VARCHAR) |
SELECT COUNT(season__number) FROM table_23279434_1 WHERE production_code = "AM10" | Which season used production code "am10"? | CREATE TABLE table_23279434_1 (season__number VARCHAR, production_code VARCHAR) |
SELECT MAX(area_km_2) FROM table_name_84 WHERE population > 532 AND official_name = "centreville" | What is the highest area for locations named Centreville having populations over 532? | CREATE TABLE table_name_84 (area_km_2 INTEGER, population VARCHAR, official_name VARCHAR) |
SELECT SUM(silver) FROM table_name_25 WHERE rank = "8" AND total > 3 | What is the sum of silvers for countries in rank 8 with totals over 3? | CREATE TABLE table_name_25 (silver INTEGER, rank VARCHAR, total VARCHAR) |
SELECT Tourist_Details FROM VISITORS | Show details of all visitors. | CREATE TABLE VISITORS (Tourist_Details VARCHAR) |
SELECT league FROM table_242813_2 WHERE strikeouts = 451 | Name the league for strikeouts being 451 | CREATE TABLE table_242813_2 (league VARCHAR, strikeouts VARCHAR) |
SELECT winter_olympics FROM table_174491_1 WHERE winner = "Thorleif Haug" | What year did Thorleif Haug win the Winter Olympics? | CREATE TABLE table_174491_1 (winter_olympics VARCHAR, winner VARCHAR) |
SELECT album FROM table_name_68 WHERE label_and_cat_number = "full moon/warner 28628" | Which album has a label and cat# full moon/warner 28628? | CREATE TABLE table_name_68 (album VARCHAR, label_and_cat_number VARCHAR) |
SELECT opponent FROM table_name_7 WHERE date = "october 13, 1968" | Who did the Browns play on October 13, 1968? | CREATE TABLE table_name_7 (opponent VARCHAR, date VARCHAR) |
SELECT date FROM table_name_52 WHERE circuit = "surfers paradise international raceway" | What date has the Surfers Paradise International Raceway circuit? | CREATE TABLE table_name_52 (date VARCHAR, circuit VARCHAR) |
SELECT AVG(matches) FROM table_name_91 WHERE country = "austria germany" AND rank < 5 | When the country is austria germany and the rank is kept under 5, what's the average number of matches played? | CREATE TABLE table_name_91 (matches INTEGER, country VARCHAR, rank VARCHAR) |
SELECT driver FROM table_name_55 WHERE grid = "18" | Which driver had a grid number of 18? | CREATE TABLE table_name_55 (driver VARCHAR, grid VARCHAR) |
SELECT MAX(abandoned) FROM table_25368177_1 | What's the largest number of abandoned games by any of the teams? | CREATE TABLE table_25368177_1 (abandoned INTEGER) |
SELECT name FROM table_name_70 WHERE lane < 6 AND time = "2:11.02" | Who swam in a lane less than 6 and finished with a time of 2:11.02? | CREATE TABLE table_name_70 (name VARCHAR, lane VARCHAR, time VARCHAR) |
SELECT losing_bonus FROM table_name_51 WHERE drawn = "1" AND try_bonus = "10" | What was the losing bonus that had 1 draw and a 10 try bonus? | CREATE TABLE table_name_51 (losing_bonus VARCHAR, drawn VARCHAR, try_bonus VARCHAR) |
SELECT MIN(total_foreign_born__millions_) FROM table_name_38 WHERE born_in_a_non_eu_state__millions_ = 6.415 | What was the lowest number of Total Foreign-born (millions) people, when the number of people Born in a non EU state (millions) was 6.415? | CREATE TABLE table_name_38 (total_foreign_born__millions_ INTEGER, born_in_a_non_eu_state__millions_ VARCHAR) |
SELECT queens FROM table_1108394_34 WHERE richmond_[staten_is] = "295" | What number of voters did Queens have when Staten Island had 295 voters? | CREATE TABLE table_1108394_34 (queens VARCHAR, richmond_ VARCHAR, staten_is VARCHAR) |
SELECT date FROM table_name_81 WHERE competition = "british home championship" | Which date has a competition type of British home championship? | CREATE TABLE table_name_81 (date VARCHAR, competition VARCHAR) |
SELECT record FROM table_name_63 WHERE loss = "plesac (1-5)" | For the Loss of Plesac (1-5), what is the Record? | CREATE TABLE table_name_63 (record VARCHAR, loss VARCHAR) |
SELECT runner_s__up FROM table_name_10 WHERE margin_of_victory = "1 stroke" AND tournament = "legend financial group classic" | Name the runner-up for margin of victory of 1 stroke and tournament of legend financial group classic | CREATE TABLE table_name_10 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) |
SELECT date FROM table_name_44 WHERE away_team = "guatemala" | What is the date where Guatemala is the Away team? | CREATE TABLE table_name_44 (date VARCHAR, away_team VARCHAR) |
SELECT MAX(total) FROM table_22360_3 | Name the most total | CREATE TABLE table_22360_3 (total INTEGER) |
SELECT horse FROM table_name_18 WHERE result = "65.863" | What horse has a 65.863 result? | CREATE TABLE table_name_18 (horse VARCHAR, result VARCHAR) |
SELECT opponent FROM table_name_17 WHERE event = "iscf - southeast championships" | What is Opponent, when Event is "ISCF - Southeast Championships"? | CREATE TABLE table_name_17 (opponent VARCHAR, event VARCHAR) |
SELECT nickname FROM table_262527_1 WHERE joined = "1902 1" | what is the nickname that joined 1902 1? | CREATE TABLE table_262527_1 (nickname VARCHAR, joined VARCHAR) |
SELECT score FROM table_name_52 WHERE game = 30 | What was the score of game 30? | CREATE TABLE table_name_52 (score VARCHAR, game VARCHAR) |
SELECT MAX(task_no) FROM table_name_16 WHERE head_of_household = "cathy" | What is the latest task number for which Cathy is head of household? | CREATE TABLE table_name_16 (task_no INTEGER, head_of_household VARCHAR) |
SELECT opponent_in_the_final FROM table_name_26 WHERE surface = "hard (i)" AND date = "october 9, 2005" | Which final opponent's surface was hard (i) and participated on October 9, 2005? | CREATE TABLE table_name_26 (opponent_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) |
SELECT MIN(number_of_electorates__2003_) FROM table_name_85 WHERE district = "bhind" AND reserved_for___sc___st__none_ = "none" AND constituency_number = "11" | What is the lowest number of Electorates (2003) in District bhind, Reserved for none, and Constituency Number 11? | CREATE TABLE table_name_85 (number_of_electorates__2003_ INTEGER, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR) |
SELECT joint_music_award FROM table_name_32 WHERE total > 18 AND year > 2007 | How many Joint Music Awards are there when the Total is larger than 18, in a Year after 2007? | CREATE TABLE table_name_32 (joint_music_award VARCHAR, total VARCHAR, year VARCHAR) |
SELECT MAX(bronze) FROM table_name_18 WHERE silver < 1 AND nation = "belgium (bel)" AND gold < 0 | What is the largest amount of bronze medals when the silver medals are less than 1, and Belgium (BEL) is the nation, and the gold medals are less than 0? | CREATE TABLE table_name_18 (bronze INTEGER, gold VARCHAR, silver VARCHAR, nation VARCHAR) |
SELECT name FROM table_2482547_5 WHERE balls_bowled = 4969 | Who are all the players who've bowled more than 4969 balls? | CREATE TABLE table_2482547_5 (name VARCHAR, balls_bowled VARCHAR) |
SELECT MAX(conceded) FROM table_name_4 WHERE played < 5 | Please name the highest Conceded which has a Played smaller than 5? | CREATE TABLE table_name_4 (conceded INTEGER, played INTEGER) |
SELECT AVG(rank) FROM table_name_88 WHERE points < "166".96 AND places = "166" | What is the rank for points less than 166.96, and a Places of 166? | CREATE TABLE table_name_88 (rank INTEGER, points VARCHAR, places VARCHAR) |
SELECT status FROM table_171356_2 WHERE census_ranking = "2,290 of 5,008" | What status doe the area with a census ranking of 2,290 of 5,008 have? | CREATE TABLE table_171356_2 (status VARCHAR, census_ranking VARCHAR) |
SELECT us_krag_jørgensen_m1892 FROM table_name_87 WHERE norwegian_krag_jørgensen_m1894 = "126.8cm" | What is the US Krag-Jørgensen M1892 when the Norwegian Krag-Jørgensen M1894 is 126.8cm? | CREATE TABLE table_name_87 (us_krag_jørgensen_m1892 VARCHAR, norwegian_krag_jørgensen_m1894 VARCHAR) |
SELECT COUNT(*), sex FROM student WHERE age > (SELECT AVG(age) FROM student) GROUP BY sex | Find the number of students whose age is older than the average age for each gender. | CREATE TABLE student (sex VARCHAR, age INTEGER) |
SELECT chassis FROM table_name_38 WHERE entrant = "lavazza march" AND year = 1975 | What was the chassis when the entrant was Lavazza March, and the year was 1975? | CREATE TABLE table_name_38 (chassis VARCHAR, entrant VARCHAR, year VARCHAR) |
SELECT AVG(episode) FROM table_name_29 WHERE performer_1 = "jim sweeney" AND date = "19 march 1993" | What is the average episode number on 19 March 1993 with Jim Sweeney as performer 1? | CREATE TABLE table_name_29 (episode INTEGER, performer_1 VARCHAR, date VARCHAR) |
SELECT title FROM Movie WHERE director = 'Steven Spielberg' | Find the titles of all movies directed by steven spielberg. | CREATE TABLE Movie (title VARCHAR, director VARCHAR) |
SELECT copyright_information FROM table_name_7 WHERE publisher = "random house" | What was Random House's copyright information? | CREATE TABLE table_name_7 (copyright_information VARCHAR, publisher VARCHAR) |
SELECT y_ = _2011 FROM table_214479_8 WHERE expression = month = FLOOR((d + e + 114) / 31) | What is the y = 2011 when the expression is month = floor ((d + e + 114) / 31)? | CREATE TABLE table_214479_8 (y_ VARCHAR, _2011 VARCHAR, expression VARCHAR, month VARCHAR, d VARCHAR, e VARCHAR) |
SELECT semifinals FROM table_1745820_5 WHERE round_of_32 = "Bye" | When there was a bye in the round of 32, what was the result in the round of 16? | CREATE TABLE table_1745820_5 (semifinals VARCHAR, round_of_32 VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.