question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
What is the total of televote for the artist Pokeris when the place was less than 10? | CREATE TABLE table_name_44 (televote INTEGER, artist VARCHAR, place VARCHAR) | SELECT SUM(televote) FROM table_name_44 WHERE artist = "pokeris" AND place < 10 |
With a draw greater than 11 and the place smaller than 4 what was the televote? | CREATE TABLE table_name_96 (televote VARCHAR, draw VARCHAR, place VARCHAR) | SELECT televote FROM table_name_96 WHERE draw > 11 AND place < 4 |
What was the aggregate total for the match against Koper? | CREATE TABLE table_name_49 (agg VARCHAR, opponent VARCHAR) | SELECT agg FROM table_name_49 WHERE opponent = "koper" |
What Canadian Championship had CONCACAF Champions League of semifinals? | CREATE TABLE table_name_6 (canadian_championship VARCHAR, concacaf_champions_league VARCHAR) | SELECT canadian_championship FROM table_name_6 WHERE concacaf_champions_league = "semifinals" |
Which regular season had the playoffs of 0 mls cups? | CREATE TABLE table_name_87 (regular_season VARCHAR, playoffs VARCHAR) | SELECT regular_season FROM table_name_87 WHERE playoffs = "0 mls cups" |
What was the score with a goal of 16? | CREATE TABLE table_name_93 (score VARCHAR, goal VARCHAR) | SELECT score FROM table_name_93 WHERE goal = 16 |
What is the highest Super G, when Season is later than 1996? | CREATE TABLE table_name_46 (super_g INTEGER, season INTEGER) | SELECT MAX(super_g) FROM table_name_46 WHERE season > 1996 |
What is Combined, when Super G is less than 10, and when Overall is less than 4? | CREATE TABLE table_name_46 (combined VARCHAR, super_g VARCHAR, overall VARCHAR) | SELECT combined FROM table_name_46 WHERE super_g < 10 AND overall < 4 |
What is the highest Season, when Super G is 19? | CREATE TABLE table_name_63 (season INTEGER, super_g VARCHAR) | SELECT MAX(season) FROM table_name_63 WHERE super_g = 19 |
What outlet has and in-state area of 055 1,497km 2 578mi 2? | CREATE TABLE table_name_68 (outlet VARCHAR, in_state_area VARCHAR) | SELECT outlet FROM table_name_68 WHERE in_state_area = "055 1,497km 2 578mi 2" |
What is the total area of the Arkansas River outlet with a % in-state of a021 100%? | CREATE TABLE table_name_61 (total_area VARCHAR, outlet VARCHAR, _percentage_in_state VARCHAR) | SELECT total_area FROM table_name_61 WHERE outlet = "arkansas river" AND _percentage_in_state = "a021 100%" |
With an outlet of Colorado River and a % instate of a038 84.8% what is in-state area? | CREATE TABLE table_name_30 (in_state_area VARCHAR, outlet VARCHAR, _percentage_in_state VARCHAR) | SELECT in_state_area FROM table_name_30 WHERE outlet = "colorado river" AND _percentage_in_state = "a038 84.8%" |
What is the in-state area with an outlet of South Platte River and Big Thompson river as the basin? | CREATE TABLE table_name_81 (in_state_area VARCHAR, outlet VARCHAR, basin VARCHAR) | SELECT in_state_area FROM table_name_81 WHERE outlet = "south platte river" AND basin = "big thompson river" |
With an in-state area of 053 1,654km 2 639mi 2, what is the total area? | CREATE TABLE table_name_7 (total_area VARCHAR, in_state_area VARCHAR) | SELECT total_area FROM table_name_7 WHERE in_state_area = "053 1,654km 2 639mi 2" |
What is the name of the basin with an in-state area of 071 238km 2 92mi 2? | CREATE TABLE table_name_66 (basin VARCHAR, in_state_area VARCHAR) | SELECT basin FROM table_name_66 WHERE in_state_area = "071 238km 2 92mi 2" |
What was the transfer fee for the player ending in 2011 and moving from Thrasyvoulos? | CREATE TABLE table_name_97 (transfer_fee VARCHAR, ends VARCHAR, moving_from VARCHAR) | SELECT transfer_fee FROM table_name_97 WHERE ends = 2011 AND moving_from = "thrasyvoulos" |
What was the transfer fee for the player moving in the winter window and ending in a year after 2010? | CREATE TABLE table_name_33 (transfer_fee VARCHAR, ends VARCHAR, transfer_window VARCHAR) | SELECT transfer_fee FROM table_name_33 WHERE ends > 2010 AND transfer_window = "winter" |
Can you tell me the lowest Week that has the Attendance smaller than 34,336? | CREATE TABLE table_name_60 (week INTEGER, attendance INTEGER) | SELECT MIN(week) FROM table_name_60 WHERE attendance < 34 OFFSET 336 |
Who was the opponents in the final that was played on April 16, 2006 and the outcome was runner-up? | CREATE TABLE table_name_9 (opponents_in_final VARCHAR, outcome VARCHAR, date VARCHAR) | SELECT opponents_in_final FROM table_name_9 WHERE outcome = "runner-up" AND date = "april 16, 2006" |
Who were the opponents in the final when the game was played on hard surface and the score of the final was 6–1, 1–6, 7–6(4)? | CREATE TABLE table_name_22 (opponents_in_final VARCHAR, surface VARCHAR, score_in_final VARCHAR) | SELECT opponents_in_final FROM table_name_22 WHERE surface = "hard" AND score_in_final = "6–1, 1–6, 7–6(4)" |
Which date's margin of victory was 3 and 2? | CREATE TABLE table_name_45 (date VARCHAR, margin_of_victory VARCHAR) | SELECT date FROM table_name_45 WHERE margin_of_victory = "3 and 2" |
What is the to par when the winning score was 67-68-70-66=271? | CREATE TABLE table_name_76 (to_par VARCHAR, winning_score VARCHAR) | SELECT to_par FROM table_name_76 WHERE winning_score = 67 - 68 - 70 - 66 = 271 |
What is the to par when the tournament involved was the Transitions Championship? | CREATE TABLE table_name_45 (to_par VARCHAR, tournament VARCHAR) | SELECT to_par FROM table_name_45 WHERE tournament = "transitions championship" |
On what date was the Transitions Championship? | CREATE TABLE table_name_46 (date VARCHAR, tournament VARCHAR) | SELECT date FROM table_name_46 WHERE tournament = "transitions championship" |
Who was the runner-up on Jul 14, 1968? | CREATE TABLE table_name_64 (runner_s__up VARCHAR, date VARCHAR) | SELECT runner_s__up FROM table_name_64 WHERE date = "jul 14, 1968" |
What is the winning score of the tournament with Charles Coody as the runner-up? | CREATE TABLE table_name_91 (winning_score VARCHAR, runner_s__up VARCHAR) | SELECT winning_score FROM table_name_91 WHERE runner_s__up = "charles coody" |
What is the 2011 value of the French Open, which has a 2006 value of A? | CREATE TABLE table_name_2 (tournament VARCHAR) | SELECT 2011 FROM table_name_2 WHERE 2006 = "a" AND tournament = "french open" |
What is the tournament with a 2006 value of A and a 2011 value of 1r? | CREATE TABLE table_name_13 (tournament VARCHAR) | SELECT tournament FROM table_name_13 WHERE 2006 = "a" AND 2011 = "1r" |
What is the 2007 value of the US Open? | CREATE TABLE table_name_16 (tournament VARCHAR) | SELECT 2007 FROM table_name_16 WHERE tournament = "us open" |
What is the tournament with a 2006 value of A and a 2011 value of 3r? | CREATE TABLE table_name_59 (tournament VARCHAR) | SELECT tournament FROM table_name_59 WHERE 2006 = "a" AND 2011 = "3r" |
What Catalog was released in Germany? | CREATE TABLE table_name_47 (catalog VARCHAR, region VARCHAR) | SELECT catalog FROM table_name_47 WHERE region = "germany" |
What Region was the Catalog magik muzik 805-5 released in? | CREATE TABLE table_name_5 (region VARCHAR, catalog VARCHAR) | SELECT region FROM table_name_5 WHERE catalog = "magik muzik 805-5" |
What is the total number of Dates during which the Catalog nebbc003 was given? | CREATE TABLE table_name_71 (date INTEGER, catalog VARCHAR) | SELECT SUM(date) FROM table_name_71 WHERE catalog = "nebbc003" |
What is the highest Population per km² (2009) that is in western province, with an Area (km²) larger than 5,475? | CREATE TABLE table_name_33 (population_per_km²__2009_ INTEGER, province VARCHAR, area__km²_ VARCHAR) | SELECT MAX(population_per_km²__2009_) FROM table_name_33 WHERE province = "western province" AND area__km²_ > 5 OFFSET 475 |
What is the lowest Population per km² (2009) that has a Solomon Islands province, with an Area (km²) smaller than 28,400? | CREATE TABLE table_name_21 (population_per_km²__2009_ INTEGER, province VARCHAR, area__km²_ VARCHAR) | SELECT MIN(population_per_km²__2009_) FROM table_name_21 WHERE province = "solomon islands" AND area__km²_ < 28 OFFSET 400 |
What Team was in 2005? | CREATE TABLE table_name_92 (team VARCHAR, year VARCHAR) | SELECT team FROM table_name_92 WHERE year = 2005 |
Before 2008, if the Manufacturer is dodge and the start is under 9, what's the highest finish time? | CREATE TABLE table_name_17 (finish INTEGER, year VARCHAR, manufacturer VARCHAR, start VARCHAR) | SELECT MAX(finish) FROM table_name_17 WHERE manufacturer = "dodge" AND start < 9 AND year < 2008 |
When the team is penske and they start under 9, what's the average finish time? | CREATE TABLE table_name_80 (finish INTEGER, team VARCHAR, start VARCHAR) | SELECT AVG(finish) FROM table_name_80 WHERE team = "penske" AND start < 9 |
What is the sum of Gold, when Total is greater than 2, when Bronze is greater than 1, and when Silver is less than 1? | CREATE TABLE table_name_70 (gold INTEGER, silver VARCHAR, total VARCHAR, bronze VARCHAR) | SELECT SUM(gold) FROM table_name_70 WHERE total > 2 AND bronze > 1 AND silver < 1 |
What is the sum of Gold, when Total is less than 1? | CREATE TABLE table_name_14 (gold INTEGER, total INTEGER) | SELECT SUM(gold) FROM table_name_14 WHERE total < 1 |
What is the average Total, when Gold is 0, and when Nation is Iran? | CREATE TABLE table_name_71 (total INTEGER, gold VARCHAR, nation VARCHAR) | SELECT AVG(total) FROM table_name_71 WHERE gold = 0 AND nation = "iran" |
What is the sum of Total, when Nation is West Germany, and when Gold is greater than 2? | CREATE TABLE table_name_45 (total INTEGER, nation VARCHAR, gold VARCHAR) | SELECT SUM(total) FROM table_name_45 WHERE nation = "west germany" AND gold > 2 |
What is the average Total, when Gold is less than 0? | CREATE TABLE table_name_12 (total INTEGER, gold INTEGER) | SELECT AVG(total) FROM table_name_12 WHERE gold < 0 |
What is the content of the Television service of Vesti? | CREATE TABLE table_name_58 (content VARCHAR, television_service VARCHAR) | SELECT content FROM table_name_58 WHERE television_service = "vesti" |
Which Television service has a Content of general television? | CREATE TABLE table_name_49 (television_service VARCHAR, content VARCHAR) | SELECT television_service FROM table_name_49 WHERE content = "general television" |
Which Administrative district has a Pre-1009 province of gwannae -do and a Post-1009 province of seohae -do? | CREATE TABLE table_name_76 (administrative_district VARCHAR, pre_1009_province VARCHAR, post_1009_province VARCHAR) | SELECT administrative_district FROM table_name_76 WHERE pre_1009_province = "gwannae -do" AND post_1009_province = "seohae -do" |
What kind of Modern equivalent that has a Pre-1009 province of sakbang -do, and a Province of Silla of sakju? | CREATE TABLE table_name_15 (modern_equivalent VARCHAR, pre_1009_province VARCHAR, province_of_silla VARCHAR) | SELECT modern_equivalent FROM table_name_15 WHERE pre_1009_province = "sakbang -do" AND province_of_silla = "sakju" |
What kind of Modern equivalent has a Post-1009 province of gyeongsang -do, and a Administrative district of jinju -mok, and a Province of Silla of gangju? | CREATE TABLE table_name_88 (modern_equivalent VARCHAR, province_of_silla VARCHAR, post_1009_province VARCHAR, administrative_district VARCHAR) | SELECT modern_equivalent FROM table_name_88 WHERE post_1009_province = "gyeongsang -do" AND administrative_district = "jinju -mok" AND province_of_silla = "gangju" |
WHat kind of Province of Silla has a Modern equivalent of pyeongan? | CREATE TABLE table_name_25 (province_of_silla VARCHAR, modern_equivalent VARCHAR) | SELECT province_of_silla FROM table_name_25 WHERE modern_equivalent = "pyeongan" |
Which Pre-1009 province has a Post-1009 province of donggye? | CREATE TABLE table_name_36 (pre_1009_province VARCHAR, post_1009_province VARCHAR) | SELECT pre_1009_province FROM table_name_36 WHERE post_1009_province = "donggye" |
WHich Province of Silla has a Modern equivalent of south jeolla, and a Administrative district of seungju? | CREATE TABLE table_name_33 (province_of_silla VARCHAR, modern_equivalent VARCHAR, administrative_district VARCHAR) | SELECT province_of_silla FROM table_name_33 WHERE modern_equivalent = "south jeolla" AND administrative_district = "seungju" |
What was the lowest year that a player from midfield won first team honors? | CREATE TABLE table_name_12 (year INTEGER, team VARCHAR, position VARCHAR) | SELECT MIN(year) FROM table_name_12 WHERE team = "first team" AND position = "midfield" |
What is the date of the munich, germany tournament? | CREATE TABLE table_name_52 (date VARCHAR, tournament VARCHAR) | SELECT date FROM table_name_52 WHERE tournament = "munich, germany" |
What tournament is on October 27, 2003? | CREATE TABLE table_name_84 (tournament VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_84 WHERE date = "october 27, 2003" |
Who is the opponent in the final of the tournament on May 22, 2006? | CREATE TABLE table_name_88 (opponent_in_final VARCHAR, date VARCHAR) | SELECT opponent_in_final FROM table_name_88 WHERE date = "may 22, 2006" |
What is the surface of the tournament with david nalbandian as the opponent in the final? | CREATE TABLE table_name_53 (surface VARCHAR, opponent_in_final VARCHAR) | SELECT surface FROM table_name_53 WHERE opponent_in_final = "david nalbandian" |
Who was the player from the United States with a score of 70-70-71=211? | CREATE TABLE table_name_66 (player VARCHAR, country VARCHAR, score VARCHAR) | SELECT player FROM table_name_66 WHERE country = "united states" AND score = 70 - 70 - 71 = 211 |
What place was Dave Stockton when he had a to par of +1? | CREATE TABLE table_name_10 (place VARCHAR, to_par VARCHAR, player VARCHAR) | SELECT place FROM table_name_10 WHERE to_par = "+1" AND player = "dave stockton" |
Who had a to par of +2 and a score of 78-69-68=215? | CREATE TABLE table_name_22 (player VARCHAR, to_par VARCHAR, score VARCHAR) | SELECT player FROM table_name_22 WHERE to_par = "+2" AND score = 78 - 69 - 68 = 215 |
What was Tom Kite's to par? | CREATE TABLE table_name_63 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_63 WHERE player = "tom kite" |
What was the score of T3 place? | CREATE TABLE table_name_67 (score VARCHAR, place VARCHAR) | SELECT score FROM table_name_67 WHERE place = "t3" |
Leading scorer during the game of 68-79? | CREATE TABLE table_name_45 (Leading VARCHAR, score VARCHAR) | SELECT Leading AS scorer FROM table_name_45 WHERE score = "68-79" |
Who is the runner-up from Milwaukee? | CREATE TABLE table_name_27 (runner_up VARCHAR, city VARCHAR) | SELECT runner_up FROM table_name_27 WHERE city = "milwaukee" |
What was the oil pattern for runner-up Pete Weber? | CREATE TABLE table_name_26 (oil_pattern VARCHAR, runner_up VARCHAR) | SELECT oil_pattern FROM table_name_26 WHERE runner_up = "pete weber" |
What city was the Dick Weber Open in? | CREATE TABLE table_name_22 (city VARCHAR, event VARCHAR) | SELECT city FROM table_name_22 WHERE event = "dick weber open" |
What city had the chameleon oil pattern at the Go RV'ing Classic? | CREATE TABLE table_name_21 (city VARCHAR, oil_pattern VARCHAR, event VARCHAR) | SELECT city FROM table_name_21 WHERE oil_pattern = "chameleon" AND event = "go rv'ing classic" |
What notes are for years earlier than 2010? | CREATE TABLE table_name_50 (notes VARCHAR, year INTEGER) | SELECT notes FROM table_name_50 WHERE year < 2010 |
What competition took place in a year later than 2009 with team notes? | CREATE TABLE table_name_8 (competition VARCHAR, year VARCHAR, notes VARCHAR) | SELECT competition FROM table_name_8 WHERE year > 2009 AND notes = "team" |
What was the position in 2010 with team notes? | CREATE TABLE table_name_90 (position VARCHAR, year VARCHAR, notes VARCHAR) | SELECT position FROM table_name_90 WHERE year = 2010 AND notes = "team" |
What is the lowest Year, when Tournament is "Beijing"? | CREATE TABLE table_name_51 (year INTEGER, tournament VARCHAR) | SELECT MIN(year) FROM table_name_51 WHERE tournament = "beijing" |
What is Winner, when Year is 2013? | CREATE TABLE table_name_11 (winner VARCHAR, year VARCHAR) | SELECT winner FROM table_name_11 WHERE year = 2013 |
What is Round, when Tournament is "Paris"? | CREATE TABLE table_name_61 (round VARCHAR, tournament VARCHAR) | SELECT round FROM table_name_61 WHERE tournament = "paris" |
What is Round, when Winner is "Ivanovic", when Year is less than 2008, and when Tournament is "Paris"? | CREATE TABLE table_name_60 (round VARCHAR, tournament VARCHAR, winner VARCHAR, year VARCHAR) | SELECT round FROM table_name_60 WHERE winner = "ivanovic" AND year < 2008 AND tournament = "paris" |
What is Score, when Year is before 2007, and when Tournament is "Sydney"? | CREATE TABLE table_name_88 (score VARCHAR, year VARCHAR, tournament VARCHAR) | SELECT score FROM table_name_88 WHERE year < 2007 AND tournament = "sydney" |
What is the lowest crowd of the west coast home team? | CREATE TABLE table_name_86 (crowd INTEGER, home_team VARCHAR) | SELECT MIN(crowd) FROM table_name_86 WHERE home_team = "west coast" |
What is the ground of the Geelong Away team? | CREATE TABLE table_name_74 (ground VARCHAR, away_team VARCHAR) | SELECT ground FROM table_name_74 WHERE away_team = "geelong" |
What team has more than 49 laps and a grid of 8? | CREATE TABLE table_name_63 (team VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT team FROM table_name_63 WHERE laps > 49 AND grid = 8 |
What is the grid sum with more than 50 laps? | CREATE TABLE table_name_16 (grid INTEGER, laps INTEGER) | SELECT SUM(grid) FROM table_name_16 WHERE laps > 50 |
What's the track for 1978? | CREATE TABLE table_name_47 (track VARCHAR, year VARCHAR) | SELECT track FROM table_name_47 WHERE year = 1978 |
What's the track for 1982? | CREATE TABLE table_name_18 (track VARCHAR, year VARCHAR) | SELECT track FROM table_name_18 WHERE year = 1982 |
What was the highest long with less than 7 losses and an Avg/G smaller than 25.1? | CREATE TABLE table_name_3 (long INTEGER, loss VARCHAR, avg_g VARCHAR) | SELECT MAX(long) FROM table_name_3 WHERE loss < 7 AND avg_g < 25.1 |
What was Rock Cartwright's highest long with more than 11 losses? | CREATE TABLE table_name_44 (long INTEGER, name VARCHAR, loss VARCHAR) | SELECT AVG(long) FROM table_name_44 WHERE name = "rock cartwright" AND loss > 11 |
What is the Company Name, when the Accreditation Level is Joyn Hot Fixes, and when the Accreditation Status is Approved (Awarded 17.05.13)? | CREATE TABLE table_name_13 (company_name VARCHAR, accreditation_level VARCHAR, accreditation_status VARCHAR) | SELECT company_name FROM table_name_13 WHERE accreditation_level = "joyn hot fixes" AND accreditation_status = "approved (awarded 17.05.13)" |
What is the Accreditation Type, when the Accreditation Level is Joyn, and when the Hardware Model is Nokia 700? | CREATE TABLE table_name_72 (accreditation_type VARCHAR, accreditation_level VARCHAR, hardware_model VARCHAR) | SELECT accreditation_type FROM table_name_72 WHERE accreditation_level = "joyn" AND hardware_model = "nokia 700" |
What is the Accreditation Status, when the Product Name is LG RCS-e Client? | CREATE TABLE table_name_83 (accreditation_status VARCHAR, product_name VARCHAR) | SELECT accreditation_status FROM table_name_83 WHERE product_name = "lg rcs-e client" |
What is the Company Name, when the Accreditation Status is Approved (Valid Until 03.07.13)? | CREATE TABLE table_name_76 (company_name VARCHAR, accreditation_status VARCHAR) | SELECT company_name FROM table_name_76 WHERE accreditation_status = "approved (valid until 03.07.13)" |
What is the Accreditation Level, when the Hardware Model is GT-I9100? | CREATE TABLE table_name_7 (accreditation_level VARCHAR, hardware_model VARCHAR) | SELECT accreditation_level FROM table_name_7 WHERE hardware_model = "gt-i9100" |
What is the Product Name, when the Company Name is HTC Corporation? | CREATE TABLE table_name_63 (product_name VARCHAR, company_name VARCHAR) | SELECT product_name FROM table_name_63 WHERE company_name = "htc corporation" |
What was the most recent year the venue was Barcelona, Spain? | CREATE TABLE table_name_37 (year INTEGER, venue VARCHAR) | SELECT MAX(year) FROM table_name_37 WHERE venue = "barcelona, spain" |
Wat was the result for the 20 km after 2008 when the venue was Metz, France? | CREATE TABLE table_name_13 (result VARCHAR, venue VARCHAR, year VARCHAR, event VARCHAR) | SELECT result FROM table_name_13 WHERE year > 2008 AND event = "20 km" AND venue = "metz, france" |
What is the date of the match with sheffield wednesday as the away team? | CREATE TABLE table_name_62 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_62 WHERE away_team = "sheffield wednesday" |
what is the swimsuit score when the interview score is 8.626 (5)? | CREATE TABLE table_name_19 (swimsuit VARCHAR, interview VARCHAR) | SELECT swimsuit FROM table_name_19 WHERE interview = "8.626 (5)" |
what is the swimsuit score when the semifinal average score is 8.367 (10)? | CREATE TABLE table_name_86 (swimsuit VARCHAR, semifinal_average VARCHAR) | SELECT swimsuit FROM table_name_86 WHERE semifinal_average = "8.367 (10)" |
what is the preliminary average score when the evening gown score is 8.774 (6)? | CREATE TABLE table_name_58 (preliminary_average VARCHAR, evening_gown VARCHAR) | SELECT preliminary_average FROM table_name_58 WHERE evening_gown = "8.774 (6)" |
what is the preliminary average score when the interview score is 8.600 (6)? | CREATE TABLE table_name_78 (preliminary_average VARCHAR, interview VARCHAR) | SELECT preliminary_average FROM table_name_78 WHERE interview = "8.600 (6)" |
what is the swimsuit score when evening gown score is 9.165 (3)? | CREATE TABLE table_name_13 (swimsuit VARCHAR, evening_gown VARCHAR) | SELECT swimsuit FROM table_name_13 WHERE evening_gown = "9.165 (3)" |
what is the interview score when the preliminary average is 8.529 (6)? | CREATE TABLE table_name_53 (interview VARCHAR, preliminary_average VARCHAR) | SELECT interview FROM table_name_53 WHERE preliminary_average = "8.529 (6)" |
What is the average wins with 5 cuts and 1 in the top-10? | CREATE TABLE table_name_91 (wins INTEGER, cuts_made VARCHAR, top_10 VARCHAR) | SELECT AVG(wins) FROM table_name_91 WHERE cuts_made = 5 AND top_10 = 1 |
What is the sum of top-10 values for the Open Championship and less than 3 in the top-25? | CREATE TABLE table_name_61 (top_10 INTEGER, tournament VARCHAR, top_25 VARCHAR) | SELECT SUM(top_10) FROM table_name_61 WHERE tournament = "the open championship" AND top_25 < 3 |
What is the smallest number of events with 24 cuts and less than 11 in the top-25? | CREATE TABLE table_name_34 (events INTEGER, cuts_made VARCHAR, top_25 VARCHAR) | SELECT MIN(events) FROM table_name_34 WHERE cuts_made = 24 AND top_25 < 11 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.