instruction stringlengths 67 299 | input stringlengths 88 550 | output stringlengths 32 484 |
|---|---|---|
Write a SQL query that answers the following question: What is the name of the tournament played 13 November 2000? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (tournament VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_35 WHERE date = "13 november 2000" |
Write a SQL query that answers the following question: Which tournament was played on 12 February 2001? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (tournament VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_21 WHERE date = "12 february 2001" |
Write a SQL query that answers the following question: What is the average round number with wide receiver as position and Clark University as the college and the pick number is bigger than 166? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_18 (round__number INTEGER, pick__number VARCHAR, position VARCHAR, college VARCHAR) | SELECT AVG(round__number) FROM table_name_18 WHERE position = "wide receiver" AND college = "clark university" AND pick__number > 166 |
Write a SQL query that answers the following question: Which team had a year entering the league under 2009, located in Bath? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (team VARCHAR, year_entered_league VARCHAR, location VARCHAR) | SELECT team FROM table_name_21 WHERE year_entered_league < 2009 AND location = "bath" |
Write a SQL query that answers the following question: What is the year of entry for the University of Essex? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (year_entered_league VARCHAR, university VARCHAR) | SELECT year_entered_league FROM table_name_70 WHERE university = "university of essex" |
Write a SQL query that answers the following question: What is the 2013-2014 division for the Wolverhampton Wildcats? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (team VARCHAR) | SELECT 2013 AS _14_division FROM table_name_60 WHERE team = "wolverhampton wildcats" |
Write a SQL query that answers the following question: What is the least amount of draws with an against of 1261? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (draws INTEGER, against VARCHAR) | SELECT MIN(draws) FROM table_name_16 WHERE against = 1261 |
Write a SQL query that answers the following question: What label shows an Album of cover version v? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_24 (label VARCHAR, album VARCHAR) | SELECT label FROM table_name_24 WHERE album = "cover version v" |
Write a SQL query that answers the following question: What is the Label when the album shows cover version vi? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_26 (label VARCHAR, album VARCHAR) | SELECT label FROM table_name_26 WHERE album = "cover version vi" |
Write a SQL query that answers the following question: What is the name of the Covered Song when the Album shows cover version iii? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (covered_song VARCHAR, album VARCHAR) | SELECT covered_song FROM table_name_7 WHERE album = "cover version iii" |
Write a SQL query that answers the following question: What is the sum of Week when there were 67,968 people in attendance? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (week INTEGER, attendance VARCHAR) | SELECT SUM(week) FROM table_name_66 WHERE attendance = "67,968" |
Write a SQL query that answers the following question: What is the Week number with a result of l 31–28? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_77 (week VARCHAR, result VARCHAR) | SELECT COUNT(week) FROM table_name_77 WHERE result = "l 31–28" |
Write a SQL query that answers the following question: What was the score at the Tie no. 1 game? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (score VARCHAR, tie_no VARCHAR) | SELECT score FROM table_name_37 WHERE tie_no = "1" |
Write a SQL query that answers the following question: What was the attendance at the West Ham United home game? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_69 (attendance VARCHAR, home_team VARCHAR) | SELECT attendance FROM table_name_69 WHERE home_team = "west ham united" |
Write a SQL query that answers the following question: What is the Sport with a Name that is gustav larsson? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (sport VARCHAR, name VARCHAR) | SELECT sport FROM table_name_9 WHERE name = "gustav larsson" |
Write a SQL query that answers the following question: What is the Name with an Event that is men's time trial? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_15 (name VARCHAR, event VARCHAR) | SELECT name FROM table_name_15 WHERE event = "men's time trial" |
Write a SQL query that answers the following question: At which venue did the event held on 15 November 2010 occur? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_78 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_78 WHERE date = "15 november 2010" |
Write a SQL query that answers the following question: Which Points has a Performer of rob burke band and a Draw larger than 1? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_32 (points INTEGER, performer VARCHAR, draw VARCHAR) | SELECT AVG(points) FROM table_name_32 WHERE performer = "rob burke band" AND draw > 1 |
Write a SQL query that answers the following question: Which Points have a Performer of seán monaghan and a Draw smaller than 7? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_87 (points INTEGER, performer VARCHAR, draw VARCHAR) | SELECT MIN(points) FROM table_name_87 WHERE performer = "seán monaghan" AND draw < 7 |
Write a SQL query that answers the following question: Which Points has a Performer of rob burke band? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (points VARCHAR, performer VARCHAR) | SELECT COUNT(points) FROM table_name_7 WHERE performer = "rob burke band" |
Write a SQL query that answers the following question: What is the Finish of 28 Wins? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (finish VARCHAR, wins VARCHAR) | SELECT finish FROM table_name_8 WHERE wins = "28" |
Write a SQL query that answers the following question: What is the Finish of the Reno Bighorns Wins? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (finish VARCHAR, wins VARCHAR) | SELECT finish FROM table_name_41 WHERE wins = "reno bighorns" |
Write a SQL query that answers the following question: What is the Finish of 28 Wins? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_49 (finish VARCHAR, wins VARCHAR) | SELECT finish FROM table_name_49 WHERE wins = "28" |
Write a SQL query that answers the following question: What is the Western Division of Wins with a 4th Finish? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (wins VARCHAR, division VARCHAR, finish VARCHAR) | SELECT wins FROM table_name_95 WHERE division = "western" AND finish = "4th" |
Write a SQL query that answers the following question: What are the losses of the playoffs season? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_56 (losses VARCHAR, season VARCHAR) | SELECT losses FROM table_name_56 WHERE season = "playoffs" |
Write a SQL query that answers the following question: What is Team 1, when Team 2 is Saint Louis? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_84 (team_1 VARCHAR, team_2 VARCHAR) | SELECT team_1 FROM table_name_84 WHERE team_2 = "saint louis" |
Write a SQL query that answers the following question: What is Agg., when Team 2 is Mukungwa? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_42 (agg VARCHAR, team_2 VARCHAR) | SELECT agg FROM table_name_42 WHERE team_2 = "mukungwa" |
Write a SQL query that answers the following question: What is the Round with an Opponent that is torpedo moscow? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (round VARCHAR, opponent VARCHAR) | SELECT round FROM table_name_35 WHERE opponent = "torpedo moscow" |
Write a SQL query that answers the following question: Can you tell me the sum of Matches that has the Goals of 103, and the Rank larger than 9? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (matches INTEGER, goals VARCHAR, rank VARCHAR) | SELECT SUM(matches) FROM table_name_7 WHERE goals = 103 AND rank > 9 |
Write a SQL query that answers the following question: Can you tell me the Name that has the Goals larger than 98, and the Rank of 7? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_24 (name VARCHAR, goals VARCHAR, rank VARCHAR) | SELECT name FROM table_name_24 WHERE goals > 98 AND rank = 7 |
Write a SQL query that answers the following question: How many laps had a time stat of accident for the rider carmelo morales when the grid was more than 25? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_84 (laps INTEGER, grid VARCHAR, time VARCHAR, rider VARCHAR) | SELECT SUM(laps) FROM table_name_84 WHERE time = "accident" AND rider = "carmelo morales" AND grid > 25 |
Write a SQL query that answers the following question: How many laps had a time of +2.987? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (laps VARCHAR, time VARCHAR) | SELECT COUNT(laps) FROM table_name_37 WHERE time = "+2.987" |
Write a SQL query that answers the following question: Which bike had fewer than 23 laps and a grid number of 4? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_15 (bike VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT bike FROM table_name_15 WHERE laps < 23 AND grid = 4 |
Write a SQL query that answers the following question: What is the Record for week 14? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (record VARCHAR, week VARCHAR) | SELECT record FROM table_name_88 WHERE week = 14 |
Write a SQL query that answers the following question: What is the Result with an NFL Recap, played at bank of america stadium? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (result VARCHAR, nfl_recap VARCHAR, game_site VARCHAR) | SELECT result FROM table_name_41 WHERE nfl_recap = "recap" AND game_site = "bank of america stadium" |
Write a SQL query that answers the following question: What is the Record for week 12? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (record VARCHAR, week VARCHAR) | SELECT record FROM table_name_95 WHERE week = 12 |
Write a SQL query that answers the following question: What is the Opponent with a time of 2:05 p.m., and the results were w 26–20? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (opponent VARCHAR, time VARCHAR, result VARCHAR) | SELECT opponent FROM table_name_62 WHERE time = "2:05 p.m." AND result = "w 26–20" |
Write a SQL query that answers the following question: What is the highest Week for october 12, 2008? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (week INTEGER, date VARCHAR) | SELECT MAX(week) FROM table_name_67 WHERE date = "october 12, 2008" |
Write a SQL query that answers the following question: Which team has 1 as the drawn, with 2 as the lost? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (team VARCHAR, drawn VARCHAR, lost VARCHAR) | SELECT team FROM table_name_37 WHERE drawn = 1 AND lost = 2 |
Write a SQL query that answers the following question: How many drawns have 7 for the lost? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (drawn INTEGER, lost VARCHAR) | SELECT SUM(drawn) FROM table_name_83 WHERE lost = 7 |
Write a SQL query that answers the following question: What is the average played that has a drawn greater than 1, with an against greater than 16? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_17 (played INTEGER, drawn VARCHAR, against VARCHAR) | SELECT AVG(played) FROM table_name_17 WHERE drawn > 1 AND against > 16 |
Write a SQL query that answers the following question: What is the sum of Maidens with a number of Matches that is 2? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_36 (maidens INTEGER, matches VARCHAR) | SELECT SUM(maidens) FROM table_name_36 WHERE matches = 2 |
Write a SQL query that answers the following question: Ranking higher than 2, what Team has Player Paolo Maldini? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_52 (team VARCHAR, rank VARCHAR, name VARCHAR) | SELECT team FROM table_name_52 WHERE rank > 2 AND name = "paolo maldini" |
Write a SQL query that answers the following question: What Country is in Rank 2? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (country VARCHAR, rank VARCHAR) | SELECT country FROM table_name_97 WHERE rank = 2 |
Write a SQL query that answers the following question: What date was Leo Mainoldi (24) the leading scorer? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_72 (date VARCHAR, leading_scorer VARCHAR) | SELECT date FROM table_name_72 WHERE leading_scorer = "leo mainoldi (24)" |
Write a SQL query that answers the following question: Who is the visitor with the 14-10 record? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (visitor VARCHAR, record VARCHAR) | SELECT visitor FROM table_name_61 WHERE record = "14-10" |
Write a SQL query that answers the following question: What is the record of the 73-82 score? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_32 (record VARCHAR, score VARCHAR) | SELECT record FROM table_name_32 WHERE score = "73-82" |
Write a SQL query that answers the following question: Who is the leading scorer of the Villa De Los Barrios visitor? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_56 (leading_scorer VARCHAR, visitor VARCHAR) | SELECT leading_scorer FROM table_name_56 WHERE visitor = "villa de los barrios" |
Write a SQL query that answers the following question: Who is the visitor with a 14-10 record? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (visitor VARCHAR, record VARCHAR) | SELECT visitor FROM table_name_71 WHERE record = "14-10" |
Write a SQL query that answers the following question: What is the score of the team with the 14-9 record? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_43 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_43 WHERE record = "14-9" |
Write a SQL query that answers the following question: What was the date of the game with 6 goals? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (date VARCHAR, goal VARCHAR) | SELECT date FROM table_name_61 WHERE goal = 6 |
Write a SQL query that answers the following question: What was the highest number of goals for a game held at Hannover? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_27 (goal INTEGER, venue VARCHAR) | SELECT MAX(goal) FROM table_name_27 WHERE venue = "hannover" |
Write a SQL query that answers the following question: What was the result of the game with more than 12 goals at Pasadena? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_80 (result VARCHAR, goal VARCHAR, venue VARCHAR) | SELECT result FROM table_name_80 WHERE goal > 12 AND venue = "pasadena" |
Write a SQL query that answers the following question: What round was Andre Fluellen drafted as a Defensive Tackle? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (round VARCHAR, position VARCHAR, player VARCHAR) | SELECT COUNT(round) FROM table_name_54 WHERE position = "defensive tackle" AND player = "andre fluellen" |
Write a SQL query that answers the following question: After Round 5, which player was drafted for Defensive Tackle? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (player VARCHAR, round VARCHAR, position VARCHAR) | SELECT player FROM table_name_68 WHERE round > 5 AND position = "defensive tackle" |
Write a SQL query that answers the following question: What was the earliest Round for Central Florida? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_32 (round INTEGER, team VARCHAR) | SELECT MIN(round) FROM table_name_32 WHERE team = "central florida" |
Write a SQL query that answers the following question: What is the date of the label Dos or Die Recordings? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (date VARCHAR, label VARCHAR) | SELECT date FROM table_name_9 WHERE label = "dos or die recordings" |
Write a SQL query that answers the following question: What is the label for 2002, in Germany, Catalog Dos 195? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (label VARCHAR, catalog VARCHAR, date VARCHAR, region VARCHAR) | SELECT label FROM table_name_23 WHERE date = "2002" AND region = "germany" AND catalog = "dos 195" |
Write a SQL query that answers the following question: What region has a 2002 date, and a Catalog dos 195? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (region VARCHAR, date VARCHAR, catalog VARCHAR) | SELECT region FROM table_name_70 WHERE date = "2002" AND catalog = "dos 195" |
Write a SQL query that answers the following question: What is the Winners when the United States is the runner-up at st. germain golf club? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (winners VARCHAR, runners_up VARCHAR, venue VARCHAR) | SELECT winners FROM table_name_90 WHERE runners_up = "united states" AND venue = "st. germain golf club" |
Write a SQL query that answers the following question: What is the average Year when Australia was the runner-up at victoria golf club? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (year INTEGER, runners_up VARCHAR, venue VARCHAR) | SELECT AVG(year) FROM table_name_8 WHERE runners_up = "australia" AND venue = "victoria golf club" |
Write a SQL query that answers the following question: What is the Location when France was the runner-up at club de campo? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (location VARCHAR, runners_up VARCHAR, venue VARCHAR) | SELECT location FROM table_name_41 WHERE runners_up = "france" AND venue = "club de campo" |
Write a SQL query that answers the following question: What is the Location when Canada was the runner-up and Australia was the winner? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_77 (location VARCHAR, runners_up VARCHAR, winners VARCHAR) | SELECT location FROM table_name_77 WHERE runners_up = "canada" AND winners = "australia" |
Write a SQL query that answers the following question: What is the Name of the Space Telescope Terminated on March 1993? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (name VARCHAR, terminated VARCHAR) | SELECT name FROM table_name_31 WHERE terminated = "march 1993" |
Write a SQL query that answers the following question: What is Party, when Opinion Research Centre (OPC) is 1.5%? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_33 (party VARCHAR, opinion_research_centre__opc_ VARCHAR) | SELECT party FROM table_name_33 WHERE opinion_research_centre__opc_ = "1.5%" |
Write a SQL query that answers the following question: What is Marplan, when Gallup is 1.5% | The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (marplan VARCHAR, gallup VARCHAR) | SELECT marplan FROM table_name_55 WHERE gallup = "1.5%" |
Write a SQL query that answers the following question: What is Opinion Research Centre (OPC), when Party is Conservative? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_40 (opinion_research_centre__opc_ VARCHAR, party VARCHAR) | SELECT opinion_research_centre__opc_ FROM table_name_40 WHERE party = "conservative" |
Write a SQL query that answers the following question: What is Harris, when Marplan is 1.3% | The relevant table was constructed using the following SQL : CREATE TABLE table_name_84 (harris VARCHAR, marplan VARCHAR) | SELECT harris FROM table_name_84 WHERE marplan = "1.3%" |
Write a SQL query that answers the following question: What are the fewest points that Roger Dutton/Tony Wright have received? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_15 (points INTEGER, rider VARCHAR) | SELECT MIN(points) FROM table_name_15 WHERE rider = "roger dutton/tony wright" |
Write a SQL query that answers the following question: How fast does the BMW with 6 points go? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_43 (speed VARCHAR, machine VARCHAR, points VARCHAR) | SELECT speed FROM table_name_43 WHERE machine = "bmw" AND points = 6 |
Write a SQL query that answers the following question: What is the average draw for Desi Dobreva, was it less than 6? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (draw INTEGER, artist VARCHAR, place VARCHAR) | SELECT AVG(draw) FROM table_name_64 WHERE artist = "desi dobreva" AND place < 6 |
Write a SQL query that answers the following question: What was the first leg score for the match that had AS Police as team 2? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (team_2 VARCHAR) | SELECT 1 AS st_leg FROM table_name_34 WHERE team_2 = "as police" |
Write a SQL query that answers the following question: What was the result for the Outstanding director of a musical category? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (result VARCHAR, category VARCHAR) | SELECT result FROM table_name_67 WHERE category = "outstanding director of a musical" |
Write a SQL query that answers the following question: What was the result of the Award of Drama desk award nominee Tom Hewitt. | The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (result VARCHAR, award VARCHAR, nominee VARCHAR) | SELECT result FROM table_name_37 WHERE award = "drama desk award" AND nominee = "tom hewitt" |
Write a SQL query that answers the following question: What year was best costume design the award category? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (year VARCHAR, category VARCHAR) | SELECT year FROM table_name_97 WHERE category = "best costume design" |
Write a SQL query that answers the following question: Which accolade has USA as the country, with a year less than 2009? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (accolade VARCHAR, country VARCHAR, year VARCHAR) | SELECT accolade FROM table_name_61 WHERE country = "usa" AND year < 2009 |
Write a SQL query that answers the following question: How many years have an accolade of 50 best albums of the year, with #3 as the rank? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (year INTEGER, accolade VARCHAR, rank VARCHAR) | SELECT SUM(year) FROM table_name_6 WHERE accolade = "50 best albums of the year" AND rank = "#3" |
Write a SQL query that answers the following question: Which rank has canada as the country? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_84 (rank VARCHAR, country VARCHAR) | SELECT rank FROM table_name_84 WHERE country = "canada" |
Write a SQL query that answers the following question: What is the name of the Guest Host for Episode Number of 5? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_73 (guest_host VARCHAR, episode_number VARCHAR) | SELECT guest_host FROM table_name_73 WHERE episode_number = 5 |
Write a SQL query that answers the following question: What is the Guest Host for the episode on 8 june 2008? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_2 (guest_host VARCHAR, air_date VARCHAR) | SELECT guest_host FROM table_name_2 WHERE air_date = "8 june 2008" |
Write a SQL query that answers the following question: What is the Musical Guest (Song performed) for the episode aired on 13 july 2008? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_2 (musical_guest__song_performed_ VARCHAR, air_date VARCHAR) | SELECT musical_guest__song_performed_ FROM table_name_2 WHERE air_date = "13 july 2008" |
Write a SQL query that answers the following question: What was the score for the 2014 FIFA World Cup Qualification (UEFA)? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (score VARCHAR, competition VARCHAR) | SELECT score FROM table_name_64 WHERE competition = "2014 fifa world cup qualification (uefa)" |
Write a SQL query that answers the following question: What was the kickoff time for week 11's game? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (kickoff_time VARCHAR, week VARCHAR) | SELECT kickoff_time FROM table_name_64 WHERE week = 11 |
Write a SQL query that answers the following question: When Mark O'meara was the senior player champion in a year greater than 1998, who was the tradition? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_14 (the_tradition VARCHAR, year VARCHAR, senior_players_championship VARCHAR) | SELECT the_tradition FROM table_name_14 WHERE year > 1998 AND senior_players_championship = "mark o'meara" |
Write a SQL query that answers the following question: Who was the tradition when Roberto Devicenzo won the U.S. Senior Open and the Senior British Open was founded in 1987? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (the_tradition VARCHAR, senior_british_open VARCHAR, us_senior_open VARCHAR) | SELECT the_tradition FROM table_name_83 WHERE senior_british_open = "founded in 1987" AND us_senior_open = "roberto devicenzo" |
Write a SQL query that answers the following question: Who won the Senior British Open when Hale Irwin (3/7) won the Senior PGA Championship? | The relevant table was constructed using the following SQL : 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)" |
Write a SQL query that answers the following question: When Tom Watson (5/6) won the Senior British Open who won the Senior PGA Championship? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (senior_pga_championship VARCHAR, senior_british_open VARCHAR) | SELECT senior_pga_championship FROM table_name_41 WHERE senior_british_open = "tom watson (5/6)" |
Write a SQL query that answers the following question: Which Week has Points For larger than 19, and an Opponent of philadelphia eagles, and Points Against larger than 7? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_17 (week INTEGER, points_against VARCHAR, points_for VARCHAR, opponent VARCHAR) | SELECT MAX(week) FROM table_name_17 WHERE points_for > 19 AND opponent = "philadelphia eagles" AND points_against > 7 |
Write a SQL query that answers the following question: Which Attendance has a First Downs smaller than 26, an Opponent of los angeles rams, and Points For larger than 28? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (attendance INTEGER, points_for VARCHAR, first_downs VARCHAR, opponent VARCHAR) | SELECT SUM(attendance) FROM table_name_98 WHERE first_downs < 26 AND opponent = "los angeles rams" AND points_for > 28 |
Write a SQL query that answers the following question: Which League Cup has a FA Cup of 5, and a Club of boston united, and a League smaller than 16? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_18 (league INTEGER, fa_cup VARCHAR, club VARCHAR) | SELECT MAX(league) AS Cup FROM table_name_18 WHERE fa_cup = 5 AND club = "boston united" AND league < 16 |
Write a SQL query that answers the following question: How many Total that has a FA Trophy of 0 and a Player of charlie butler? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (total VARCHAR, fa_trophy VARCHAR, player VARCHAR) | SELECT COUNT(total) FROM table_name_99 WHERE fa_trophy = 0 AND player = "charlie butler" |
Write a SQL query that answers the following question: How many FA Trophy has a Player of mario walsh and a League larger than 17? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_52 (fa_trophy INTEGER, player VARCHAR, league VARCHAR) | SELECT AVG(fa_trophy) FROM table_name_52 WHERE player = "mario walsh" AND league > 17 |
Write a SQL query that answers the following question: What was the score of the winning match on Oct 28, 1962? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (winning_score VARCHAR, date VARCHAR) | SELECT winning_score FROM table_name_64 WHERE date = "oct 28, 1962" |
Write a SQL query that answers the following question: By how many strokes did Lema beat Jack Nicklaus? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (margin_of_victory VARCHAR, runner_s__up VARCHAR) | SELECT margin_of_victory FROM table_name_16 WHERE runner_s__up = "jack nicklaus" |
Write a SQL query that answers the following question: Who was the runner-up on Jan 19, 1964? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (runner_s__up VARCHAR, date VARCHAR) | SELECT runner_s__up FROM table_name_89 WHERE date = "jan 19, 1964" |
Write a SQL query that answers the following question: How many Rebounds did Maccabi Tel Aviv Team get after Game 6? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_10 (rebounds VARCHAR, team VARCHAR, games VARCHAR) | SELECT COUNT(rebounds) FROM table_name_10 WHERE team = "maccabi tel aviv" AND games > 6 |
Write a SQL query that answers the following question: How many Games for the player with Rebounds from Efes Pilsen? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_3 (games VARCHAR, team VARCHAR) | SELECT games FROM table_name_3 WHERE team = "efes pilsen" |
Write a SQL query that answers the following question: How many Games for the Player from Lietuvos Rytas Vilnius with less the 43 Rebounds? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (games INTEGER, team VARCHAR, rebounds VARCHAR) | SELECT SUM(games) FROM table_name_68 WHERE team = "lietuvos rytas vilnius" AND rebounds < 43 |
Write a SQL query that answers the following question: Who is The Author of zhou clarke zhang? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_56 (name VARCHAR, authors VARCHAR) | SELECT name FROM table_name_56 WHERE authors = "zhou clarke zhang" |
Write a SQL query that answers the following question: What is the Status of primitive confuciusornithid .? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (status VARCHAR, notes VARCHAR) | SELECT status FROM table_name_21 WHERE notes = "primitive confuciusornithid ." |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.