answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
|
---|---|---|
SELECT l_100km_urban__cold_ FROM table_name_24 WHERE co_2_g_km < 222 AND mpg_us_urban > 17.8 AND mpg_uk_extra_urban = 55.4 AND engine_capacity > 1560
|
What is the l/100km urban (cold) with a CO 2 g/km less than 222, an mpg-us urban greater than 17.8, an mpg-uk extra-urban of 55.4, and an engine capacity greater than 1560?
|
CREATE TABLE table_name_24 (l_100km_urban__cold_ VARCHAR, engine_capacity VARCHAR, mpg_uk_extra_urban VARCHAR, co_2_g_km VARCHAR, mpg_us_urban VARCHAR)
|
SELECT points_classification FROM table_name_9 WHERE general_classification = "cyril dessel"
|
Which Points Classification does the General Classification of Cyril Dessel have?
|
CREATE TABLE table_name_9 (points_classification VARCHAR, general_classification VARCHAR)
|
SELECT away_team AS score FROM table_name_50 WHERE away_team = "hawthorn"
|
WHAT DID HAWTHORN SCORE AT ITS AWAY GAME?
|
CREATE TABLE table_name_50 (away_team VARCHAR)
|
SELECT open_cup FROM table_name_98 WHERE playoffs = "2nd round"
|
What was the Rampage's status in the Open Cup in the year that they made it to the 2nd round of the playoffs?
|
CREATE TABLE table_name_98 (open_cup VARCHAR, playoffs VARCHAR)
|
SELECT game_site FROM table_name_99 WHERE attendance = "54,436"
|
Where was the game with the attendance of 54,436?
|
CREATE TABLE table_name_99 (game_site VARCHAR, attendance VARCHAR)
|
SELECT result FROM table_14302582_1 WHERE record = "4-1"
|
What was the result when the team was 4-1?
|
CREATE TABLE table_14302582_1 (result VARCHAR, record VARCHAR)
|
SELECT party AS a FROM table_22754310_1 WHERE runner_up_a = "M. S. K. Sathiyendran"
|
Name the party a for m. s. k. sathiyendran runner up
|
CREATE TABLE table_22754310_1 (party VARCHAR, runner_up_a VARCHAR)
|
SELECT country FROM table_name_70 WHERE score = 68 - 71 - 76 = 215
|
From what country is the player with a score of 68-71-76=215?
|
CREATE TABLE table_name_70 (country VARCHAR, score VARCHAR)
|
SELECT team FROM table_name_81 WHERE country = "france" AND uci_points = "15"
|
What team in France had 15 UCi points?
|
CREATE TABLE table_name_81 (team VARCHAR, country VARCHAR, uci_points VARCHAR)
|
SELECT opponent FROM table_21062353_1 WHERE game = 4
|
Who were the opponents of the Wildcats in game 4?
|
CREATE TABLE table_21062353_1 (opponent VARCHAR, game VARCHAR)
|
SELECT MIN(first_season) FROM table_name_8 WHERE city = "montreal" AND capacity > 5 OFFSET 100
|
What's the smallest season for Montreal that's greater than 5,100 for capacity?
|
CREATE TABLE table_name_8 (first_season INTEGER, city VARCHAR, capacity VARCHAR)
|
SELECT date FROM table_name_75 WHERE opponent = "white sox" AND record = "81-48"
|
What was the game of the game against the White Sox with a record of 81-48?
|
CREATE TABLE table_name_75 (date VARCHAR, opponent VARCHAR, record VARCHAR)
|
SELECT rider FROM table_name_23 WHERE manufacturer = "honda" AND time_retired = "+44.814"
|
Which rider has a Manufacturer of honda with a time of +44.814?
|
CREATE TABLE table_name_23 (rider VARCHAR, manufacturer VARCHAR, time_retired VARCHAR)
|
SELECT race_name FROM table_1140113_5 WHERE circuit = "Bordeaux"
|
What was the name of the race in Bordeaux?
|
CREATE TABLE table_1140113_5 (race_name VARCHAR, circuit VARCHAR)
|
SELECT MAX(pick__number) FROM table_26996293_1 WHERE player = "Barry Jamieson"
|
What was Barry Jamieson's pick number?
|
CREATE TABLE table_26996293_1 (pick__number INTEGER, player VARCHAR)
|
SELECT away_team AS score FROM table_name_35 WHERE venue = "junction oval"
|
What is the team score of the away team at Junction Oval?
|
CREATE TABLE table_name_35 (away_team VARCHAR, venue VARCHAR)
|
SELECT score FROM table_name_19 WHERE partner = "lorenzo manta"
|
What was the score when Mark parterned with lorenzo manta?
|
CREATE TABLE table_name_19 (score VARCHAR, partner VARCHAR)
|
SELECT player FROM table_name_99 WHERE to_par = "–6"
|
Name the Player which has a To par of –6?
|
CREATE TABLE table_name_99 (player VARCHAR, to_par VARCHAR)
|
SELECT aggressive_rider FROM table_25580292_13 WHERE winner = "Luis León Sánchez"
|
Who was the aggressive rider when the winner was luis león sánchez?
|
CREATE TABLE table_25580292_13 (aggressive_rider VARCHAR, winner VARCHAR)
|
SELECT result FROM table_name_33 WHERE week = 5
|
What is the result of week 5?
|
CREATE TABLE table_name_33 (result VARCHAR, week VARCHAR)
|
SELECT drawn FROM table_name_99 WHERE tries_for = "34"
|
How many resulted in draws with 34 tries for?
|
CREATE TABLE table_name_99 (drawn VARCHAR, tries_for VARCHAR)
|
SELECT MIN(points) FROM table_14342210_6 WHERE player = "Herrnstein"
|
What is the least amount of points made by Herrnstein?
|
CREATE TABLE table_14342210_6 (points INTEGER, player VARCHAR)
|
SELECT clublocation FROM club WHERE clubname = "Tennis Club"
|
What is the location of the club named "Tennis Club"?
|
CREATE TABLE club (clublocation VARCHAR, clubname VARCHAR)
|
SELECT college FROM table_10361230_1 WHERE player_name = "Bill Cappleman"
|
What college did Bill Cappleman go to?
|
CREATE TABLE table_10361230_1 (college VARCHAR, player_name VARCHAR)
|
SELECT AVG(Price), AVG(Cases) FROM WINE WHERE YEAR = 2009 AND Grape = "Zinfandel"
|
What are the average prices and cases of wines produced in the year of 2009 and made of Zinfandel grape?
|
CREATE TABLE WINE (Price INTEGER, Cases INTEGER, YEAR VARCHAR, Grape VARCHAR)
|
SELECT score FROM table_name_68 WHERE year > 1980 AND margin_of_victory = "2 strokes" AND country = "united states" AND player = "jim furyk"
|
Which Score has a Year larger than 1980, and a Margin of victory of 2 strokes, and a Country of united states, and a Player of jim furyk?
|
CREATE TABLE table_name_68 (score VARCHAR, player VARCHAR, country VARCHAR, year VARCHAR, margin_of_victory VARCHAR)
|
SELECT airdate FROM table_name_88 WHERE share = 10 AND rank = "#29"
|
What is the Airdate of the episode that ranked #29 and had a share greater than 10?
|
CREATE TABLE table_name_88 (airdate VARCHAR, share VARCHAR, rank VARCHAR)
|
SELECT SUM(drawn) FROM table_name_13 WHERE lost > 1 AND games < 5
|
Name the sum of drawn with lost more than 1 and games less than 5
|
CREATE TABLE table_name_13 (drawn INTEGER, lost VARCHAR, games VARCHAR)
|
SELECT rounds FROM table_name_8 WHERE driver = "roger williamson"
|
None of the rounds has Roger Williamson as a driver.
|
CREATE TABLE table_name_8 (rounds VARCHAR, driver VARCHAR)
|
SELECT directed_by FROM table_18424435_3 WHERE us_air_date = "February 27, 2009"
|
Who directed the episode aired on February 27, 2009?
|
CREATE TABLE table_18424435_3 (directed_by VARCHAR, us_air_date VARCHAR)
|
SELECT kickoff_[a_] FROM table_11449311_2 WHERE tv = "CBS" AND opponent = "St. Louis Cardinals"
|
Give me the kickoff time of the game that was aired on CBS against the St. Louis Cardinals.
|
CREATE TABLE table_11449311_2 (kickoff_ VARCHAR, a_ VARCHAR, tv VARCHAR, opponent VARCHAR)
|
SELECT SUM(attendance) FROM table_name_15 WHERE loss = "rekar (4–5)"
|
How many were in attendance for the loss of rekar (4–5)?
|
CREATE TABLE table_name_15 (attendance INTEGER, loss VARCHAR)
|
SELECT net_power FROM table_name_74 WHERE type = "wwer-440/230" AND finish_construction = "24.10.1977"
|
What was the net power, when the type was wwer-440/230, and when construction was finished on 24.10.1977?
|
CREATE TABLE table_name_74 (net_power VARCHAR, type VARCHAR, finish_construction VARCHAR)
|
SELECT production_code FROM table_2226817_8 WHERE written_by = "Michael G. Moye"
|
What are all the production codes of episodes written by Michael G. Moye?
|
CREATE TABLE table_2226817_8 (production_code VARCHAR, written_by VARCHAR)
|
SELECT MIN(attendance) FROM table_name_34 WHERE visitor = "nashville"
|
When Nashville was the visiting team what was the lowest Attendance shown?
|
CREATE TABLE table_name_34 (attendance INTEGER, visitor VARCHAR)
|
SELECT venue FROM table_name_95 WHERE discipline = "3.3km c prologue"
|
What was the venue with a 3.3km c prologue discipline?
|
CREATE TABLE table_name_95 (venue VARCHAR, discipline VARCHAR)
|
SELECT general_classification FROM table_28853064_15 WHERE winner = "Sergio Luis Henao" AND points_classification = "Sergio Luis Henao"
|
Who was the General Classification awardee if Sergio Luis Henao was the winner and the Points Classification award was given to Sergio Luis Henao?
|
CREATE TABLE table_28853064_15 (general_classification VARCHAR, winner VARCHAR, points_classification VARCHAR)
|
SELECT COUNT(state) FROM table_27961684_1 WHERE enrollment = 2789
|
How many states were there when there was an enrollment of 2789?
|
CREATE TABLE table_27961684_1 (state VARCHAR, enrollment VARCHAR)
|
SELECT drawn FROM table_12792876_3 WHERE tries_against = "89"
|
What was the drawn when the tries against was 89?
|
CREATE TABLE table_12792876_3 (drawn VARCHAR, tries_against VARCHAR)
|
SELECT competition FROM table_name_15 WHERE first_match = "december 20, 2007"
|
What competition had its first match on December 20, 2007?
|
CREATE TABLE table_name_15 (competition VARCHAR, first_match VARCHAR)
|
SELECT date FROM table_16678052_2 WHERE opponents = 17 AND result = "Win"
|
On what date did the opponents win with 17 points?
|
CREATE TABLE table_16678052_2 (date VARCHAR, opponents VARCHAR, result VARCHAR)
|
SELECT COUNT(player) FROM table_2840500_4 WHERE college_junior_club_team = "Reipas Lahti (Finland)"
|
How many players came from college team reipas lahti (finland)?
|
CREATE TABLE table_2840500_4 (player VARCHAR, college_junior_club_team VARCHAR)
|
SELECT high_points FROM table_17288825_9 WHERE game = 72
|
Who had the most poinst in game 72?
|
CREATE TABLE table_17288825_9 (high_points VARCHAR, game VARCHAR)
|
SELECT january FROM table_name_15 WHERE september = "nikki schieler"
|
Who is the January playmate with a September playmate Nikki Schieler?
|
CREATE TABLE table_name_15 (january VARCHAR, september VARCHAR)
|
SELECT total FROM table_name_99 WHERE finish = "t44"
|
What is the total when the finish was t44?
|
CREATE TABLE table_name_99 (total VARCHAR, finish VARCHAR)
|
SELECT designation FROM table_name_84 WHERE quantity = 52
|
Which Designation has a Quantity of 52?
|
CREATE TABLE table_name_84 (designation VARCHAR, quantity VARCHAR)
|
SELECT name FROM table_name_39 WHERE round > 4 AND overall < 338 AND pick < 11 AND college = "virginia tech"
|
Which Name has a Round larger than 4, an Overall smaller than 338, a Pick smaller than 11, and a College of virginia tech?
|
CREATE TABLE table_name_39 (name VARCHAR, college VARCHAR, pick VARCHAR, round VARCHAR, overall VARCHAR)
|
SELECT COUNT(sec_wins) FROM table_22993636_2 WHERE overall_record = "30-4"
|
How many different SEC Win counts does the team with an overall record of 30-4 have?
|
CREATE TABLE table_22993636_2 (sec_wins VARCHAR, overall_record VARCHAR)
|
SELECT champion FROM table_name_69 WHERE location = "sopot" AND year < 2006 AND score = "6–4, 6–7(7), 6–3"
|
What is the Champion at Sopot prior to 2006 with a Score of 6–4, 6–7(7), 6–3?
|
CREATE TABLE table_name_69 (champion VARCHAR, score VARCHAR, location VARCHAR, year VARCHAR)
|
SELECT us_peak_position FROM table_name_83 WHERE uk_peak_position = "21"
|
What was the US Peak position of the film that peaked at #21 in the UK?
|
CREATE TABLE table_name_83 (us_peak_position VARCHAR, uk_peak_position VARCHAR)
|
SELECT player FROM table_name_64 WHERE mls_team = "dallas burn"
|
Tell me the player from dallas burn
|
CREATE TABLE table_name_64 (player VARCHAR, mls_team VARCHAR)
|
SELECT MIN(year) FROM table_103084_4 WHERE bbc_two_total_viewing = "7,530,000"
|
What year was the BBC two total viewing 7,530,000?
|
CREATE TABLE table_103084_4 (year INTEGER, bbc_two_total_viewing VARCHAR)
|
SELECT individual_first_name, individual_middle_name, individual_last_name FROM individuals ORDER BY individual_last_name
|
List every individual's first name, middle name and last name in alphabetical order by last name.
|
CREATE TABLE individuals (individual_first_name VARCHAR, individual_middle_name VARCHAR, individual_last_name VARCHAR)
|
SELECT top_mc FROM table_29160596_1 WHERE appearances = 5 AND year_inducted = 2007
|
List all the MCs with 5 appearances who were inducted in 2007?
|
CREATE TABLE table_29160596_1 (top_mc VARCHAR, appearances VARCHAR, year_inducted VARCHAR)
|
SELECT bleeding_time FROM table_14006_1 WHERE platelet_count = "Decreased or unaffected"
|
what's the bleeding time with platelet count being decreased or unaffected
|
CREATE TABLE table_14006_1 (bleeding_time VARCHAR, platelet_count VARCHAR)
|
SELECT date FROM table_name_99 WHERE home = "edmonton oilers"
|
When is Edmonton Oilers in?
|
CREATE TABLE table_name_99 (date VARCHAR, home VARCHAR)
|
SELECT high_rebounds FROM table_name_43 WHERE team = "washington"
|
What is the High rebounds of washington Team?
|
CREATE TABLE table_name_43 (high_rebounds VARCHAR, team VARCHAR)
|
SELECT title FROM table_29436059_1 WHERE no_in_season = 10
|
What is the title of episode 10?
|
CREATE TABLE table_29436059_1 (title VARCHAR, no_in_season VARCHAR)
|
SELECT home_team AS score FROM table_16388506_1 WHERE away_team = "Fremantle"
|
What are the home team scores when fremantle is the away team?
|
CREATE TABLE table_16388506_1 (home_team VARCHAR, away_team VARCHAR)
|
SELECT airport FROM table_name_73 WHERE city = "tokyo" AND icao = "rjtt"
|
Which airport is in Tokyo and has an ICAO of rjtt?
|
CREATE TABLE table_name_73 (airport VARCHAR, city VARCHAR, icao VARCHAR)
|
SELECT margin_of_victory FROM table_name_51 WHERE runner_s__up = "brad faxon"
|
What was the margin of victory over Brad Faxon?
|
CREATE TABLE table_name_51 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
|
SELECT order__number FROM table_12310814_1 WHERE original_artist = "Rickie Lee Jones"
|
What's the order number of the song originally performed by Rickie Lee Jones?
|
CREATE TABLE table_12310814_1 (order__number VARCHAR, original_artist VARCHAR)
|
SELECT T1.Name FROM people AS T1 JOIN perpetrator AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Weight DESC LIMIT 1
|
What is the name of the perpetrator with the biggest weight.
|
CREATE TABLE perpetrator (People_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR, Weight VARCHAR)
|
SELECT score FROM table_name_18 WHERE home_team = "san jose" AND venue = "spartan stadium"
|
What was the score at Spartan Stadium when San Jose was the Home team?
|
CREATE TABLE table_name_18 (score VARCHAR, home_team VARCHAR, venue VARCHAR)
|
SELECT record FROM table_27721131_10 WHERE date = "March 6"
|
What was the game record on March 6?
|
CREATE TABLE table_27721131_10 (record VARCHAR, date VARCHAR)
|
SELECT call_sign FROM table_name_19 WHERE branding = "106.9 the x"
|
What is the Call sign of the Frequency 106.9 the X?
|
CREATE TABLE table_name_19 (call_sign VARCHAR, branding VARCHAR)
|
SELECT COUNT(losses) FROM table_name_11 WHERE draws > 0
|
What is the sum of losses when draws are larger than 0?
|
CREATE TABLE table_name_11 (losses VARCHAR, draws INTEGER)
|
SELECT home FROM table_name_44 WHERE visitor = "nashville"
|
Which Home has a Visitor of nashville?
|
CREATE TABLE table_name_44 (home VARCHAR, visitor VARCHAR)
|
SELECT 2001 FROM table_name_1 WHERE 1996 = "0 / 2"
|
What is 2001, when 1996 is "0 / 2"?
|
CREATE TABLE table_name_1 (Id VARCHAR)
|
SELECT brazil_scorers FROM table_name_5 WHERE result = "w" AND competition = "world cup qualifying" AND date = "february 28, 1954"
|
Which Brazil scorers have a Result of w, and a Competition of world cup qualifying, and a Date of february 28, 1954?
|
CREATE TABLE table_name_5 (brazil_scorers VARCHAR, date VARCHAR, result VARCHAR, competition VARCHAR)
|
SELECT MIN(year) FROM table_name_7 WHERE viewers = "13.7 million"
|
Which Year is the lowest when the Viewers are 13.7 million?
|
CREATE TABLE table_name_7 (year INTEGER, viewers VARCHAR)
|
SELECT COUNT(built) FROM table_1886270_1 WHERE hr_name = "(River Garry)"
|
When (river garry) is the hr name how many builts are there?
|
CREATE TABLE table_1886270_1 (built VARCHAR, hr_name VARCHAR)
|
SELECT tickets_available_since FROM table_name_75 WHERE venue = "halle tony garnier" AND date = "june 15, 2009"
|
How many tickets were available at Halle Tony Garnier on June 15, 2009?
|
CREATE TABLE table_name_75 (tickets_available_since VARCHAR, venue VARCHAR, date VARCHAR)
|
SELECT pat_robertson FROM table_name_43 WHERE bob_dole = "26%" AND pete_du_pont = "0%"
|
When Bob Dole had 26%, and Pete du Pont had 0%, what did Pat Robertson have?
|
CREATE TABLE table_name_43 (pat_robertson VARCHAR, bob_dole VARCHAR, pete_du_pont VARCHAR)
|
SELECT lyricist FROM table_11827596_4 WHERE film_name = "Gopal Krishna" AND co_singer = "Solo"
|
Who was the lyricist for gopal krishna and co singer of solo?
|
CREATE TABLE table_11827596_4 (lyricist VARCHAR, film_name VARCHAR, co_singer VARCHAR)
|
SELECT MIN(no) FROM table_12608427_8 WHERE name = "de Vries"
|
What is the number for De Vries?
|
CREATE TABLE table_12608427_8 (no INTEGER, name VARCHAR)
|
SELECT winner FROM table_18733814_2 WHERE general_classification = "Thomas Löfkvist"
|
When thomas löfkvist is the general classification who is the winner?
|
CREATE TABLE table_18733814_2 (winner VARCHAR, general_classification VARCHAR)
|
SELECT T1.name, T1.num_employees FROM department AS T1 JOIN management AS T2 ON T1.department_id = T2.department_id WHERE T2.temporary_acting = 'Yes'
|
Show the name and number of employees for the departments managed by heads whose temporary acting value is 'Yes'?
|
CREATE TABLE management (department_id VARCHAR, temporary_acting VARCHAR); CREATE TABLE department (name VARCHAR, num_employees VARCHAR, department_id VARCHAR)
|
SELECT athlete FROM table_name_68 WHERE 220 = "o" AND 225 = "o" AND nationality = "germany"
|
Which athlete from Germany has 2.20 of O and a 2.25 of O?
|
CREATE TABLE table_name_68 (athlete VARCHAR, nationality VARCHAR)
|
SELECT COUNT(population__2011_) FROM table_2562572_20 WHERE cyrillic_name_other_names = "Врбас"
|
Name the number of population for врбас
|
CREATE TABLE table_2562572_20 (population__2011_ VARCHAR, cyrillic_name_other_names VARCHAR)
|
SELECT 2011 AS _gdp__ppp__billions_of_usd FROM table_2248784_3 WHERE rank_world = 65
|
Name the 2011 gdp for 65 rank world
|
CREATE TABLE table_2248784_3 (rank_world VARCHAR)
|
SELECT venue FROM table_name_8 WHERE away_team = "st kilda"
|
Which venue has St Kilda as the away team?
|
CREATE TABLE table_name_8 (venue VARCHAR, away_team VARCHAR)
|
SELECT is_3_m1945 FROM table_name_72 WHERE kv_1s_m1942 = "45"
|
What's the IS-3 when the KV-1S is 45?
|
CREATE TABLE table_name_72 (is_3_m1945 VARCHAR, kv_1s_m1942 VARCHAR)
|
SELECT booking_status_code, COUNT(*) FROM Apartment_Bookings GROUP BY booking_status_code
|
Show the booking status code and the corresponding number of bookings.
|
CREATE TABLE Apartment_Bookings (booking_status_code VARCHAR)
|
SELECT COUNT(notes) FROM table_25840200_1 WHERE fight = "Devon Alexander vs. Shawn Porter"
|
How many notes are there for the Devon Alexander vs. Shawn Porter fight?
|
CREATE TABLE table_25840200_1 (notes VARCHAR, fight VARCHAR)
|
SELECT COUNT(top_10) FROM table_name_69 WHERE starts = 7 AND avg_finish < 16.7
|
How many top 10s belong to the team with a start of 7 and an average finish less than 16.7?
|
CREATE TABLE table_name_69 (top_10 VARCHAR, starts VARCHAR, avg_finish VARCHAR)
|
SELECT sample_size FROM table_name_61 WHERE poll_source = "rasmussen reports" AND date_s__administered = "october 13, 2010"
|
How many people participated in the Rasmussen Reports poll on October 13, 2010?
|
CREATE TABLE table_name_61 (sample_size VARCHAR, poll_source VARCHAR, date_s__administered VARCHAR)
|
SELECT tournament FROM table_name_80 WHERE date = "21 may 2006"
|
What tournament was held on 21 May 2006?
|
CREATE TABLE table_name_80 (tournament VARCHAR, date VARCHAR)
|
SELECT assets__billion_$_ FROM table_1682026_2 WHERE company = "Wells Fargo"
|
What are Wells Fargo's assets?
|
CREATE TABLE table_1682026_2 (assets__billion_$_ VARCHAR, company VARCHAR)
|
SELECT mens_singles FROM table_21001903_2 WHERE womens_singles = "Wang Yihan" AND tour = "French Super Series"
|
when womens singles is wang yihan and tour is french super series, what were the men's singles?
|
CREATE TABLE table_21001903_2 (mens_singles VARCHAR, womens_singles VARCHAR, tour VARCHAR)
|
SELECT date FROM table_name_48 WHERE award = "£6,600"
|
What date was the award of £6,600 was given?
|
CREATE TABLE table_name_48 (date VARCHAR, award VARCHAR)
|
SELECT location FROM table_name_65 WHERE round = 3 AND method = "decision"
|
Where was the fight that lasted 3 rounds and was won or loss by a decision?
|
CREATE TABLE table_name_65 (location VARCHAR, round VARCHAR, method VARCHAR)
|
SELECT AVG(draw) FROM table_name_29 WHERE time = "22:29"
|
What is the average draw number of an entrant with a time of 22:29?
|
CREATE TABLE table_name_29 (draw INTEGER, time VARCHAR)
|
SELECT stadium FROM table_name_31 WHERE year > 2012
|
What was the stadium past 2012?
|
CREATE TABLE table_name_31 (stadium VARCHAR, year INTEGER)
|
SELECT name FROM table_name_67 WHERE location = "bayswater"
|
What Name has the Location of Bayswater?
|
CREATE TABLE table_name_67 (name VARCHAR, location VARCHAR)
|
SELECT AVG(crowd) FROM table_name_67 WHERE date = "saturday, 29 january" AND away_team = "collingwood"
|
How many Crowd that has a Date on saturday, 29 january and an Away team of collingwood?
|
CREATE TABLE table_name_67 (crowd INTEGER, date VARCHAR, away_team VARCHAR)
|
SELECT opponent_team FROM table_name_84 WHERE scorers = "jong-a-pin 19'( o.g. ) , gattuso 23' , inzaghi 69'"
|
Who was the opposing team when the scorers were jong-a-pin 19'( o.g. ) , gattuso 23' , inzaghi 69'?
|
CREATE TABLE table_name_84 (opponent_team VARCHAR, scorers VARCHAR)
|
SELECT years_in_orlando FROM table_name_16 WHERE school_club_team = "seattle"
|
Which Years in Orlando has a School/Club Team of seattle?
|
CREATE TABLE table_name_16 (years_in_orlando VARCHAR, school_club_team VARCHAR)
|
SELECT team FROM table_27756164_11 WHERE high_assists = "Darren Collison (7)"
|
What was the team where Darren Collison (7) scored high assists?
|
CREATE TABLE table_27756164_11 (team VARCHAR, high_assists VARCHAR)
|
SELECT COUNT(early_chalcolithic) FROM table_23537091_1 WHERE ubaid_period_in_mesopotamia = "Hittite Middle Kingdom , New Kingdom of Egypt"
|
When hittite middle kingdom , new kingdom of egypt is the ubaid period in mesopotamia how many early chalcolithics are there?
|
CREATE TABLE table_23537091_1 (early_chalcolithic VARCHAR, ubaid_period_in_mesopotamia VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.