question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
What is the name of the Cobourg, ON restaurant that had Robin de Groot as designer? | CREATE TABLE table_name_85 (restaurant_name VARCHAR, designer VARCHAR, location VARCHAR) | SELECT restaurant_name FROM table_name_85 WHERE designer = "robin de groot" AND location = "cobourg, on" |
WHAT IS THE LEAD WITH THIRD AS JEANNA SCHRAEDER? | CREATE TABLE table_name_83 (lead VARCHAR, third VARCHAR) | SELECT lead FROM table_name_83 WHERE third = "jeanna schraeder" |
What is the country for Sony / Sony Bmg? | CREATE TABLE table_name_61 (country VARCHAR, label VARCHAR) | SELECT country FROM table_name_61 WHERE label = "sony / sony bmg" |
What horse for jara? | CREATE TABLE table_name_43 (horse VARCHAR, jockey VARCHAR) | SELECT horse FROM table_name_43 WHERE jockey = "jara" |
what is the wins when the f/laps is test driver and team is lotus racing? | CREATE TABLE table_name_20 (wins VARCHAR, f_laps VARCHAR, team VARCHAR) | SELECT wins FROM table_name_20 WHERE f_laps = "test driver" AND team = "lotus racing" |
Which side has Orcagna as the inscription? | CREATE TABLE table_name_89 (side VARCHAR, inscription VARCHAR) | SELECT side FROM table_name_89 WHERE inscription = "orcagna" |
On which date was the game played at Tiger Stadium? | CREATE TABLE table_14958620_1 (date VARCHAR, game_site VARCHAR) | SELECT date FROM table_14958620_1 WHERE game_site = "Tiger Stadium" |
Find courses that ran in Fall 2009 but not in Spring 2010. | CREATE TABLE SECTION (course_id VARCHAR, semester VARCHAR, YEAR VARCHAR) | SELECT course_id FROM SECTION WHERE semester = 'Fall' AND YEAR = 2009 EXCEPT SELECT course_id FROM SECTION WHERE semester = 'Spring' AND YEAR = 2010 |
What is the elected status of the Democratic party in 1989? | CREATE TABLE table_1341568_6 (status VARCHAR, party VARCHAR, elected VARCHAR) | SELECT status FROM table_1341568_6 WHERE party = "Democratic" AND elected = "1989" |
what's the record with high points being dwyane wade (27) and location attendance being arco arena | CREATE TABLE table_13762472_4 (record VARCHAR, high_points VARCHAR, location_attendance VARCHAR) | SELECT record FROM table_13762472_4 WHERE high_points = "Dwyane Wade (27)" AND location_attendance = "ARCO Arena" |
How many socialist have a lead of 12.6%? | CREATE TABLE table_1886589_1 (socialist VARCHAR, lead VARCHAR) | SELECT COUNT(socialist) FROM table_1886589_1 WHERE lead = "12.6%" |
Name the Round which has a Position of defensive back and a Pick of 226? | CREATE TABLE table_name_84 (round INTEGER, position VARCHAR, pick VARCHAR) | SELECT MIN(round) FROM table_name_84 WHERE position = "defensive back" AND pick = 226 |
Name the us exclusive for miley cyrus | CREATE TABLE table_24600706_1 (us_exclusive VARCHAR, artist_band VARCHAR) | SELECT us_exclusive FROM table_24600706_1 WHERE artist_band = "Miley Cyrus" |
What score has February 10 as the date? | CREATE TABLE table_name_57 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_57 WHERE date = "february 10" |
What's the Bible Gothic for the word hand? | CREATE TABLE table_name_7 (bible_gothic VARCHAR, english VARCHAR) | SELECT bible_gothic FROM table_name_7 WHERE english = "hand" |
What's the listed average of Cuts made that has a Top-5 of 3, and a Top-10 that's smaller than 5? | CREATE TABLE table_name_17 (cuts_made INTEGER, top_5 VARCHAR, top_10 VARCHAR) | SELECT AVG(cuts_made) FROM table_name_17 WHERE top_5 = 3 AND top_10 < 5 |
For the strategy game in 1992, how many players were allowed per console? | CREATE TABLE table_name_51 (players_per_console VARCHAR, genre VARCHAR, year VARCHAR) | SELECT players_per_console FROM table_name_51 WHERE genre = "strategy" AND year = 1992 |
What is the lowest number of Losses when the number of Wins is less than 4, the number of Tie is 2, and the Place is 5? | CREATE TABLE table_name_38 (losses INTEGER, place VARCHAR, wins VARCHAR, ties VARCHAR) | SELECT MIN(losses) FROM table_name_38 WHERE wins < 4 AND ties = 2 AND place = 5 |
who is the the winning driver with pole position being paul tracy and race name being miller genuine draft 200 | CREATE TABLE table_14638077_2 (winning_driver VARCHAR, pole_position VARCHAR, race_name VARCHAR) | SELECT winning_driver FROM table_14638077_2 WHERE pole_position = "Paul Tracy" AND race_name = "Miller Genuine Draft 200" |
How many RolePlay actors played the role requiring a "male, younger" actor? | CREATE TABLE table_17827271_1 (roleplay VARCHAR, actor_required VARCHAR) | SELECT COUNT(roleplay) FROM table_17827271_1 WHERE actor_required = "Male, younger" |
Who was the incumbent in the Ohio 5 district? | CREATE TABLE table_2646656_3 (incumbent VARCHAR, district VARCHAR) | SELECT incumbent FROM table_2646656_3 WHERE district = "Ohio 5" |
Find the first and last name of the author(s) who wrote the paper "Nameless, Painless". | CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE papers (paperid VARCHAR, title VARCHAR); CREATE TABLE authors (fname VARCHAR, lname VARCHAR, authid VARCHAR) | SELECT t1.fname, t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t3.title = "Nameless , Painless" |
What is the lowest when pohang steelyard is the stadium? | CREATE TABLE table_21824695_8 (lowest VARCHAR, stadium VARCHAR) | SELECT lowest FROM table_21824695_8 WHERE stadium = "Pohang Steelyard" |
How many millions of viewers watched the episode directed by Anthony Hemingway? | CREATE TABLE table_11230937_2 (us_viewers__millions_ VARCHAR, directed_by VARCHAR) | SELECT us_viewers__millions_ FROM table_11230937_2 WHERE directed_by = "Anthony Hemingway" |
How many rounds have an Opponent of sakae kasuya? | CREATE TABLE table_name_90 (round VARCHAR, opponent VARCHAR) | SELECT COUNT(round) FROM table_name_90 WHERE opponent = "sakae kasuya" |
What was the result of rank 1? | CREATE TABLE table_name_73 (result VARCHAR, rank VARCHAR) | SELECT result FROM table_name_73 WHERE rank = 1 |
How many times is last/current driver(s) 3 november 2013 is adderly fong ( 2013 )? | CREATE TABLE table_27279050_3 (country VARCHAR, last_current_driver_s__3_november_2013 VARCHAR) | SELECT COUNT(country) FROM table_27279050_3 WHERE last_current_driver_s__3_november_2013 = "Adderly Fong ( 2013 )" |
Tell me the date for jody scheckter being the fastest lap at the french grand prix | CREATE TABLE table_name_14 (date VARCHAR, fastest_lap VARCHAR, race VARCHAR) | SELECT date FROM table_name_14 WHERE fastest_lap = "jody scheckter" AND race = "french grand prix" |
How many Points a February smaller than 1 have? | CREATE TABLE table_name_5 (points INTEGER, february INTEGER) | SELECT MIN(points) FROM table_name_5 WHERE february < 1 |
Who was the "incumbent" of district south carolina 7? | CREATE TABLE table_2668243_22 (incumbent VARCHAR, district VARCHAR) | SELECT incumbent FROM table_2668243_22 WHERE district = "South Carolina 7" |
what is the years when the duration is 13 years and the character is renee phelan? | CREATE TABLE table_name_17 (years VARCHAR, duration VARCHAR, character VARCHAR) | SELECT years FROM table_name_17 WHERE duration = "13 years" AND character = "renee phelan" |
What date after Week 6 was a Bye? | CREATE TABLE table_name_34 (date VARCHAR, week VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_34 WHERE week > 6 AND attendance = "bye" |
How much is the money ($) when the score is 67-71-72-72=282? | CREATE TABLE table_name_97 (money___ VARCHAR, score VARCHAR) | SELECT COUNT(money___) AS $__ FROM table_name_97 WHERE score = 67 - 71 - 72 - 72 = 282 |
Which Season has a 19th Final Place? | CREATE TABLE table_name_77 (season VARCHAR, final_placing VARCHAR) | SELECT season FROM table_name_77 WHERE final_placing = "19th" |
What was the sum of Value ($M), when the Revenue ($M) was less than 307, the Team was Valencia, and the Rank was smaller than 19? | CREATE TABLE table_name_3 (value__ INTEGER, rank VARCHAR, revenue__$m_ VARCHAR, team VARCHAR) | SELECT SUM(value__) AS $m_ FROM table_name_3 WHERE revenue__$m_ < 307 AND team = "valencia" AND rank < 19 |
Who is in week 4 if week 5 is [month ended] and week 2 is April Ireland? | CREATE TABLE table_name_8 (week_4 VARCHAR, week_5 VARCHAR, week_2 VARCHAR) | SELECT week_4 FROM table_name_8 WHERE week_5 = "[month ended]" AND week_2 = "april ireland" |
What is the team 1 with team 2 Mount Cameroon FC? | CREATE TABLE table_name_43 (team_1 VARCHAR, team_2 VARCHAR) | SELECT team_1 FROM table_name_43 WHERE team_2 = "mount cameroon fc" |
What is the lease amount of touchdowns with 1318 yards? | CREATE TABLE table_name_41 (touchdowns INTEGER, yards VARCHAR) | SELECT MIN(touchdowns) FROM table_name_41 WHERE yards = 1318 |
Which To par has a Player of bernhard langer? | CREATE TABLE table_name_34 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_34 WHERE player = "bernhard langer" |
What prefixes are priced at pence per minute, fixed at all times with a premium of 3p/min? | CREATE TABLE table_10408617_5 (prefixes VARCHAR, scheme VARCHAR, approx_premium VARCHAR) | SELECT prefixes FROM table_10408617_5 WHERE scheme = "Pence per minute, fixed at all times" AND approx_premium = "3p/min" |
What is the Rider, when Grid is less than 16, when Manufacturer is Aprilia, and when Time is +28.288? | CREATE TABLE table_name_23 (rider VARCHAR, time VARCHAR, grid VARCHAR, manufacturer VARCHAR) | SELECT rider FROM table_name_23 WHERE grid < 16 AND manufacturer = "aprilia" AND time = "+28.288" |
What is the total pick number for a wide receiver? | CREATE TABLE table_name_7 (pick VARCHAR, position VARCHAR) | SELECT COUNT(pick) FROM table_name_7 WHERE position = "wide receiver" |
Who was the Road Team for the game ending with a score of 118-112? | CREATE TABLE table_name_89 (road_team VARCHAR, result VARCHAR) | SELECT road_team FROM table_name_89 WHERE result = "118-112" |
On the date October 21, 2007, what is the No.? | CREATE TABLE table_26202847_6 (no VARCHAR, date VARCHAR) | SELECT no FROM table_26202847_6 WHERE date = "October 21, 2007" |
Who was the runner up before 2007? | CREATE TABLE table_name_93 (runner_up VARCHAR, season INTEGER) | SELECT runner_up FROM table_name_93 WHERE season < 2007 |
Which Source has Terry McAuliffe of 36% | CREATE TABLE table_name_80 (source VARCHAR, terry_mcauliffe VARCHAR) | SELECT source FROM table_name_80 WHERE terry_mcauliffe = "36%" |
Who drives the abc supply sponsored cor? | CREATE TABLE table_2503102_2 (driver_s_ VARCHAR, primary_sponsor VARCHAR) | SELECT driver_s_ FROM table_2503102_2 WHERE primary_sponsor = "ABC Supply" |
What day in November has the game less than 12? | CREATE TABLE table_name_55 (november VARCHAR, game INTEGER) | SELECT november FROM table_name_55 WHERE game < 12 |
Which Termination of Mission has a Presentation of Credentials on October 29, 1981 | CREATE TABLE table_name_5 (termination_of_mission VARCHAR, presentation_of_credentials VARCHAR) | SELECT termination_of_mission FROM table_name_5 WHERE presentation_of_credentials = "october 29, 1981" |
Tell me the score for score in legs and year less than 2012 | CREATE TABLE table_name_51 (score__l__ VARCHAR, _score_in_legs VARCHAR, __s__ VARCHAR, _score_in_sets VARCHAR, year INTEGER) | SELECT score__l__ = _score_in_legs, __s__ = _score_in_sets FROM table_name_51 WHERE year < 2012 |
what is the amount lost when there is 1 draw and 515 points? | CREATE TABLE table_name_72 (lost VARCHAR, drawn VARCHAR, points_for VARCHAR) | SELECT lost FROM table_name_72 WHERE drawn = "1" AND points_for = "515" |
What was the 2nd leg score when atlético tucumán played at home? | CREATE TABLE table_name_84 (home__2nd_leg_ VARCHAR) | SELECT 2 AS nd_leg FROM table_name_84 WHERE home__2nd_leg_ = "atlético tucumán" |
Did any team score games that totaled up to 860.5? | CREATE TABLE table_1059743_1 (play_off VARCHAR, points VARCHAR) | SELECT play_off FROM table_1059743_1 WHERE points = "860.5" |
Which ICAO is found in Vavuniya? | CREATE TABLE table_name_97 (icao VARCHAR, city VARCHAR) | SELECT icao FROM table_name_97 WHERE city = "vavuniya" |
What player was drafted by the philadelphia union? | CREATE TABLE table_25518547_3 (player VARCHAR, mls_team VARCHAR) | SELECT player FROM table_25518547_3 WHERE mls_team = "Philadelphia Union" |
How many weeks was K.Maro at #1? | CREATE TABLE table_27441210_12 (weeks_at__number1 INTEGER, artist VARCHAR) | SELECT MAX(weeks_at__number1) FROM table_27441210_12 WHERE artist = "K.Maro" |
What faith has a DCSF number bigger than 2448 in Holtsmere End? | CREATE TABLE table_name_44 (faith VARCHAR, dcsf_number VARCHAR, name VARCHAR) | SELECT faith FROM table_name_44 WHERE dcsf_number > 2448 AND name = "holtsmere end" |
Which Year is the lowest one that has a US Cham Rank smaller than 1? | CREATE TABLE table_name_16 (year INTEGER, us_cham_rank INTEGER) | SELECT MIN(year) FROM table_name_16 WHERE us_cham_rank < 1 |
How many rounds did shirley van der lof go? | CREATE TABLE table_name_46 (rounds VARCHAR, driver VARCHAR) | SELECT rounds FROM table_name_46 WHERE driver = "shirley van der lof" |
Name the literature for pradit prasarttong | CREATE TABLE table_name_72 (literature VARCHAR, performing_arts VARCHAR) | SELECT literature FROM table_name_72 WHERE performing_arts = "pradit prasarttong" |
What team has theoir home games in the venue of gold coast convention centre? | CREATE TABLE table_name_11 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_11 WHERE venue = "gold coast convention centre" |
What is Time, when Round is "3", when Method is "Decision (unanimous)", and when Record is "7-3"? | CREATE TABLE table_name_45 (time VARCHAR, record VARCHAR, round VARCHAR, method VARCHAR) | SELECT time FROM table_name_45 WHERE round = 3 AND method = "decision (unanimous)" AND record = "7-3" |
What is Opposing Teams, when Date is "11/10/1991"? | CREATE TABLE table_name_81 (opposing_teams VARCHAR, date VARCHAR) | SELECT opposing_teams FROM table_name_81 WHERE date = "11/10/1991" |
What is the title of every song, and how many weeks was each song at #1 for One Direction? | CREATE TABLE table_19542477_9 (song_s__—_weeks VARCHAR, artist_s_ VARCHAR) | SELECT song_s__—_weeks FROM table_19542477_9 WHERE artist_s_ = "One Direction" |
What is the highest production code? | CREATE TABLE table_26448179_4 (production_code INTEGER) | SELECT MAX(production_code) FROM table_26448179_4 |
How much Enrollment has an IHSAA Class of aaaaa, and a Mascot of spartans? | CREATE TABLE table_name_79 (enrollment VARCHAR, ihsaa_class VARCHAR, mascot VARCHAR) | SELECT COUNT(enrollment) FROM table_name_79 WHERE ihsaa_class = "aaaaa" AND mascot = "spartans" |
What is the result when the nominee(s) of janine sherman? | CREATE TABLE table_name_57 (result VARCHAR, nominee_s_ VARCHAR) | SELECT result FROM table_name_57 WHERE nominee_s_ = "janine sherman" |
Name the network for 2007 total | CREATE TABLE table_22654139_2 (network VARCHAR, year VARCHAR) | SELECT COUNT(network) FROM table_22654139_2 WHERE year = 2007 |
Which opponent has w 17-0 as the result? | CREATE TABLE table_name_70 (opponent VARCHAR, result VARCHAR) | SELECT opponent FROM table_name_70 WHERE result = "w 17-0" |
What is the smallest draws for a player larger than 2 with a 100% wins? | CREATE TABLE table_name_83 (drawn INTEGER, played VARCHAR, _percentage_won VARCHAR) | SELECT MIN(drawn) FROM table_name_83 WHERE played > 2 AND _percentage_won > 100 |
What is the mean drawn when the difference is 0 and the against stat is more than 31? | CREATE TABLE table_name_34 (drawn INTEGER, difference VARCHAR, against VARCHAR) | SELECT AVG(drawn) FROM table_name_34 WHERE difference = "0" AND against > 31 |
Which Incumbent has a Result of retired democratic gain? | CREATE TABLE table_name_35 (incumbent VARCHAR, result VARCHAR) | SELECT incumbent FROM table_name_35 WHERE result = "retired democratic gain" |
Which song lasts 3:34? | CREATE TABLE table_name_59 (song VARCHAR, length VARCHAR) | SELECT song FROM table_name_59 WHERE length = "3:34" |
Which team has Ali Daei as head coach? | CREATE TABLE table_27383390_2 (team VARCHAR, head_coach VARCHAR) | SELECT team FROM table_27383390_2 WHERE head_coach = "Ali Daei" |
Name the round for engine of ford cosworth dfv 3.0 v8 with chassis fo 751 | CREATE TABLE table_name_90 (rounds VARCHAR, engine VARCHAR, chassis VARCHAR) | SELECT rounds FROM table_name_90 WHERE engine = "ford cosworth dfv 3.0 v8" AND chassis = "751" |
What was the score when the place was t8? | CREATE TABLE table_name_96 (score VARCHAR, place VARCHAR) | SELECT score FROM table_name_96 WHERE place = "t8" |
What are the average losses for Geelong DFL of Bell Post Hill where the draws are less than 0? | CREATE TABLE table_name_73 (losses INTEGER, geelong_dfl VARCHAR, draws VARCHAR) | SELECT AVG(losses) FROM table_name_73 WHERE geelong_dfl = "bell post hill" AND draws < 0 |
Where Bolton Wanderers is the home team, who is the away team? | CREATE TABLE table_name_7 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_7 WHERE home_team = "bolton wanderers" |
Which bats did mitchell play first? | CREATE TABLE table_name_23 (bats VARCHAR, first VARCHAR) | SELECT bats FROM table_name_23 WHERE first = "mitchell" |
What was Allison Fouch score in the year larger than 2000? | CREATE TABLE table_name_62 (winning_score VARCHAR, year VARCHAR, champion VARCHAR) | SELECT winning_score FROM table_name_62 WHERE year > 2000 AND champion = "allison fouch" |
WHich Score has a Date on november 11? | CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_30 WHERE date = "november 11" |
When extending eminent domain over roads and ways is the description what is the highest means number? | CREATE TABLE table_256286_13 (meas_num INTEGER, description VARCHAR) | SELECT MAX(meas_num) FROM table_256286_13 WHERE description = "Extending Eminent Domain Over Roads and Ways" |
What are the task details, task id and project id for the projects which are detailed as 'omnis' or have more than 2 outcomes? | CREATE TABLE Projects (project_id VARCHAR, project_details VARCHAR); CREATE TABLE Project_outcomes (project_id VARCHAR); CREATE TABLE Tasks (task_details VARCHAR, task_id VARCHAR, project_id VARCHAR) | SELECT T1.task_details, T1.task_id, T2.project_id FROM Tasks AS T1 JOIN Projects AS T2 ON T1.project_id = T2.project_id WHERE T2.project_details = 'omnis' UNION SELECT T1.task_details, T1.task_id, T2.project_id FROM Tasks AS T1 JOIN Projects AS T2 ON T1.project_id = T2.project_id JOIN Project_outcomes AS T3 ON T2.proje... |
When revenue is smaller than 4,177 million in year 2008, what is the sum of earnings per share? | CREATE TABLE table_name_89 (earnings_per_share__p_ INTEGER, year_ended VARCHAR, revenue__£million_ VARCHAR) | SELECT SUM(earnings_per_share__p_) FROM table_name_89 WHERE year_ended = "2008" AND revenue__£million_ < 4 OFFSET 177 |
What is the date before week 13 and Miami Dolphins as an opponent? | CREATE TABLE table_name_48 (date VARCHAR, week VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_48 WHERE week < 13 AND opponent = "miami dolphins" |
What is the IHSAA class of Centerville, which plays IHSAA class AA football? | CREATE TABLE table_name_92 (ihsaa_class VARCHAR, ihsaa_football_class VARCHAR, school VARCHAR) | SELECT ihsaa_class FROM table_name_92 WHERE ihsaa_football_class = "aa" AND school = "centerville" |
What score has zadar as the tournament? | CREATE TABLE table_name_27 (score VARCHAR, tournament VARCHAR) | SELECT score FROM table_name_27 WHERE tournament = "zadar" |
What are the average score and average staff number of all shops? | CREATE TABLE shop (num_of_staff INTEGER, score INTEGER) | SELECT AVG(num_of_staff), AVG(score) FROM shop |
What was the result for director Fernando Meirelles | CREATE TABLE table_15277629_1 (result VARCHAR, director VARCHAR) | SELECT result FROM table_15277629_1 WHERE director = "Fernando Meirelles" |
Who is the away team when the home team was Fitzroy? | CREATE TABLE table_name_55 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_55 WHERE home_team = "fitzroy" |
Who did the Tampa Bay Buccaneers play on december 23, 1995? | CREATE TABLE table_name_60 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_60 WHERE date = "december 23, 1995" |
What is the total number for Capacity at city stadium, borisov? | CREATE TABLE table_name_28 (capacity VARCHAR, venue VARCHAR) | SELECT COUNT(capacity) FROM table_name_28 WHERE venue = "city stadium, borisov" |
Who manufactures Makoto Tamada's vehicle? | CREATE TABLE table_name_68 (manufacturer VARCHAR, rider VARCHAR) | SELECT manufacturer FROM table_name_68 WHERE rider = "makoto tamada" |
What is the Time/Retired for less than 52 laps in grid 19? | CREATE TABLE table_name_52 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT time_retired FROM table_name_52 WHERE laps < 52 AND grid = 19 |
When 9:47:38 is the time (utc) how many measurements of latitude are there? | CREATE TABLE table_24192190_1 (latitude VARCHAR, time__utc_ VARCHAR) | SELECT COUNT(latitude) FROM table_24192190_1 WHERE time__utc_ = "9:47:38" |
What team does the player who went to Nebraska play for? | CREATE TABLE table_21321804_3 (cfl_team VARCHAR, college VARCHAR) | SELECT cfl_team FROM table_21321804_3 WHERE college = "Nebraska" |
How much Premier League has an FA Cup of 0, and a Total of 1, and a UEFA Cup larger than 1? | CREATE TABLE table_name_20 (premier_league INTEGER, UEfa_cup VARCHAR, fa_cup VARCHAR, total VARCHAR) | SELECT SUM(premier_league) FROM table_name_20 WHERE fa_cup = 0 AND total = 1 AND UEfa_cup > 1 |
What is the average react of the athlete with a time less than 22.29 and a rank greater than 1? | CREATE TABLE table_name_11 (react INTEGER, time VARCHAR, rank VARCHAR) | SELECT AVG(react) FROM table_name_11 WHERE time < 22.29 AND rank > 1 |
When was the build date for ff20 PRR class and erie built builder's model? | CREATE TABLE table_name_14 (build_date VARCHAR, prr_class VARCHAR, builder’s_model VARCHAR) | SELECT build_date FROM table_name_14 WHERE prr_class = "ff20" AND builder’s_model = "erie built" |
What was the dominant religion in 2002 of the settlement with the cyrillic and other name of војводинци (romanian: voivodinţ)? | CREATE TABLE table_2562572_46 (dominant_religion__2002_ VARCHAR, cyrillic_name_other_names VARCHAR) | SELECT dominant_religion__2002_ FROM table_2562572_46 WHERE cyrillic_name_other_names = "Војводинци (Romanian: Voivodinţ)" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.