question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
How fast is the coaster that is 163 feet tall | CREATE TABLE table_2665085_1 (speed__mph_ VARCHAR, height__ft_ VARCHAR) | SELECT speed__mph_ FROM table_2665085_1 WHERE height__ft_ = 163 |
Name the awardee for best editing | CREATE TABLE table_24446718_7 (awardee_s_ VARCHAR, name_of_award VARCHAR) | SELECT awardee_s_ FROM table_24446718_7 WHERE name_of_award = "Best Editing" |
What is the winning score of standard register ping tournament, which has Kelly Robbins as the runner-up? | CREATE TABLE table_name_46 (winning_score VARCHAR, tournament VARCHAR, runner_s__up VARCHAR) | SELECT winning_score FROM table_name_46 WHERE tournament = "standard register ping" AND runner_s__up = "kelly robbins" |
How many games are shown for the game where andre iguodala (9) had the high rebounds? | CREATE TABLE table_27698941_6 (game VARCHAR, high_rebounds VARCHAR) | SELECT COUNT(game) FROM table_27698941_6 WHERE high_rebounds = "Andre Iguodala (9)" |
What district is eugene worley from? | CREATE TABLE table_1342233_43 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_1342233_43 WHERE incumbent = "Eugene Worley" |
What day in February was the team 17-29-7? | CREATE TABLE table_27539535_7 (february INTEGER, record VARCHAR) | SELECT MAX(february) FROM table_27539535_7 WHERE record = "17-29-7" |
what is the years when the soap opera is glenroe and the actor is mick lally? | CREATE TABLE table_name_21 (years VARCHAR, soap_opera VARCHAR, actor VARCHAR) | SELECT years FROM table_name_21 WHERE soap_opera = "glenroe" AND actor = "mick lally" |
What is the label of release we are the rage with a cd format? | CREATE TABLE table_name_28 (label VARCHAR, format VARCHAR, release VARCHAR) | SELECT label FROM table_name_28 WHERE format = "cd" AND release = "we are the rage" |
What shows as the First US Tour Cast when the Original Broadway Cast was Sarah Bolt? | CREATE TABLE table_name_16 (first_us_tour_cast VARCHAR, original_broadway_cast VARCHAR) | SELECT first_us_tour_cast FROM table_name_16 WHERE original_broadway_cast = "sarah bolt" |
Name the result for pennsylvania 8 | CREATE TABLE table_2668352_14 (result VARCHAR, district VARCHAR) | SELECT result FROM table_2668352_14 WHERE district = "Pennsylvania 8" |
How many goals Olimpia recorded for 32 matches? | CREATE TABLE table_13688489_1 (goals_olimpia VARCHAR, matches VARCHAR) | SELECT COUNT(goals_olimpia) FROM table_13688489_1 WHERE matches = 32 |
Name the score for chicago bulls | CREATE TABLE table_22654073_7 (score VARCHAR, team VARCHAR) | SELECT score FROM table_22654073_7 WHERE team = "Chicago Bulls" |
Opponents of sebastián decoud santiago giraldo had what surface? | CREATE TABLE table_name_71 (surface VARCHAR, opponents VARCHAR) | SELECT surface FROM table_name_71 WHERE opponents = "sebastián decoud santiago giraldo" |
Which Tournament has an Outcome of winner, and a Surface of hard (i)? | CREATE TABLE table_name_4 (tournament VARCHAR, outcome VARCHAR, surface VARCHAR) | SELECT tournament FROM table_name_4 WHERE outcome = "winner" AND surface = "hard (i)" |
Which District has a First elected larger than 1858? | CREATE TABLE table_name_21 (district VARCHAR, first_elected INTEGER) | SELECT district FROM table_name_21 WHERE first_elected > 1858 |
What is the location for the office whose term ended December 2, 1976 | CREATE TABLE table_1602620_1 (location VARCHAR, term_ended VARCHAR) | SELECT location FROM table_1602620_1 WHERE term_ended = "December 2, 1976" |
Find the first names of all the teachers that teach in classroom 110. | CREATE TABLE teachers (firstname VARCHAR, classroom VARCHAR) | SELECT firstname FROM teachers WHERE classroom = 110 |
What was the score at Bernardo O'Higgins Cup on May 7, 1961? | CREATE TABLE table_name_94 (score VARCHAR, competition VARCHAR, date VARCHAR) | SELECT score FROM table_name_94 WHERE competition = "bernardo o'higgins cup" AND date = "may 7, 1961" |
How many distinct companies are there? | CREATE TABLE entrepreneur (Company VARCHAR) | SELECT COUNT(DISTINCT Company) FROM entrepreneur |
Name the lowest Time of jamaica with a Lane larger than 4 and a Rank smaller than 1? | CREATE TABLE table_name_66 (time INTEGER, rank VARCHAR, nationality VARCHAR, lane VARCHAR) | SELECT MIN(time) FROM table_name_66 WHERE nationality = "jamaica" AND lane > 4 AND rank < 1 |
How much Played has an Against larger than 37, and a Lost of 15, and Points smaller than 11? | CREATE TABLE table_name_63 (played INTEGER, points VARCHAR, against VARCHAR, lost VARCHAR) | SELECT SUM(played) FROM table_name_63 WHERE against > 37 AND lost = 15 AND points < 11 |
What is the lowest total of player tommy ring, who has a rank greater than 1? | CREATE TABLE table_name_62 (total INTEGER, player VARCHAR, rank VARCHAR) | SELECT MIN(total) FROM table_name_62 WHERE player = "tommy ring" AND rank > 1 |
How many dates of polls occur in the Madhya Pradesh state? | CREATE TABLE table_15329030_1 (date_of_polls VARCHAR, state VARCHAR) | SELECT COUNT(date_of_polls) FROM table_15329030_1 WHERE state = "Madhya Pradesh" |
What is the start address when the network number bit field is 16? | CREATE TABLE table_name_88 (start_address VARCHAR, size_of_network_number_bit_field VARCHAR) | SELECT start_address FROM table_name_88 WHERE size_of_network_number_bit_field = "16" |
Who was the home team for tie number 16? | CREATE TABLE table_name_40 (home_team VARCHAR, tie_no VARCHAR) | SELECT home_team FROM table_name_40 WHERE tie_no = "16" |
What is McCains percent when Obamas is 39.13% | CREATE TABLE table_20688030_1 (mccain_number VARCHAR, obama_percentage VARCHAR) | SELECT COUNT(mccain_number) FROM table_20688030_1 WHERE obama_percentage = "39.13%" |
Tell me the home team score for richmond home team | CREATE TABLE table_name_87 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_87 WHERE home_team = "richmond" |
Which players have made a total of 12 extra points? | CREATE TABLE table_14342592_5 (player VARCHAR, extra_points VARCHAR) | SELECT player FROM table_14342592_5 WHERE extra_points = 12 |
Who had the high assists when the record was 33–15? | CREATE TABLE table_name_6 (high_assists VARCHAR, record VARCHAR) | SELECT high_assists FROM table_name_6 WHERE record = "33–15" |
Which Mac OSX's GNU/Linux was yes when Windows was no? | CREATE TABLE table_name_44 (mac_os_x VARCHAR, gnu_linux VARCHAR, windows VARCHAR) | SELECT mac_os_x FROM table_name_44 WHERE gnu_linux = "yes" AND windows = "no" |
What is the frequency of trains numbered 12671/12672? | CREATE TABLE table_21716139_1 (frequency VARCHAR, train_no VARCHAR) | SELECT frequency FROM table_21716139_1 WHERE train_no = "12671/12672" |
What is the NFL club with a pick less than 74 and a round greater than 2? | CREATE TABLE table_name_39 (nfl_club VARCHAR, pick VARCHAR, round VARCHAR) | SELECT nfl_club FROM table_name_39 WHERE pick < 74 AND round > 2 |
in april 13 what was the streak | CREATE TABLE table_30047613_12 (streak VARCHAR, date VARCHAR) | SELECT streak FROM table_30047613_12 WHERE date = "April 13" |
Name the year with finish of 12th and record of 23-36 | CREATE TABLE table_name_14 (year VARCHAR, finish VARCHAR, record VARCHAR) | SELECT year FROM table_name_14 WHERE finish = "12th" AND record = "23-36" |
What is the maximum and minimum grade point of students who live in NYC? | CREATE TABLE ENROLLED_IN (Grade VARCHAR, StuID VARCHAR); CREATE TABLE STUDENT (city_code VARCHAR, StuID VARCHAR); CREATE TABLE GRADECONVERSION (gradepoint INTEGER, lettergrade VARCHAR) | SELECT MAX(T2.gradepoint), MIN(T2.gradepoint) FROM ENROLLED_IN AS T1 JOIN GRADECONVERSION AS T2 JOIN STUDENT AS T3 ON T1.Grade = T2.lettergrade AND T1.StuID = T3.StuID WHERE T3.city_code = "NYC" |
Name the period active for enya | CREATE TABLE table_name_42 (period_active VARCHAR, artist VARCHAR) | SELECT period_active FROM table_name_42 WHERE artist = "enya" |
Who did the play-by-play when the pregame host was Brian Williams and the sideline reporters were Steve Armitage and Brenda Irving? | CREATE TABLE table_17628022_2 (play_by_play VARCHAR, pregame_host VARCHAR, sideline_reporters VARCHAR) | SELECT play_by_play FROM table_17628022_2 WHERE pregame_host = "Brian Williams" AND sideline_reporters = "Steve Armitage and Brenda Irving" |
Who won the Senior British Open when Hale Irwin (3/7) won the Senior PGA Championship? | CREATE TABLE table_name_57 (senior_british_open VARCHAR, senior_pga_championship VARCHAR) | SELECT senior_british_open FROM table_name_57 WHERE senior_pga_championship = "hale irwin (3/7)" |
What round was jerry corcoran drafted in as pick number 114? | CREATE TABLE table_name_63 (round INTEGER, pick VARCHAR, player VARCHAR) | SELECT MAX(round) FROM table_name_63 WHERE pick > 114 AND player = "jerry corcoran" |
What is the agg of team 2 for Vantour Club Mangoungou? | CREATE TABLE table_name_38 (agg VARCHAR, team_2 VARCHAR) | SELECT agg FROM table_name_38 WHERE team_2 = "vantour club mangoungou" |
What rank has an annual interchange less than 1.99 million, an annual entry/exit less than 13.835 million, and more than 13.772 million total passengers? | CREATE TABLE table_name_83 (rank VARCHAR, total_passengers__millions__2011_12 VARCHAR, annual_interchanges__millions__2011_12 VARCHAR, annual_entry_exit__millions__2011_12 VARCHAR) | SELECT rank FROM table_name_83 WHERE annual_interchanges__millions__2011_12 < 1.99 AND annual_entry_exit__millions__2011_12 < 13.835 AND total_passengers__millions__2011_12 > 13.772 |
What generation is the member born on 1996.04.17 in? | CREATE TABLE table_name_33 (generation VARCHAR, birthday VARCHAR) | SELECT generation FROM table_name_33 WHERE birthday = "1996.04.17" |
What is the Service name of BBC? | CREATE TABLE table_name_53 (service_name VARCHAR, owner VARCHAR) | SELECT service_name FROM table_name_53 WHERE owner = "bbc" |
Which Particle has an Isospin I of 1⁄2, and a Symbol of ξ ∗0 (1530)? | CREATE TABLE table_name_37 (particle VARCHAR, isospin_i VARCHAR, symbol VARCHAR) | SELECT particle FROM table_name_37 WHERE isospin_i = "1⁄2" AND symbol = "ξ ∗0 (1530)" |
In the match played against Telford United, who was the home team? | CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_9 WHERE away_team = "telford united" |
What is the total overall for the pick that went before round 4, who went to Tennessee for college, and was picked at a number bigger than 9? | CREATE TABLE table_name_60 (overall INTEGER, pick__number VARCHAR, round VARCHAR, college VARCHAR) | SELECT SUM(overall) FROM table_name_60 WHERE round < 4 AND college = "tennessee" AND pick__number > 9 |
What is the lowest Top-25 when events shows 12, the top-5 is 1, and less than 11 cuts? | CREATE TABLE table_name_63 (top_25 INTEGER, cuts_made VARCHAR, events VARCHAR, top_5 VARCHAR) | SELECT MIN(top_25) FROM table_name_63 WHERE events = 12 AND top_5 = 1 AND cuts_made < 11 |
What is Industrial Use (m 3 /p/yr)(in %), when Total Freshwater Withdrawal (km 3/yr) is less than 82.75, and when Agricultural Use (m 3 /p/yr)(in %) is 1363(92%)? | CREATE TABLE table_name_32 (industrial_use__m_3__p_yr__in__percentage_ VARCHAR, total_freshwater_withdrawal__km_3__yr_ VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR) | SELECT industrial_use__m_3__p_yr__in__percentage_ FROM table_name_32 WHERE total_freshwater_withdrawal__km_3__yr_ < 82.75 AND agricultural_use__m_3__p_yr__in__percentage_ = "1363(92%)" |
What is the most recent final result for the years (won in bold) 1979? | CREATE TABLE table_1463332_2 (most_recent_final VARCHAR, years__won_in_bold_ VARCHAR) | SELECT most_recent_final FROM table_1463332_2 WHERE years__won_in_bold_ = "1979" |
Name the points classification for predictor-lotto and stage 1 | CREATE TABLE table_name_65 (points_classification VARCHAR, team_classification VARCHAR, stage VARCHAR) | SELECT points_classification FROM table_name_65 WHERE team_classification = "predictor-lotto" AND stage = "1" |
After how many opponents was the overall record 1-0-0? | CREATE TABLE table_20928682_1 (opponents VARCHAR, record VARCHAR) | SELECT COUNT(opponents) FROM table_20928682_1 WHERE record = "1-0-0" |
What report has a score of 0-0 with Sydney FC? | CREATE TABLE table_name_49 (report VARCHAR, score VARCHAR, away_team VARCHAR) | SELECT report FROM table_name_49 WHERE score = "0-0" AND away_team = "sydney fc" |
How many entries are shown for an air date when the team guest captain was stephen k amos? | CREATE TABLE table_25816476_2 (air_date VARCHAR, team_guest_captain VARCHAR) | SELECT COUNT(air_date) FROM table_25816476_2 WHERE team_guest_captain = "Stephen K Amos" |
What is the average against of Murrayfield, Edinburgh? | CREATE TABLE table_name_13 (against INTEGER, venue VARCHAR) | SELECT AVG(against) FROM table_name_13 WHERE venue = "murrayfield, edinburgh" |
Find the program which most number of students are enrolled in. List both the id and the summary. | CREATE TABLE Degree_Programs (degree_program_id VARCHAR, degree_summary_name VARCHAR); CREATE TABLE Student_Enrolment (degree_program_id VARCHAR) | SELECT T1.degree_program_id, T1.degree_summary_name FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id GROUP BY T1.degree_program_id ORDER BY COUNT(*) DESC LIMIT 1 |
What score has detroit as the home, and December 9 as the date? | CREATE TABLE table_name_78 (score VARCHAR, home VARCHAR, date VARCHAR) | SELECT score FROM table_name_78 WHERE home = "detroit" AND date = "december 9" |
Who was the shooter when the rank points was 8 and the event was WC Kerrville? | CREATE TABLE table_name_64 (shooter VARCHAR, rank_points VARCHAR, event VARCHAR) | SELECT shooter FROM table_name_64 WHERE rank_points = "8" AND event = "wc kerrville" |
What is the name of the rider with a time of 1:45.52.84, and a Rank of 8? | CREATE TABLE table_name_56 (rider VARCHAR, time VARCHAR, rank VARCHAR) | SELECT rider FROM table_name_56 WHERE time = "1:45.52.84" AND rank = 8 |
What's the Date for the Label of Bertelsmann Music group and has a Region of Europe? | CREATE TABLE table_name_36 (date VARCHAR, label VARCHAR, region VARCHAR) | SELECT date FROM table_name_36 WHERE label = "bertelsmann music group" AND region = "europe" |
How many sprint points contribute to 2 total points? | CREATE TABLE table_name_27 (sprint_points VARCHAR, total_points VARCHAR) | SELECT sprint_points FROM table_name_27 WHERE total_points = "2" |
What is the 2008 value of the hamburg masters? | CREATE TABLE table_name_30 (tournament VARCHAR) | SELECT 2008 FROM table_name_30 WHERE tournament = "hamburg masters" |
Tell me the score of misa eguchi eri hozumi | CREATE TABLE table_name_62 (score VARCHAR, opponents VARCHAR) | SELECT score FROM table_name_62 WHERE opponents = "misa eguchi eri hozumi" |
Which Opponents in Final has a Date of september 16, 1990? | CREATE TABLE table_name_25 (opponents_in_final VARCHAR, date VARCHAR) | SELECT opponents_in_final FROM table_name_25 WHERE date = "september 16, 1990" |
What is the acronym for the school whose website is ul.edu.lb | CREATE TABLE table_1160660_1 (acronym VARCHAR, website VARCHAR) | SELECT acronym FROM table_1160660_1 WHERE website = "ul.edu.lb" |
What are the characters from the movie Suppressed Duck? | CREATE TABLE table_name_80 (characters VARCHAR, title VARCHAR) | SELECT characters FROM table_name_80 WHERE title = "suppressed duck" |
Which Game has a Series of flyers win 3–0? Question 3 | CREATE TABLE table_name_8 (game INTEGER, series VARCHAR) | SELECT MAX(game) FROM table_name_8 WHERE series = "flyers win 3–0" |
What is the 2007 value with 1r in 2011 and 1r in 2010? | CREATE TABLE table_name_84 (Id VARCHAR) | SELECT 2007 FROM table_name_84 WHERE 2011 = "1r" AND 2010 = "1r" |
What is the Hanyu Pinyin with a density of 39.63? | CREATE TABLE table_name_32 (hanyu_pinyin VARCHAR, density___km²_ VARCHAR) | SELECT hanyu_pinyin FROM table_name_32 WHERE density___km²_ = "39.63" |
what's the result with opponent being at new england patriots | CREATE TABLE table_14951643_1 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_14951643_1 WHERE opponent = "at New England Patriots" |
What is the Tyre for the united states grand prix? | CREATE TABLE table_name_5 (tyre VARCHAR, race VARCHAR) | SELECT tyre FROM table_name_5 WHERE race = "united states grand prix" |
What place was the scorer of 67-74-73=214? | CREATE TABLE table_name_92 (place VARCHAR, score VARCHAR) | SELECT place FROM table_name_92 WHERE score = 67 - 74 - 73 = 214 |
What round was matt roth drafted? | CREATE TABLE table_name_82 (round VARCHAR, player VARCHAR) | SELECT COUNT(round) FROM table_name_82 WHERE player = "matt roth" |
Who wrote the episode with 3.92 million US viewers? | CREATE TABLE table_25740548_3 (written_by VARCHAR, us_viewers__million_ VARCHAR) | SELECT written_by FROM table_25740548_3 WHERE us_viewers__million_ = "3.92" |
How many people attended the game against the pittsburgh steelers? | CREATE TABLE table_name_21 (attendance VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_21 WHERE opponent = "pittsburgh steelers" |
What gender has Romanized name and kim yoon-yeong? | CREATE TABLE table_name_14 (gender VARCHAR, romanized_name VARCHAR) | SELECT gender FROM table_name_14 WHERE romanized_name = "kim yoon-yeong" |
What is the highest total medals when there were 0 gold medals and 1 silver? | CREATE TABLE table_name_62 (total INTEGER, silver VARCHAR, gold VARCHAR) | SELECT MAX(total) FROM table_name_62 WHERE silver = 1 AND gold < 0 |
Which League has a Regular Season of 2nd, southeast? | CREATE TABLE table_name_58 (league VARCHAR, regular_season VARCHAR) | SELECT league FROM table_name_58 WHERE regular_season = "2nd, southeast" |
What is the title that aired from 17 may 2008 – 21 june 2008 on Nederland 3? | CREATE TABLE table_178242_1 (name VARCHAR, channel VARCHAR, premiere___aired VARCHAR) | SELECT name FROM table_178242_1 WHERE channel = "Nederland 3" AND premiere___aired = "17 May 2008 – 21 June 2008" |
What is the attendance of the match with maidsone united as the away team? | CREATE TABLE table_name_13 (attendance VARCHAR, away_team VARCHAR) | SELECT attendance FROM table_name_13 WHERE away_team = "maidsone united" |
Which translation had a unit of Uncia? | CREATE TABLE table_name_10 (translation VARCHAR, unit VARCHAR) | SELECT translation FROM table_name_10 WHERE unit = "uncia" |
How many people went to the game that lasted 2:37 after game 2? | CREATE TABLE table_name_54 (attendance INTEGER, game VARCHAR, time VARCHAR) | SELECT SUM(attendance) FROM table_name_54 WHERE game > 2 AND time = "2:37" |
In the game where Collingwood is the home team what is the score of the away team? | CREATE TABLE table_name_18 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_18 WHERE home_team = "collingwood" |
What Score has a Tournament of tanjung selor, indonesia? | CREATE TABLE table_name_76 (score VARCHAR, tournament VARCHAR) | SELECT score FROM table_name_76 WHERE tournament = "tanjung selor, indonesia" |
What was the week 5 opponent for the year with a week 10 opponent of Maryland (6-2)? | CREATE TABLE table_name_81 (week_5_sept_28 VARCHAR, week_10_nov_2 VARCHAR) | SELECT week_5_sept_28 FROM table_name_81 WHERE week_10_nov_2 = "maryland (6-2)" |
What was the parent magazine for the manga magazine, dengeki moeoh that was issued bimonthly? | CREATE TABLE table_name_6 (parent_magazine VARCHAR, title VARCHAR, frequency VARCHAR, magazine_type VARCHAR) | SELECT parent_magazine FROM table_name_6 WHERE frequency = "bimonthly" AND magazine_type = "manga" AND title = "dengeki moeoh" |
What is Television Service, when Package/Option is Sky Famiglia, and when Language is Italian? | CREATE TABLE table_name_54 (television_service VARCHAR, package_option VARCHAR, language VARCHAR) | SELECT television_service FROM table_name_54 WHERE package_option = "sky famiglia" AND language = "italian" |
What is the area (km²) for the country with a population of 16967000? | CREATE TABLE table_11780179_1 (area__km²_ INTEGER, population VARCHAR) | SELECT MIN(area__km²_) FROM table_11780179_1 WHERE population = 16967000 |
What college did étienne légaré play for? | CREATE TABLE table_20170644_1 (college VARCHAR, player VARCHAR) | SELECT college FROM table_20170644_1 WHERE player = "Étienne Légaré" |
For which play was the points 271? | CREATE TABLE table_name_74 (played VARCHAR, points_against VARCHAR) | SELECT played FROM table_name_74 WHERE points_against = "271" |
Find the name and savings balance of the top 3 accounts with the highest saving balance sorted by savings balance in descending order. | CREATE TABLE savings (balance VARCHAR, custid VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR) | SELECT T1.name, T2.balance FROM accounts AS T1 JOIN savings AS T2 ON T1.custid = T2.custid ORDER BY T2.balance DESC LIMIT 3 |
What country scored 66-65-66-72=269? | CREATE TABLE table_name_2 (country VARCHAR, score VARCHAR) | SELECT country FROM table_name_2 WHERE score = 66 - 65 - 66 - 72 = 269 |
What was the result of the game on October 6, 1974? | CREATE TABLE table_14954150_1 (result VARCHAR, date VARCHAR) | SELECT result FROM table_14954150_1 WHERE date = "October 6, 1974" |
What is the total number of tiers for the postseason of semifinalist? | CREATE TABLE table_name_45 (tier INTEGER, postseason VARCHAR) | SELECT SUM(tier) FROM table_name_45 WHERE postseason = "semifinalist" |
Which season did Jovy Sese play? | CREATE TABLE table_name_7 (season VARCHAR, name VARCHAR) | SELECT season FROM table_name_7 WHERE name = "jovy sese" |
What position has a 2-6 agg.? | CREATE TABLE table_name_8 (position VARCHAR, agg VARCHAR) | SELECT position FROM table_name_8 WHERE agg = "2-6" |
How many points in total were scored by the player whose Oberstdork score and rank were 252.6 (11)? | CREATE TABLE table_14948647_1 (total_points VARCHAR, oberstdorf__rk_ VARCHAR) | SELECT total_points FROM table_14948647_1 WHERE oberstdorf__rk_ = "252.6 (11)" |
What is the fewest goals of CD Alcoyano with more than 25 points? | CREATE TABLE table_name_57 (goals_against INTEGER, club VARCHAR, points VARCHAR) | SELECT MIN(goals_against) FROM table_name_57 WHERE club = "cd alcoyano" AND points > 25 |
What is the lowest Postion, when Bike No is greater than 10, when Driver / Passenger is Nicky Pulinx / Ondrej Cermak, and when Points is greater than 244? | CREATE TABLE table_name_6 (position INTEGER, points VARCHAR, bike_no VARCHAR, driver___passenger VARCHAR) | SELECT MIN(position) FROM table_name_6 WHERE bike_no > 10 AND driver___passenger = "nicky pulinx / ondrej cermak" AND points > 244 |
When 142900 is the population what is the highest rank? | CREATE TABLE table_23248420_1 (rank INTEGER, population VARCHAR) | SELECT MAX(rank) FROM table_23248420_1 WHERE population = 142900 |
On what Date was the Attendance 75,891? | CREATE TABLE table_name_77 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_77 WHERE attendance = "75,891" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.