answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT original_air_date FROM table_24425976_7 WHERE series = 115 | What date did episode 115 in the series originally air? | CREATE TABLE table_24425976_7 (original_air_date VARCHAR, series VARCHAR) |
SELECT january FROM table_name_53 WHERE april = "courtney rachel culkin" | Name the january when april is courtney rachel culkin | CREATE TABLE table_name_53 (january VARCHAR, april VARCHAR) |
SELECT pick__number FROM table_name_49 WHERE college_junior_club_team = "edmonton oil kings (wchl)" AND position = "defence" | What is the Pick # for the College/junior/club team of edmonton oil kings (wchl), and the position if defence? | CREATE TABLE table_name_49 (pick__number VARCHAR, college_junior_club_team VARCHAR, position VARCHAR) |
SELECT college FROM table_name_93 WHERE pick = 5 | What college received Pick 5? | CREATE TABLE table_name_93 (college VARCHAR, pick VARCHAR) |
SELECT race_caller FROM table_22583466_3 WHERE year = 1998 | Who called the race in 1998? | CREATE TABLE table_22583466_3 (race_caller VARCHAR, year VARCHAR) |
SELECT SUM(drawn) FROM table_name_33 WHERE penalties = 1 AND conversions > 20 | How many ties did he have when he had 1 penalties and more than 20 conversions? | CREATE TABLE table_name_33 (drawn INTEGER, penalties VARCHAR, conversions VARCHAR) |
SELECT MIN(silver) FROM table_name_33 WHERE bronze = 2 AND total > 4 | What is the lowest silver that has 2 as the bronze, with a total greater than 4? | CREATE TABLE table_name_33 (silver INTEGER, bronze VARCHAR, total VARCHAR) |
SELECT venue FROM table_name_27 WHERE year < 2005 AND position = "10th (sf)" | What Venue is listed that has a Year smaller than 2005 and a Position of 10th (sf)? | CREATE TABLE table_name_27 (venue VARCHAR, year VARCHAR, position VARCHAR) |
SELECT tournament FROM table_name_33 WHERE winner_and_score = "goran ivanišević 6–4, 6–2, 7–6(2)" | Which Tournament has a Winner and score of goran ivanišević 6–4, 6–2, 7–6(2)? | CREATE TABLE table_name_33 (tournament VARCHAR, winner_and_score VARCHAR) |
SELECT built FROM table_name_20 WHERE name = "moores creek bridge" | When was Moores Creek Bridge built? | CREATE TABLE table_name_20 (built VARCHAR, name VARCHAR) |
SELECT T1.name, T2.date_of_treatment FROM Dogs AS T1 JOIN Treatments AS T2 ON T1.dog_id = T2.dog_id WHERE T1.breed_code = (SELECT breed_code FROM Dogs GROUP BY breed_code ORDER BY COUNT(*) LIMIT 1) | List the names of the dogs of the rarest breed and the treatment dates of them. | CREATE TABLE Dogs (name VARCHAR, dog_id VARCHAR, breed_code VARCHAR); CREATE TABLE Treatments (date_of_treatment VARCHAR, dog_id VARCHAR); CREATE TABLE Dogs (breed_code VARCHAR) |
SELECT game_3 FROM table_27039190_3 WHERE viewers = "Under 2.61m" | What was game 3 when there were under 2.61m viewers? | CREATE TABLE table_27039190_3 (game_3 VARCHAR, viewers VARCHAR) |
SELECT episode_no FROM table_name_56 WHERE countries_visited = "india" | Which episode number visited India? | CREATE TABLE table_name_56 (episode_no VARCHAR, countries_visited VARCHAR) |
SELECT date FROM table_name_76 WHERE region = "japan" | Which date had a Japan region? | CREATE TABLE table_name_76 (date VARCHAR, region VARCHAR) |
SELECT date_successor_seated FROM table_224837_4 WHERE district = "South Carolina 3rd" | Name the date successor seated is south carolina 3rd | CREATE TABLE table_224837_4 (date_successor_seated VARCHAR, district VARCHAR) |
SELECT bike FROM table_name_15 WHERE laps < 23 AND grid = 4 | Which bike had fewer than 23 laps and a grid number of 4? | CREATE TABLE table_name_15 (bike VARCHAR, laps VARCHAR, grid VARCHAR) |
SELECT AVG(rank) FROM table_name_64 WHERE nation = "south africa" AND silver > 8 | What was the average rank for south africa when they had more than 8 silver medals? | CREATE TABLE table_name_64 (rank INTEGER, nation VARCHAR, silver VARCHAR) |
SELECT MIN(wins) FROM table_name_80 WHERE points < 10 AND losses < 3 AND scored = 11 | Name the Wins which has Points smaller than 10, Losses smaller than 3, and a Scored of 11? | CREATE TABLE table_name_80 (wins INTEGER, scored VARCHAR, points VARCHAR, losses VARCHAR) |
SELECT declination___j2000__ FROM table_name_80 WHERE ngc_number > 5750 | Tell me the declination with NGC number larger than 5750 | CREATE TABLE table_name_80 (declination___j2000__ VARCHAR, ngc_number INTEGER) |
SELECT home_team AS score FROM table_name_53 WHERE home_team = "footscray" | When the Home team of footscray is playing, what's the Home team score? | CREATE TABLE table_name_53 (home_team VARCHAR) |
SELECT country FROM table_name_99 WHERE place = "t8" AND score = 68 - 74 = 142 | What is the Country of the T8 Place Player with a Score of 68-74=142? | CREATE TABLE table_name_99 (country VARCHAR, place VARCHAR, score VARCHAR) |
SELECT surface FROM table_name_89 WHERE partner = "pemra özgen" | Which Surface has a Partner of pemra özgen? | CREATE TABLE table_name_89 (surface VARCHAR, partner VARCHAR) |
SELECT country FROM table_name_3 WHERE to_par > 3 AND year_s__won = "1979" | Which Country has a To par larger than 3, and a Year(s) won of 1979? Question 1 | CREATE TABLE table_name_3 (country VARCHAR, to_par VARCHAR, year_s__won VARCHAR) |
SELECT MIN(first_season) FROM table_1560673_1 | What was the earliest season recorded for any team | CREATE TABLE table_1560673_1 (first_season INTEGER) |
SELECT team FROM table_name_15 WHERE previous_team = "indiana pacers" | What is the team of the player who was previously on the indiana pacers? | CREATE TABLE table_name_15 (team VARCHAR, previous_team VARCHAR) |
SELECT MIN(year_s_) FROM table_name_81 WHERE season = 4 | When was the earliest with 4 seasons? | CREATE TABLE table_name_81 (year_s_ INTEGER, season VARCHAR) |
SELECT title FROM table_23513241_5 WHERE series_episode = 38 | List the title of series episode 38. | CREATE TABLE table_23513241_5 (title VARCHAR, series_episode VARCHAR) |
SELECT speed__mph_ FROM table_2665085_1 WHERE height__ft_ = 163 | How fast is the coaster that is 163 feet tall | CREATE TABLE table_2665085_1 (speed__mph_ VARCHAR, height__ft_ VARCHAR) |
SELECT gold FROM table_name_61 WHERE year = "1970" | How many gold medals were won in 1970? | CREATE TABLE table_name_61 (gold VARCHAR, year VARCHAR) |
SELECT frequency FROM table_name_47 WHERE voltage = "3.3 v" | What is the Frequency, when the Voltage is 3.3 V? | CREATE TABLE table_name_47 (frequency VARCHAR, voltage VARCHAR) |
SELECT outcome FROM table_2127933_3 WHERE opponents = "Bill Tilden Florence Ballin" | What were the outcomes of matches with bill tilden florence ballin as opponents? | CREATE TABLE table_2127933_3 (outcome VARCHAR, opponents VARCHAR) |
SELECT race FROM table_1140073_2 WHERE location = "Kyalami" | Which race is located in kyalami? | CREATE TABLE table_1140073_2 (race VARCHAR, location VARCHAR) |
SELECT status FROM table_name_31 WHERE name = "norris" | What is the status of Norris? | CREATE TABLE table_name_31 (status VARCHAR, name VARCHAR) |
SELECT AVG(start) FROM table_name_11 WHERE lost < 22 AND tries > 4 | What is the number of starts for the player who lost fewer than 22 and has more than 4 tries? | CREATE TABLE table_name_11 (start INTEGER, lost VARCHAR, tries VARCHAR) |
SELECT date FROM table_name_53 WHERE tournament = "bell atlantic classic" | What day was the bell atlantic classic? | CREATE TABLE table_name_53 (date VARCHAR, tournament VARCHAR) |
SELECT SUM(poles) FROM table_name_57 WHERE percentage = "22.08%" | How many poles has a percentage of 22.08%? | CREATE TABLE table_name_57 (poles INTEGER, percentage VARCHAR) |
SELECT COUNT(matches) FROM table_name_73 WHERE wickets < 537 AND career = "1898/99-1919/20" AND runs > 4476 | Name the total number of matches with wickets less than 537 and career of 1898/99-1919/20 with runs more than 4476 | CREATE TABLE table_name_73 (matches VARCHAR, runs VARCHAR, wickets VARCHAR, career VARCHAR) |
SELECT SUM(goal_difference) FROM table_name_3 WHERE draws = 8 AND goals_against = 32 AND wins < 12 | What is the goal difference when there are fewer than 12 wins, 32 goals against and 8 draws? | CREATE TABLE table_name_3 (goal_difference INTEGER, wins VARCHAR, draws VARCHAR, goals_against VARCHAR) |
SELECT home FROM table_name_87 WHERE date = "january 13" | Which home team was playing on January 13? | CREATE TABLE table_name_87 (home VARCHAR, date VARCHAR) |
SELECT nickname FROM table_name_93 WHERE club = "east geelong" | What was the nickname of the team in the East Geelong club? | CREATE TABLE table_name_93 (nickname VARCHAR, club VARCHAR) |
SELECT MIN(pick__number) FROM table_name_90 WHERE player = "michael grabner" AND reg_gp < 20 | What is the lowest Pick # with michael grabner and less than 20 Reg GP? | CREATE TABLE table_name_90 (pick__number INTEGER, player VARCHAR, reg_gp VARCHAR) |
SELECT date FROM table_1566852_7 WHERE interview_subject = "Shepard Smith" | IN WHAT ISSUE OF PLAYBOY WAS SHEPARD SMITH INTERVIEWED? | CREATE TABLE table_1566852_7 (date VARCHAR, interview_subject VARCHAR) |
SELECT t2.section_title FROM documents AS t1 JOIN document_sections AS t2 ON t1.document_code = t2.document_code WHERE t1.document_name = "David CV" | What are all the section titles of the document named "David CV"? | CREATE TABLE documents (document_code VARCHAR, document_name VARCHAR); CREATE TABLE document_sections (section_title VARCHAR, document_code VARCHAR) |
SELECT score FROM table_name_80 WHERE tournament = "sant cugat" AND opponent_in_the_final = "jose checa-calvo" | WHAT WAS THE SCORE IN THE FINAL PLAYED AGAINST JOSE CHECA-CALVO IN THE SANT CUGAT TOURNAMENT ? | CREATE TABLE table_name_80 (score VARCHAR, tournament VARCHAR, opponent_in_the_final VARCHAR) |
SELECT MIN(points) FROM table_name_43 WHERE chassis = "coloni fc88" | What were the least points with a Coloni FC88 chassis? | CREATE TABLE table_name_43 (points INTEGER, chassis VARCHAR) |
SELECT AVG(rank) FROM table_name_4 WHERE moving_to = "milan" AND year = 2000 | What rank is the transfer for the milan move in 2000? | CREATE TABLE table_name_4 (rank INTEGER, moving_to VARCHAR, year VARCHAR) |
SELECT SUM(games) FROM table_name_94 WHERE order = 1006 AND goals > 192 | How many games have an Order of 1006, and Goals larger than 192? | CREATE TABLE table_name_94 (games INTEGER, order VARCHAR, goals VARCHAR) |
SELECT SUM(year) FROM table_name_9 WHERE location = "koror, palau" | In what Year is the Location of the Festival Koror, Palau? | CREATE TABLE table_name_9 (year INTEGER, location VARCHAR) |
SELECT physical_property FROM table_name_13 WHERE helium = "0.0693" | Which Physical property has a Helium of 0.0693? | CREATE TABLE table_name_13 (physical_property VARCHAR, helium VARCHAR) |
SELECT COUNT(total) FROM table_name_48 WHERE bronze > 13 AND rank = "8" AND silver < 11 | How many Total(s) are there, when the number of Bronze is greater than 13, when the Rank is 8, and when the number of Silver is less than 11? | CREATE TABLE table_name_48 (total VARCHAR, silver VARCHAR, bronze VARCHAR, rank VARCHAR) |
SELECT place FROM table_name_86 WHERE country = "zimbabwe" | What place was the player hailing from Zimbabwe in? | CREATE TABLE table_name_86 (place VARCHAR, country VARCHAR) |
SELECT conference FROM table_11094950_1 WHERE team = "Churchill Chargers" | What conference was the churchill chargers team in? | CREATE TABLE table_11094950_1 (conference VARCHAR, team VARCHAR) |
SELECT outcome FROM table_name_61 WHERE date = "20 november 2011" | What Outcome happened on a Date that was 20 november 2011? | CREATE TABLE table_name_61 (outcome VARCHAR, date VARCHAR) |
SELECT score FROM table_name_51 WHERE outcome = "winner" AND opponent = "yevgeny kafelnikov" | what is the score when the outcome is winner against yevgeny kafelnikov? | CREATE TABLE table_name_51 (score VARCHAR, outcome VARCHAR, opponent VARCHAR) |
SELECT analog_channel FROM table_name_16 WHERE network = "fox" | Which analog channel is Fox on? | CREATE TABLE table_name_16 (analog_channel VARCHAR, network VARCHAR) |
SELECT COUNT(segment_d) FROM table_15187735_10 WHERE segment_a = "Wooden s Barrel" | Name the total number of segment d for wooden s barrel | CREATE TABLE table_15187735_10 (segment_d VARCHAR, segment_a VARCHAR) |
SELECT COUNT(height) FROM table_20872722_1 WHERE position = "Cornerback" | What is the height of the cornerback position? | CREATE TABLE table_20872722_1 (height VARCHAR, position VARCHAR) |
SELECT date FROM table_name_16 WHERE rocket = "tbd" AND satellite = "gps iiia-1" | On what date was the rocket a TBD with a satellite of GPS IIIA-1? | CREATE TABLE table_name_16 (date VARCHAR, rocket VARCHAR, satellite VARCHAR) |
SELECT type FROM table_2562572_26 WHERE population__2011_ = 1441 | What type of settlement has a population of 1441? | CREATE TABLE table_2562572_26 (type VARCHAR, population__2011_ VARCHAR) |
SELECT fuel_system FROM table_name_60 WHERE model = "diesel engines" | What fuel system does the diesel engines model have? | CREATE TABLE table_name_60 (fuel_system VARCHAR, model VARCHAR) |
SELECT MAX(tonnage) FROM table_name_13 WHERE nationality = "great britain" AND ship = "newton ash" | What is the highest tonnage for a ship from Great Britain named Newton Ash? | CREATE TABLE table_name_13 (tonnage INTEGER, nationality VARCHAR, ship VARCHAR) |
SELECT staten_island FROM table_1108394_6 WHERE brooklyn = "940" | What was Staten Island when Brooklyn was 940? | CREATE TABLE table_1108394_6 (staten_island VARCHAR, brooklyn VARCHAR) |
SELECT Product_ID FROM INVOICES GROUP BY Product_ID ORDER BY COUNT(*) DESC LIMIT 1 | What is the product ID of the most frequently ordered item on invoices? | CREATE TABLE INVOICES (Product_ID VARCHAR) |
SELECT result FROM table_name_40 WHERE director = "sergio leone" AND project = "once upon a time in the west" | What result does the project Once Upon A Time In The West, directed by Sergio Leone have? | CREATE TABLE table_name_40 (result VARCHAR, director VARCHAR, project VARCHAR) |
SELECT COUNT(national_rank) FROM table_27956_3 WHERE percentage_change_yoy = "13.1%" | Name the total number of rank for percentage change yoy 13.1% | CREATE TABLE table_27956_3 (national_rank VARCHAR, percentage_change_yoy VARCHAR) |
SELECT result FROM table_name_26 WHERE date = "march 14, 2007" | What is the result from March 14, 2007? | CREATE TABLE table_name_26 (result VARCHAR, date VARCHAR) |
SELECT MAX(market_share), MIN(market_share), AVG(market_share) FROM browser | What is the maximum, minimum and average market share of the listed browsers? | CREATE TABLE browser (market_share INTEGER) |
SELECT status FROM table_name_57 WHERE floors > 28 AND year = 2013 | What is the status of the building with more than 28 floor and a year of 2013? | CREATE TABLE table_name_57 (status VARCHAR, floors VARCHAR, year VARCHAR) |
SELECT AVG(gold) FROM table_name_62 WHERE total < 14 AND bronze < 1 AND nation = "czech republic" | Name the average gold for czech republic and bronze less than 1 when total is less than 14 | CREATE TABLE table_name_62 (gold INTEGER, nation VARCHAR, total VARCHAR, bronze VARCHAR) |
SELECT result_f___a FROM table_name_11 WHERE h___a = "h" AND attendance > 31 OFFSET 727 | What is the result F-A with an H/A of h and more than 31,727 attending? | CREATE TABLE table_name_11 (result_f___a VARCHAR, h___a VARCHAR, attendance VARCHAR) |
SELECT AVG(silver) FROM table_name_83 WHERE bronze < 3 AND total < 2 AND gold > 1 | Bronze smaller than 3, and a Total smaller than 2, and a Gold larger than 1 has how many average silvers? | CREATE TABLE table_name_83 (silver INTEGER, gold VARCHAR, bronze VARCHAR, total VARCHAR) |
SELECT COUNT(loses) FROM table_16034882_2 WHERE goals_scored = 37 | How many games were lost when the goals scored was 37? | CREATE TABLE table_16034882_2 (loses VARCHAR, goals_scored VARCHAR) |
SELECT MAX(rank) FROM table_name_56 WHERE notes = "sa/b" AND time = "6:39.07" | What is the highest rank with the notes of sa/b, and a time of 6:39.07? | CREATE TABLE table_name_56 (rank INTEGER, notes VARCHAR, time VARCHAR) |
SELECT uk_chart FROM table_name_33 WHERE year > 1961 AND at_eurovision = "2nd" AND artist = "michael ball" | Where did the song by Michael Ball, which placed 2nd in Eurovision prior to 1961, place on the UK charts? | CREATE TABLE table_name_33 (uk_chart VARCHAR, artist VARCHAR, year VARCHAR, at_eurovision VARCHAR) |
SELECT COUNT(position) FROM table_24565004_15 WHERE nationality² = "Brazil" | How many players are from the country of Brazil? | CREATE TABLE table_24565004_15 (position VARCHAR, nationality² VARCHAR) |
SELECT MIN(rank) FROM table_name_70 WHERE lane = 3 | What's the lowest rank of Lane 3? | CREATE TABLE table_name_70 (rank INTEGER, lane VARCHAR) |
SELECT Stuid, SUM(hours_played) FROM Plays_games GROUP BY Stuid | Show all student ids and the number of hours played. | CREATE TABLE Plays_games (Stuid VARCHAR, hours_played INTEGER) |
SELECT MAX(pick) FROM table_name_9 WHERE round > 5 AND player = "tom ivey" | Name of the highest Pick is also a Round greater than 5 and Player as Tom Ivey? | CREATE TABLE table_name_9 (pick INTEGER, round VARCHAR, player VARCHAR) |
SELECT introductory_phrase FROM table_25691838_8 WHERE production_code = 6101 | What was the introductory phrase on the episode production code 6101? | CREATE TABLE table_25691838_8 (introductory_phrase VARCHAR, production_code VARCHAR) |
SELECT lname, age FROM Student WHERE StuID IN (SELECT StuID FROM Has_allergy WHERE Allergy = "Milk" INTERSECT SELECT StuID FROM Has_allergy WHERE Allergy = "Cat") | Find the last name and age of the student who has allergy to both milk and cat. | CREATE TABLE Has_allergy (lname VARCHAR, age VARCHAR, StuID VARCHAR, Allergy VARCHAR); CREATE TABLE Student (lname VARCHAR, age VARCHAR, StuID VARCHAR, Allergy VARCHAR) |
SELECT COUNT(week) FROM table_name_56 WHERE record = "2-1" | What is the week with a record of 2-1? | CREATE TABLE table_name_56 (week VARCHAR, record VARCHAR) |
SELECT competition FROM table_name_26 WHERE location = "addis ababa" | Which competition was held at Addis Ababa? | CREATE TABLE table_name_26 (competition VARCHAR, location VARCHAR) |
SELECT AVG(week) FROM table_name_99 WHERE opponent = "st. louis cardinals" AND attendance < 80 OFFSET 010 | What is the average week with St. Louis Cardinals with less than 80,010 attendance? | CREATE TABLE table_name_99 (week INTEGER, opponent VARCHAR, attendance VARCHAR) |
SELECT AVG(year) FROM table_name_44 WHERE name = "shri. shambu nath khajuria" | What was the average year when shri. shambu nath khajuria won the padma shri awards? | CREATE TABLE table_name_44 (year INTEGER, name VARCHAR) |
SELECT percentage FROM table_26200568_16 WHERE points_for = 63 | What is the percentage listed for the team who scored 63 points? | CREATE TABLE table_26200568_16 (percentage VARCHAR, points_for VARCHAR) |
SELECT transfer_fee FROM table_name_79 WHERE ends = 2007 | What was the transfer fee for the player with an ends of 2007? | CREATE TABLE table_name_79 (transfer_fee VARCHAR, ends VARCHAR) |
SELECT date_successor_seated FROM table_2417345_4 WHERE successor = "George E. Harris (R)" | When was successor George E. Harris (R) seated? | CREATE TABLE table_2417345_4 (date_successor_seated VARCHAR, successor VARCHAR) |
SELECT valley_vista FROM table_name_39 WHERE dysart = "1668" | What Valley Vista has a Dysart of 1668? | CREATE TABLE table_name_39 (valley_vista VARCHAR, dysart VARCHAR) |
SELECT launched FROM table_name_63 WHERE laid_down = "31 october 1981" | What is Launched, when Laid Down is "31 October 1981"? | CREATE TABLE table_name_63 (launched VARCHAR, laid_down VARCHAR) |
SELECT SUM(top_25) FROM table_name_47 WHERE cuts_made = 6 | How many times has Watney made the top 25 for a tournament in which he as also been cut 6 times? | CREATE TABLE table_name_47 (top_25 INTEGER, cuts_made VARCHAR) |
SELECT SUM(Share_in_percent) FROM channel WHERE OWNER = 'CCTV' | find the total percentage share of all channels owned by CCTV. | CREATE TABLE channel (Share_in_percent INTEGER, OWNER VARCHAR) |
SELECT game FROM table_name_34 WHERE date = "february 21" | What is the game on February 21? | CREATE TABLE table_name_34 (game VARCHAR, date VARCHAR) |
SELECT homeland_security_distinguished_service_medal FROM table_2104176_1 WHERE medal_of_honor = "Coast Guard Medal" | WHat is the Homeland security distinguished service medal when the medal of honor is Coast guard Medal? | CREATE TABLE table_2104176_1 (homeland_security_distinguished_service_medal VARCHAR, medal_of_honor VARCHAR) |
SELECT nhl_team FROM table_1965650_11 WHERE college_junior_club_team = "Calgary Centennials (WCHL)" | What NHL team was the player from Calgary Centennials (WCHL) drafted for? | CREATE TABLE table_1965650_11 (nhl_team VARCHAR, college_junior_club_team VARCHAR) |
SELECT COUNT(area_km_2) FROM table_name_16 WHERE census_ranking = "1,871 of 5,008" AND population > 1 OFFSET 172 | What is the area of the parish with a population larger than 1,172 and a census ranking of 1,871 of 5,008? | CREATE TABLE table_name_16 (area_km_2 VARCHAR, census_ranking VARCHAR, population VARCHAR) |
SELECT T2.title, T1.stars, T2.director, MAX(T1.stars) FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE director <> "null" GROUP BY director | For each director, return the director's name together with the title of the movie they directed that received the highest rating among all of their movies, and the value of that rating. Ignore movies whose director is NULL. | CREATE TABLE Rating (stars INTEGER, mID VARCHAR); CREATE TABLE Movie (title VARCHAR, director VARCHAR, mID VARCHAR) |
SELECT venue FROM table_name_74 WHERE winner = "sydney roosters" AND crowd > 7 OFFSET 426 | When Sydney Roosters won with a Crown of more than 7,426, what was the Venue? | CREATE TABLE table_name_74 (venue VARCHAR, winner VARCHAR, crowd VARCHAR) |
SELECT date_completed FROM table_name_55 WHERE nickname = "little tavern" | When was the Little Tavern completed? | CREATE TABLE table_name_55 (date_completed VARCHAR, nickname VARCHAR) |
SELECT origin FROM table_name_71 WHERE launch = 2010 | What is the origin for the launch taking place in 2010? | CREATE TABLE table_name_71 (origin VARCHAR, launch VARCHAR) |
SELECT nationality FROM table_2850912_7 WHERE college_junior_club_team = "Oshawa Generals (OHL)" | What nationality is listed when the college/junior/club team is oshawa generals (ohl)? | CREATE TABLE table_2850912_7 (nationality VARCHAR, college_junior_club_team VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.