question
stringlengths 17
201
| answer
stringlengths 21
400
| context
stringlengths 32
286
|
|---|---|---|
What is the sum of the value "League Cup", when the Total is less than 1, and when the League is less than 0?
|
SELECT SUM(league) AS Cup FROM table_name_7 WHERE total < 1 AND league < 0
|
CREATE TABLE table_name_7 (league INTEGER, total VARCHAR)
|
How many different provinces is Baghaberd the center of?
|
SELECT COUNT(province__ashkharh_) FROM table_23887174_1 WHERE center = "Baghaberd"
|
CREATE TABLE table_23887174_1 (province__ashkharh_ VARCHAR, center VARCHAR)
|
What is Dennis Kucinich, when % of All is "53%"?
|
SELECT dennis_kucinich FROM table_name_38 WHERE _percentage_of_all = "53%"
|
CREATE TABLE table_name_38 (dennis_kucinich VARCHAR, _percentage_of_all VARCHAR)
|
What's the series number of the episode originally viewed by 4.1 million people and written by Douglas Lieblein?
|
SELECT no_in_series FROM table_18055005_1 WHERE viewers__millions_ = "4.1" AND written_by = "Douglas Lieblein"
|
CREATE TABLE table_18055005_1 (no_in_series VARCHAR, viewers__millions_ VARCHAR, written_by VARCHAR)
|
What was the score for Tie no. 6?
|
SELECT score FROM table_name_27 WHERE tie_no = "6"
|
CREATE TABLE table_name_27 (score VARCHAR, tie_no VARCHAR)
|
What high assists have uic pavilion 3,520 as the location/attendance?
|
SELECT high_assists FROM table_name_31 WHERE location_attendance = "uic pavilion 3,520"
|
CREATE TABLE table_name_31 (high_assists VARCHAR, location_attendance VARCHAR)
|
How many no votes did North Dakota have?
|
SELECT no_vote FROM table_name_48 WHERE state = "north dakota"
|
CREATE TABLE table_name_48 (no_vote VARCHAR, state VARCHAR)
|
How many centerfolds were in the 9-98 issue?
|
SELECT COUNT(centerfold_model) FROM table_1566850_9 WHERE date = "9-98"
|
CREATE TABLE table_1566850_9 (centerfold_model VARCHAR, date VARCHAR)
|
How many laps were ridden in the race that had a Time/Retired of +37.351?
|
SELECT COUNT(laps) FROM table_name_24 WHERE time_retired = "+37.351"
|
CREATE TABLE table_name_24 (laps VARCHAR, time_retired VARCHAR)
|
What is the Years of the player with Jersey Number(s) of 44?
|
SELECT years FROM table_name_73 WHERE jersey_number_s_ = 44
|
CREATE TABLE table_name_73 (years VARCHAR, jersey_number_s_ VARCHAR)
|
What's the ladder position when team is less than 10 and the Finals qualifications were DNQ?
|
SELECT final_ladder_position FROM table_name_75 WHERE finals_qualification = "dnq" AND teams < 10
|
CREATE TABLE table_name_75 (final_ladder_position VARCHAR, finals_qualification VARCHAR, teams VARCHAR)
|
Which High rebounds has a Game of 76?
|
SELECT high_rebounds FROM table_name_97 WHERE game = 76
|
CREATE TABLE table_name_97 (high_rebounds VARCHAR, game VARCHAR)
|
What Film Festival had participants/recipients of Isao Tomita?
|
SELECT film_festival FROM table_26282750_1 WHERE participants_recipients = "Isao Tomita"
|
CREATE TABLE table_26282750_1 (film_festival VARCHAR, participants_recipients VARCHAR)
|
Name the 2010 for 2008 of 1r and tournament of us open
|
SELECT 2010 FROM table_name_33 WHERE 2008 = "1r" AND 2011 = "1r" AND tournament = "us open"
|
CREATE TABLE table_name_33 (tournament VARCHAR)
|
What was Melbourne's score as the home team?
|
SELECT home_team AS score FROM table_name_16 WHERE home_team = "melbourne"
|
CREATE TABLE table_name_16 (home_team VARCHAR)
|
What position does krylja sovetov (russia) play?
|
SELECT position FROM table_2781227_9 WHERE college_junior_club_team = "Krylja Sovetov (Russia)"
|
CREATE TABLE table_2781227_9 (position VARCHAR, college_junior_club_team VARCHAR)
|
What is who-two when you two is ngipelngu?
|
SELECT who_two FROM table_1015914_24 WHERE you_two = "ngipelngu"
|
CREATE TABLE table_1015914_24 (who_two VARCHAR, you_two VARCHAR)
|
What is the low point total when there are over 5 games?
|
SELECT MIN(points) FROM table_name_56 WHERE games > 5
|
CREATE TABLE table_name_56 (points INTEGER, games INTEGER)
|
what is the lowest position of brendan sole
|
SELECT MAX(pos) FROM table_20090682_4 WHERE driver = "Brendan Sole"
|
CREATE TABLE table_20090682_4 (pos INTEGER, driver VARCHAR)
|
What league is Sun Source in?
|
SELECT league_division FROM table_name_6 WHERE club = "sun source"
|
CREATE TABLE table_name_6 (league_division VARCHAR, club VARCHAR)
|
Tell me the lowest height for class of hewitt and prom less than 148
|
SELECT MIN(height__m_) FROM table_name_37 WHERE class = "hewitt" AND prom__m_ < 148
|
CREATE TABLE table_name_37 (height__m_ INTEGER, class VARCHAR, prom__m_ VARCHAR)
|
What season has a regionalliga süd league, a 1-0 home, and an away of 2-3?
|
SELECT season FROM table_name_38 WHERE league = "regionalliga süd" AND home = "1-0" AND away = "2-3"
|
CREATE TABLE table_name_38 (season VARCHAR, away VARCHAR, league VARCHAR, home VARCHAR)
|
How large was the crowd when Carlton was the away team?
|
SELECT COUNT(crowd) FROM table_name_26 WHERE away_team = "carlton"
|
CREATE TABLE table_name_26 (crowd VARCHAR, away_team VARCHAR)
|
What is the weekly rank of the episode with more than 7.14mil viewers, a nightly rank of 5, and a rating/share of 2.9/10?
|
SELECT rank__week_ FROM table_name_73 WHERE viewers__millions_ > 7.14 AND rank__night_ = "5" AND rating / SHARE(18 - 49) = 2.9 / 10
|
CREATE TABLE table_name_73 (rank__week_ VARCHAR, viewers__millions_ VARCHAR, rank__night_ VARCHAR, rating VARCHAR)
|
Show names for all aircraft with at least two flights.
|
SELECT T2.name FROM Flight AS T1 JOIN Aircraft AS T2 ON T1.aid = T2.aid GROUP BY T1.aid HAVING COUNT(*) >= 2
|
CREATE TABLE Aircraft (name VARCHAR, aid VARCHAR); CREATE TABLE Flight (aid VARCHAR)
|
What were the total number of 2012 births for the January–December 2012 Tver Oblast region?
|
SELECT MIN(birth_2012) FROM table_25703_2 WHERE january_december_2012 = "Tver Oblast"
|
CREATE TABLE table_25703_2 (birth_2012 INTEGER, january_december_2012 VARCHAR)
|
Which nationality has a Ship of minteh?
|
SELECT nationality FROM table_name_62 WHERE ship = "minteh"
|
CREATE TABLE table_name_62 (nationality VARCHAR, ship VARCHAR)
|
What is the average number of starts when the money list rank is 108 and the rank in the top 25 is greater than 4?
|
SELECT AVG(starts) FROM table_name_58 WHERE money_list_rank = "108" AND top_25 > 4
|
CREATE TABLE table_name_58 (starts INTEGER, money_list_rank VARCHAR, top_25 VARCHAR)
|
What is the after for the player kevin streelman?
|
SELECT after FROM table_28498999_3 WHERE player = "Kevin Streelman"
|
CREATE TABLE table_28498999_3 (after VARCHAR, player VARCHAR)
|
Tell me the sum of closed for city of pittsburgh and capacity larger than 59,000
|
SELECT SUM(closed) FROM table_name_73 WHERE city = "pittsburgh" AND capacity > 59 OFFSET 000
|
CREATE TABLE table_name_73 (closed INTEGER, city VARCHAR, capacity VARCHAR)
|
Timsah arena is in what country?
|
SELECT country FROM table_name_32 WHERE stadium = "timsah arena"
|
CREATE TABLE table_name_32 (country VARCHAR, stadium VARCHAR)
|
Avg/G that has a GP-GS of 13–13, and a Effic smaller than 114.23 has what total of numbers?
|
SELECT COUNT(avg_g) FROM table_name_82 WHERE gp_gs = "13–13" AND effic < 114.23
|
CREATE TABLE table_name_82 (avg_g VARCHAR, gp_gs VARCHAR, effic VARCHAR)
|
What is Tournament, when 2003 is "A"?
|
SELECT tournament FROM table_name_90 WHERE 2003 = "a"
|
CREATE TABLE table_name_90 (tournament VARCHAR)
|
How many gold medals for the school with less than 1 total?
|
SELECT COUNT(gold_medals) FROM table_name_43 WHERE total_medals < 1
|
CREATE TABLE table_name_43 (gold_medals VARCHAR, total_medals INTEGER)
|
Who is the manager for the fc inter club?
|
SELECT manager FROM table_29250534_1 WHERE club = "FC Inter"
|
CREATE TABLE table_29250534_1 (manager VARCHAR, club VARCHAR)
|
What was the record for the game on November 28 when the decision was Backstrom?
|
SELECT record FROM table_name_69 WHERE decision = "backstrom" AND date = "november 28"
|
CREATE TABLE table_name_69 (record VARCHAR, decision VARCHAR, date VARCHAR)
|
What is the total points for the tean with 8 losses?
|
SELECT COUNT(points) FROM table_13015539_1 WHERE lost = 8
|
CREATE TABLE table_13015539_1 (points VARCHAR, lost VARCHAR)
|
Which Bleeding has a Condition of congenital afibrinogenemia?
|
SELECT bleeding_time FROM table_name_75 WHERE condition = "congenital afibrinogenemia"
|
CREATE TABLE table_name_75 (bleeding_time VARCHAR, condition VARCHAR)
|
How many caps figures are there for Norwich City, Coventry City?
|
SELECT COUNT(cap_s_) FROM table_28286776_52 WHERE club_s_ = "Norwich City, Coventry City"
|
CREATE TABLE table_28286776_52 (cap_s_ VARCHAR, club_s_ VARCHAR)
|
What is the name of department where has the smallest number of professors?
|
SELECT T2.dept_name FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.dept_code ORDER BY COUNT(*) LIMIT 1
|
CREATE TABLE professor (dept_code VARCHAR); CREATE TABLE department (dept_name VARCHAR, dept_code VARCHAR)
|
What is the average number of silver medals for countries with 0 gold and rank under 3?
|
SELECT AVG(silver) FROM table_name_73 WHERE gold = 0 AND rank < 3
|
CREATE TABLE table_name_73 (silver INTEGER, gold VARCHAR, rank VARCHAR)
|
What was the cargo value in 2004 for ship size?
|
SELECT 2004 FROM table_name_13 WHERE ship_size = "ship size"
|
CREATE TABLE table_name_13 (ship_size VARCHAR)
|
Which Role has a First US National Tour of roger bart?
|
SELECT role FROM table_name_19 WHERE first_us_national_tour = "roger bart"
|
CREATE TABLE table_name_19 (role VARCHAR, first_us_national_tour VARCHAR)
|
What is the Place 2 Player?
|
SELECT player FROM table_name_1 WHERE place = "2"
|
CREATE TABLE table_name_1 (player VARCHAR, place VARCHAR)
|
Which gatchaman has eagle riders as lukan?
|
SELECT gatchaman FROM table_17480471_3 WHERE eagle_riders = "Lukan"
|
CREATE TABLE table_17480471_3 (gatchaman VARCHAR, eagle_riders VARCHAR)
|
What was the train destination when it has a calling at Boston, Sleaford, Nottingham Victoria?
|
SELECT going_to FROM table_18365784_3 WHERE calling_at = "Boston, Sleaford, Nottingham Victoria"
|
CREATE TABLE table_18365784_3 (going_to VARCHAR, calling_at VARCHAR)
|
What is the frequency for the station with the branding of 94dot3 home radio Palawan?
|
SELECT frequency FROM table_name_74 WHERE branding = "94dot3 home radio palawan"
|
CREATE TABLE table_name_74 (frequency VARCHAR, branding VARCHAR)
|
Find the names of the top 3 departments that provide the largest amount of courses?
|
SELECT dept_name FROM course GROUP BY dept_name ORDER BY COUNT(*) DESC LIMIT 3
|
CREATE TABLE course (dept_name VARCHAR)
|
What is the lowest number of points scored when there were 1,500 in attendance?
|
SELECT MIN(points) FROM table_name_50 WHERE attendance = "1,500"
|
CREATE TABLE table_name_50 (points INTEGER, attendance VARCHAR)
|
what is the total number of record where streak is l2 and leading scorer is roy : 23
|
SELECT COUNT(record) FROM table_11964047_5 WHERE streak = "L2" AND leading_scorer = "Roy : 23"
|
CREATE TABLE table_11964047_5 (record VARCHAR, streak VARCHAR, leading_scorer VARCHAR)
|
What is the least amount of silver for Italy with a total less than 5?
|
SELECT MIN(silver) FROM table_name_83 WHERE nation = "italy" AND total < 5
|
CREATE TABLE table_name_83 (silver INTEGER, nation VARCHAR, total VARCHAR)
|
What is the home teams score at Victoria Park?
|
SELECT home_team AS score FROM table_name_31 WHERE venue = "victoria park"
|
CREATE TABLE table_name_31 (home_team VARCHAR, venue VARCHAR)
|
What position does the player with a first round score of 35.7 play?
|
SELECT pos FROM table_name_21 WHERE first_round = "35.7"
|
CREATE TABLE table_name_21 (pos VARCHAR, first_round VARCHAR)
|
What position did the player from the saskatchewan roughriders (via toronto) play?
|
SELECT position FROM table_name_31 WHERE cfl_team = "saskatchewan roughriders (via toronto)"
|
CREATE TABLE table_name_31 (position VARCHAR, cfl_team VARCHAR)
|
Which Time has Laps smaller than 28, and a Rider of nicky hayden?
|
SELECT time FROM table_name_40 WHERE laps < 28 AND rider = "nicky hayden"
|
CREATE TABLE table_name_40 (time VARCHAR, laps VARCHAR, rider VARCHAR)
|
For what episode was the rating/share for 18-49 at 2.8/8
|
SELECT episode FROM table_25391981_20 WHERE rating / SHARE(18 AS –49) = 2.8 / 8
|
CREATE TABLE table_25391981_20 (episode VARCHAR, rating VARCHAR)
|
What are all distinct country for artists?
|
SELECT DISTINCT country FROM artist
|
CREATE TABLE artist (country VARCHAR)
|
Show all product sizes.
|
SELECT DISTINCT product_size FROM Products
|
CREATE TABLE Products (product_size VARCHAR)
|
What is Package/Option, when Television Service is Sky Inside?
|
SELECT package_option FROM table_name_74 WHERE television_service = "sky inside"
|
CREATE TABLE table_name_74 (package_option VARCHAR, television_service VARCHAR)
|
What is the Position of the Player from Temple Hills, MD?
|
SELECT position FROM table_name_86 WHERE home_town = "temple hills, md"
|
CREATE TABLE table_name_86 (position VARCHAR, home_town VARCHAR)
|
What was the attendance of the match with motagua as the home team?
|
SELECT AVG(attendance) FROM table_name_51 WHERE home = "motagua"
|
CREATE TABLE table_name_51 (attendance INTEGER, home VARCHAR)
|
How many bronzes have a total less than 11, with 11 as the rank, and a gold less than 1?
|
SELECT COUNT(bronze) FROM table_name_81 WHERE total < "11" AND rank = "11" AND gold < 1
|
CREATE TABLE table_name_81 (bronze VARCHAR, gold VARCHAR, total VARCHAR, rank VARCHAR)
|
Game time of 2nd quarter (0:00), and a Date of november 8, 1971 has how many average yards?
|
SELECT AVG(yards) FROM table_name_2 WHERE game_time = "2nd quarter (0:00)" AND date = "november 8, 1971"
|
CREATE TABLE table_name_2 (yards INTEGER, game_time VARCHAR, date VARCHAR)
|
What was North Melbourne's score when they were the home team?
|
SELECT away_team AS score FROM table_name_52 WHERE away_team = "north melbourne"
|
CREATE TABLE table_name_52 (away_team VARCHAR)
|
Who is the second on the North America team for which Cathy Overton-Clapham the third?
|
SELECT second FROM table_name_10 WHERE team = "north america" AND third = "cathy overton-clapham"
|
CREATE TABLE table_name_10 (second VARCHAR, team VARCHAR, third VARCHAR)
|
What is the Label of the CD released in Germany on June 6, 2005?
|
SELECT label FROM table_name_8 WHERE date = "june 6, 2005" AND region = "germany" AND format = "cd"
|
CREATE TABLE table_name_8 (label VARCHAR, format VARCHAR, date VARCHAR, region VARCHAR)
|
what was the attendance for a home venue and a w 3-0 result?
|
SELECT AVG(attendance) FROM table_name_34 WHERE venue = "home" AND result = "w 3-0"
|
CREATE TABLE table_name_34 (attendance INTEGER, venue VARCHAR, result VARCHAR)
|
What is the FIPS code for the municipality that has an area of 114.76 sq mi (297.23 sq km) and had a 2010 population of less than 166,327?
|
SELECT AVG(fips_code) FROM table_name_70 WHERE area = "114.76 sq mi (297.23 sq km)" AND population__2010_ < 166 OFFSET 327
|
CREATE TABLE table_name_70 (fips_code INTEGER, area VARCHAR, population__2010_ VARCHAR)
|
What record has detroit as the home and mtl. maroons as the visitor?
|
SELECT record FROM table_name_99 WHERE home = "detroit" AND visitor = "mtl. maroons"
|
CREATE TABLE table_name_99 (record VARCHAR, home VARCHAR, visitor VARCHAR)
|
what's the the mole with airdate being 5 january 2012
|
SELECT COUNT(the_mole) FROM table_13036251_1 WHERE airdate = "5 January 2012"
|
CREATE TABLE table_13036251_1 (the_mole VARCHAR, airdate VARCHAR)
|
What week has December 19, 2004 as the date?
|
SELECT week FROM table_name_33 WHERE date = "december 19, 2004"
|
CREATE TABLE table_name_33 (week VARCHAR, date VARCHAR)
|
What is the highest lane with a rank larger than 2 in Guyana?
|
SELECT MAX(lane) FROM table_name_31 WHERE rank > 2 AND nationality = "guyana"
|
CREATE TABLE table_name_31 (lane INTEGER, rank VARCHAR, nationality VARCHAR)
|
Who was the contstructor of the car having a grid of 20?
|
SELECT constructor FROM table_name_66 WHERE grid = "20"
|
CREATE TABLE table_name_66 (constructor VARCHAR, grid VARCHAR)
|
What title did the film from Colombia use in its nomination?
|
SELECT film_title_used_in_nomination FROM table_name_33 WHERE country = "colombia"
|
CREATE TABLE table_name_33 (film_title_used_in_nomination VARCHAR, country VARCHAR)
|
What is the score for the date of December 7?
|
SELECT score FROM table_23286112_7 WHERE date = "December 7"
|
CREATE TABLE table_23286112_7 (score VARCHAR, date VARCHAR)
|
List the name of tracks belongs to genre Rock or genre Jazz.
|
SELECT T2.name FROM genres AS T1 JOIN tracks AS T2 ON T1.id = T2.genre_id WHERE T1.name = "Rock" OR T1.name = "Jazz"
|
CREATE TABLE genres (id VARCHAR, name VARCHAR); CREATE TABLE tracks (name VARCHAR, genre_id VARCHAR)
|
What is the Nation when there is a total less than 27, gold is less than 1, and bronze is more than 1?
|
SELECT nation FROM table_name_62 WHERE total < 27 AND gold < 1 AND bronze > 1
|
CREATE TABLE table_name_62 (nation VARCHAR, bronze VARCHAR, total VARCHAR, gold VARCHAR)
|
What are the different ages of editors? Show each age along with the number of editors of that age.
|
SELECT Age, COUNT(*) FROM editor GROUP BY Age
|
CREATE TABLE editor (Age VARCHAR)
|
Which area 2006 km² has an area 1996 km² smaller than 17.31?
|
SELECT MAX(area_2006_km²) FROM table_name_38 WHERE area_1996_km² < 17.31
|
CREATE TABLE table_name_38 (area_2006_km² INTEGER, area_1996_km² INTEGER)
|
What is the least ties when they played less than 14 games, and a lost less than 8 of them?
|
SELECT MIN(draw) FROM table_name_7 WHERE played < 14 AND lost < 8
|
CREATE TABLE table_name_7 (draw INTEGER, played VARCHAR, lost VARCHAR)
|
Name the candidates for texas 20
|
SELECT candidates FROM table_1341690_43 WHERE district = "Texas 20"
|
CREATE TABLE table_1341690_43 (candidates VARCHAR, district VARCHAR)
|
What is the venue of the team race that was after 2008?
|
SELECT venue FROM table_name_23 WHERE year > 2008 AND notes = "team"
|
CREATE TABLE table_name_23 (venue VARCHAR, year VARCHAR, notes VARCHAR)
|
What is the sum of the weeks that games occured on october 21, 1974 and less than 50,623 fans attended?
|
SELECT SUM(week) FROM table_name_20 WHERE date = "october 21, 1974" AND attendance < 50 OFFSET 623
|
CREATE TABLE table_name_20 (week INTEGER, date VARCHAR, attendance VARCHAR)
|
What is the earliest first elected for district georgia 1?
|
SELECT MIN(first_elected) FROM table_1341640_11 WHERE district = "Georgia 1"
|
CREATE TABLE table_1341640_11 (first_elected INTEGER, district VARCHAR)
|
What is the two-mora word with a low tone accented mora and a gloss of /˩kusuꜜri/ [kɯ̀sɯ́ɽì]?
|
SELECT two_mora_word FROM table_name_53 WHERE NOT accented_mora = "low tone" AND gloss = "/˩kusuꜜri/ [kɯ̀sɯ́ɽì]"
|
CREATE TABLE table_name_53 (two_mora_word VARCHAR, gloss VARCHAR, accented_mora VARCHAR)
|
what is the name of the episode whose writer is philippe browning?
|
SELECT title FROM table_2791668_1 WHERE written_by = "Philippe Browning"
|
CREATE TABLE table_2791668_1 (title VARCHAR, written_by VARCHAR)
|
Who is the color commentator in 2008?
|
SELECT color_commentator_s_ FROM table_name_16 WHERE year = 2008
|
CREATE TABLE table_name_16 (color_commentator_s_ VARCHAR, year VARCHAR)
|
What is the number of jews where the rank is 1?
|
SELECT COUNT(number_of_jews__wjc_) FROM table_1131183_2 WHERE rank__arda_ = 1
|
CREATE TABLE table_1131183_2 (number_of_jews__wjc_ VARCHAR, rank__arda_ VARCHAR)
|
What batting style does player Shahid Afridi have?
|
SELECT batting_style FROM table_name_88 WHERE player = "shahid afridi"
|
CREATE TABLE table_name_88 (batting_style VARCHAR, player VARCHAR)
|
Name the total number of rank for percentage change yoy 13.1%
|
SELECT COUNT(national_rank) FROM table_27956_3 WHERE percentage_change_yoy = "13.1%"
|
CREATE TABLE table_27956_3 (national_rank VARCHAR, percentage_change_yoy VARCHAR)
|
Where was d: ~100nm, l: 1 μm geometry researched?
|
SELECT researched_at FROM table_30057479_1 WHERE geometry = "D: ~100nm, L: 1 μm"
|
CREATE TABLE table_30057479_1 (researched_at VARCHAR, geometry VARCHAR)
|
How many networks are there whose version of the shows includes judges tba and the presenter is Arbana Osmani?
|
SELECT COUNT(network) FROM table_28190363_1 WHERE judges = "TBA" AND presenter_s_ = "Arbana Osmani"
|
CREATE TABLE table_28190363_1 (network VARCHAR, judges VARCHAR, presenter_s_ VARCHAR)
|
what is the total sack for mike green when fumr is less than 0?
|
SELECT SUM(sack) FROM table_name_40 WHERE player = "mike green" AND fumr < 0
|
CREATE TABLE table_name_40 (sack INTEGER, player VARCHAR, fumr VARCHAR)
|
Which Label has a Country of canada, and a Format of cd/digital download?
|
SELECT label FROM table_name_53 WHERE country = "canada" AND format = "cd/digital download"
|
CREATE TABLE table_name_53 (label VARCHAR, country VARCHAR, format VARCHAR)
|
How much is the crowd attending at colonial stadium where Hawthorn plays?
|
SELECT crowd FROM table_name_9 WHERE ground = "colonial stadium" AND home_team = "hawthorn"
|
CREATE TABLE table_name_9 (crowd VARCHAR, ground VARCHAR, home_team VARCHAR)
|
What model number uses standard voltage socket?
|
SELECT model_number FROM table_name_48 WHERE socket = "standard voltage"
|
CREATE TABLE table_name_48 (model_number VARCHAR, socket VARCHAR)
|
What's the highest pick for SS position?
|
SELECT MAX(pick) FROM table_name_76 WHERE position = "ss"
|
CREATE TABLE table_name_76 (pick INTEGER, position VARCHAR)
|
How many silver medals had a rank of 3 with bronze larger than 0?
|
SELECT COUNT(silver) FROM table_name_90 WHERE rank = 3 AND bronze > 0
|
CREATE TABLE table_name_90 (silver VARCHAR, rank VARCHAR, bronze VARCHAR)
|
Where the Vancouver Grizzlies is the awards, what is the conference?
|
SELECT conference FROM table_name_29 WHERE awards = "vancouver grizzlies"
|
CREATE TABLE table_name_29 (conference VARCHAR, awards VARCHAR)
|
Who was the 20 Questions section aimed at when the Interview Subject was Camille Paglia?
|
SELECT 20 AS _questions FROM table_name_97 WHERE interview_subject = "camille paglia"
|
CREATE TABLE table_name_97 (interview_subject VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.