training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_25 (date VARCHAR, time VARCHAR)
###human: What is the date of the event with a 1:54.00 time?
###assistant: SELECT date FROM table_name_25 WHERE time = "1:54.00" |
###context:CREATE TABLE table_name_59 (event VARCHAR, date VARCHAR)
###human: What event is on 18 December 2009?
###assistant: SELECT event FROM table_name_59 WHERE date = "18 december 2009" |
###context:CREATE TABLE table_name_44 (album VARCHAR, composer_s_ VARCHAR)
###human: Jimmie Lee Sloas was the composer for what album?
###assistant: SELECT album FROM table_name_44 WHERE composer_s_ = "jimmie lee sloas" |
###context:CREATE TABLE table_name_93 (composer_s_ VARCHAR, chr_chart_peak VARCHAR)
###human: Which composer had a CHR chart peak at #2?
###assistant: SELECT composer_s_ FROM table_name_93 WHERE chr_chart_peak = 2 |
###context:CREATE TABLE table_name_33 (date VARCHAR, venue VARCHAR)
###human: What was the date for Westport?
###assistant: SELECT date FROM table_name_33 WHERE venue = "westport" |
###context:CREATE TABLE table_name_61 (home_team VARCHAR, week VARCHAR)
###human: What is the home team in week 1?
###assistant: SELECT home_team FROM table_name_61 WHERE week = "1" |
###context:CREATE TABLE table_name_92 (week VARCHAR, away_team VARCHAR)
###human: In what week was the away team Auckland?
###assistant: SELECT week FROM table_name_92 WHERE away_team = "auckland" |
###context:CREATE TABLE table_name_58 (venue VARCHAR, week VARCHAR)
###human: What is the venue for week 1?
###assistant: SELECT venue FROM table_name_58 WHERE week = "1" |
###context:CREATE TABLE table_name_79 (title VARCHAR, year VARCHAR)
###human: What is the title in 1991?
###assistant: SELECT title FROM table_name_79 WHERE year = "1991" |
###context:CREATE TABLE table_name_42 (city___state VARCHAR, series VARCHAR)
###human: In what City/State did the ATCC Round 4 series take place?
###assistant: SELECT city___state FROM table_name_42 WHERE series = "atcc round 4" |
###context:CREATE TABLE table_name_62 (city___state VARCHAR, series VARCHAR)
###human: In what City/State did the ATCC Round 4 series take place?
###assistant: SELECT city___state FROM table_name_62 WHERE series = "atcc round 4" |
###context:CREATE TABLE table_name_16 (series VARCHAR, winner VARCHAR)
###human: Which series was won by Paul Morris?
###assistant: SELECT series FROM table_name_16 WHERE winner = "paul morris" |
###context:CREATE TABLE table_name_61 (date VARCHAR, series VARCHAR)
###human: On which date did the Winfield Triple Challenge series take place?
###assistant: SELECT date FROM table_name_61 WHERE series = "winfield triple challenge" |
###context:CREATE TABLE table_name_64 (circuit VARCHAR, team VARCHAR, series VARCHAR)
###human: What was the circuit for Team Peter Jackson Racing in the ATCC Round 4 series?
###assistant: SELECT circuit FROM table_name_64 WHERE team = "peter jackson racing" AND series = "atcc round 4" |
###context:CREATE TABLE table_name_11 (player VARCHAR, team_from VARCHAR)
###human: Which Player has a Team from of south shore kings?
###assistant: SELECT player FROM table_name_11 WHERE team_from = "south shore kings" |
###context:CREATE TABLE table_name_97 (nhl_team VARCHAR, team_from VARCHAR, league_from VARCHAR, pick__number VARCHAR)
###human: Which NHL team has a League from of western hockey league and a Pick # smaller than 23 and a Team from of prince george cougars?
###assistant: SELECT nhl_team FROM table_name_97 WHERE league_from = "western hockey league" AND pick__number < 23 AND team_from = "prince george cougars" |
###context:CREATE TABLE table_name_61 (position VARCHAR, pick__number VARCHAR, player VARCHAR)
###human: Which Position has a Pick # smaller than 26 and a Player of jack campbell?
###assistant: SELECT position FROM table_name_61 WHERE pick__number < 26 AND player = "jack campbell" |
###context:CREATE TABLE table_name_5 (money___ INTEGER, player VARCHAR, to_par VARCHAR)
###human: How much money did Willie Klein take home from the game in which he had a to par score larger than 13?
###assistant: SELECT SUM(money___) AS $__ FROM table_name_5 WHERE player = "willie klein" AND to_par > 13 |
###context:CREATE TABLE table_name_21 (attendance INTEGER, date VARCHAR)
###human: What was the attendance on September 11, 1988?
###assistant: SELECT AVG(attendance) FROM table_name_21 WHERE date = "september 11, 1988" |
###context:CREATE TABLE table_name_41 (attendance VARCHAR, week VARCHAR)
###human: What was the attendance on week 1?
###assistant: SELECT attendance FROM table_name_41 WHERE week = 1 |
###context:CREATE TABLE table_name_2 (wins INTEGER, points VARCHAR, draws VARCHAR)
###human: What was the lowest win when there were 34 points and more than 13 draws?
###assistant: SELECT MIN(wins) FROM table_name_2 WHERE points = 34 AND draws > 13 |
###context:CREATE TABLE table_name_87 (wins INTEGER, goals_scored VARCHAR, position VARCHAR)
###human: What was the highest win when there were more than 64 goals scored and a position smaller than 2?
###assistant: SELECT MAX(wins) FROM table_name_87 WHERE goals_scored > 64 AND position < 2 |
###context:CREATE TABLE table_name_66 (outgoing_manager VARCHAR, replaced_by VARCHAR)
###human: Who is the Outgoing Manager replaced by Sandy Clark?
###assistant: SELECT outgoing_manager FROM table_name_66 WHERE replaced_by = "sandy clark" |
###context:CREATE TABLE table_name_80 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)
###human: What is the Date of vacancy for Tommy McLean?
###assistant: SELECT date_of_vacancy FROM table_name_80 WHERE outgoing_manager = "tommy mclean" |
###context:CREATE TABLE table_name_74 (goals_scored VARCHAR, points INTEGER)
###human: What is the total number of Goals scored that has more than 45 Points?
###assistant: SELECT COUNT(goals_scored) FROM table_name_74 WHERE points > 45 |
###context:CREATE TABLE table_name_47 (goals_conceded VARCHAR, wins VARCHAR, draws VARCHAR, loses VARCHAR)
###human: What was the total number of Goals conceded when there were more than 4 losses, less than 5 draws, and more than 9 wins?
###assistant: SELECT COUNT(goals_conceded) FROM table_name_47 WHERE draws < 5 AND loses > 4 AND wins > 9 |
###context:CREATE TABLE table_name_79 (goals_scored INTEGER, games_played INTEGER)
###human: What is the sum of Goals scored when there was less than 20 Games played?
###assistant: SELECT SUM(goals_scored) FROM table_name_79 WHERE games_played < 20 |
###context:CREATE TABLE table_name_32 (country VARCHAR, to_par VARCHAR, player VARCHAR)
###human: Which Country has a To par of –2, and a Player of jim thorpe?
###assistant: SELECT country FROM table_name_32 WHERE to_par = "–2" AND player = "jim thorpe" |
###context:CREATE TABLE table_name_95 (place VARCHAR, country VARCHAR, to_par VARCHAR)
###human: Name the Place which has To par of –5, in united states?
###assistant: SELECT place FROM table_name_95 WHERE country = "united states" AND to_par = "–5" |
###context:CREATE TABLE table_name_4 (to_par VARCHAR, player VARCHAR)
###human: Name the To par of payne stewart?
###assistant: SELECT to_par FROM table_name_4 WHERE player = "payne stewart" |
###context:CREATE TABLE table_name_39 (player VARCHAR, country VARCHAR, to_par VARCHAR)
###human: WHo has a Country of united states and a To par of –3?
###assistant: SELECT player FROM table_name_39 WHERE country = "united states" AND to_par = "–3" |
###context:CREATE TABLE table_name_97 (power_plant VARCHAR, year_of_commission VARCHAR)
###human: What power plant was commissioned in 2008?
###assistant: SELECT power_plant FROM table_name_97 WHERE year_of_commission = 2008 |
###context:CREATE TABLE table_name_29 (nominated_work VARCHAR, category VARCHAR)
###human: What is the Nominated work of popularity award (actor in a motion picture)?
###assistant: SELECT nominated_work FROM table_name_29 WHERE category = "popularity award (actor in a motion picture)" |
###context:CREATE TABLE table_name_83 (game_site VARCHAR, opponent VARCHAR)
###human: What is the game site of the game with the san diego chargers as the opponent?
###assistant: SELECT game_site FROM table_name_83 WHERE opponent = "san diego chargers" |
###context:CREATE TABLE table_name_44 (team_1 VARCHAR)
###human: What is the first round when team 1 was toulouse fc (d1)?
###assistant: SELECT 1 AS st_round FROM table_name_44 WHERE team_1 = "toulouse fc (d1)" |
###context:CREATE TABLE table_name_57 (record VARCHAR, player VARCHAR)
###human: What is Shahar Pe'er's record?
###assistant: SELECT record FROM table_name_57 WHERE player = "shahar pe'er" |
###context:CREATE TABLE table_name_37 (country VARCHAR, place VARCHAR, player VARCHAR)
###human: Which country placed t3 and had the player Fred Couples?
###assistant: SELECT country FROM table_name_37 WHERE place = "t3" AND player = "fred couples" |
###context:CREATE TABLE table_name_74 (to_par VARCHAR, player VARCHAR, score VARCHAR)
###human: What is the to par for Fred Couples when the score is 68-66=134?
###assistant: SELECT to_par FROM table_name_74 WHERE score = 68 - 66 = 134 AND player = "fred couples" |
###context:CREATE TABLE table_name_60 (country VARCHAR, score VARCHAR)
###human: Which country scored 66-68=134?
###assistant: SELECT country FROM table_name_60 WHERE score = 66 - 68 = 134 |
###context:CREATE TABLE table_name_61 (place VARCHAR, player VARCHAR)
###human: What did Fred Couples place?
###assistant: SELECT place FROM table_name_61 WHERE player = "fred couples" |
###context:CREATE TABLE table_name_50 (player VARCHAR, score VARCHAR)
###human: What player scored 68-66=134?
###assistant: SELECT player FROM table_name_50 WHERE score = 68 - 66 = 134 |
###context:CREATE TABLE table_name_12 (player VARCHAR, to_par VARCHAR, score VARCHAR)
###human: What Player has a To par of +5 with a Score of 70-70-71-74=285?
###assistant: SELECT player FROM table_name_12 WHERE to_par = "+5" AND score = 70 - 70 - 71 - 74 = 285 |
###context:CREATE TABLE table_name_88 (place VARCHAR, score VARCHAR)
###human: What is the Place of the Player with a Score of 73-67-74-71=285?
###assistant: SELECT place FROM table_name_88 WHERE score = 73 - 67 - 74 - 71 = 285 |
###context:CREATE TABLE table_name_92 (player VARCHAR, place VARCHAR, score VARCHAR)
###human: What T9 Place Player had a Score of 73-67-74-71=285?
###assistant: SELECT player FROM table_name_92 WHERE place = "t9" AND score = 73 - 67 - 74 - 71 = 285 |
###context:CREATE TABLE table_name_53 (player VARCHAR, place VARCHAR)
###human: Who is the player with a t8 place?
###assistant: SELECT player FROM table_name_53 WHERE place = "t8" |
###context:CREATE TABLE table_name_53 (money___ INTEGER, place VARCHAR, score VARCHAR)
###human: What is the average amount of money of players in t8 place with a 68-71-69-72=280 score?
###assistant: SELECT AVG(money___) AS $__ FROM table_name_53 WHERE place = "t8" AND score = 68 - 71 - 69 - 72 = 280 |
###context:CREATE TABLE table_name_59 (country VARCHAR, player VARCHAR)
###human: What is the country of player vijay singh?
###assistant: SELECT country FROM table_name_59 WHERE player = "vijay singh" |
###context:CREATE TABLE table_name_96 (result_f_a VARCHAR, h___a VARCHAR, round VARCHAR)
###human: What is the Result F-A that was the quarter-final first leg round with a H/A of h?
###assistant: SELECT result_f_a FROM table_name_96 WHERE h___a = "h" AND round = "quarter-final first leg" |
###context:CREATE TABLE table_name_13 (opponent VARCHAR, record VARCHAR, score VARCHAR, decision VARCHAR)
###human: What was the opponent when the score was 3 - 2, and the decision was Raycroft, with a record of 25-29-1?
###assistant: SELECT opponent FROM table_name_13 WHERE score = "3 - 2" AND decision = "raycroft" AND record = "25-29-1" |
###context:CREATE TABLE table_name_90 (position VARCHAR, league_from VARCHAR, team_from VARCHAR)
###human: Which Position has a League from of western hockey league, and a Team from of everett silvertips?
###assistant: SELECT position FROM table_name_90 WHERE league_from = "western hockey league" AND team_from = "everett silvertips" |
###context:CREATE TABLE table_name_13 (player VARCHAR, position VARCHAR, league_from VARCHAR)
###human: Which Player has a Position of rw, and a League from of western hockey league?
###assistant: SELECT player FROM table_name_13 WHERE position = "rw" AND league_from = "western hockey league" |
###context:CREATE TABLE table_name_44 (pick__number INTEGER, nationality VARCHAR, team_from VARCHAR)
###human: Which Pick # has a Nationality of canada, and a Team from of sudbury wolves?
###assistant: SELECT MIN(pick__number) FROM table_name_44 WHERE nationality = "canada" AND team_from = "sudbury wolves" |
###context:CREATE TABLE table_name_61 (pick__number VARCHAR, team_from VARCHAR, league_from VARCHAR, nationality VARCHAR)
###human: Which Pick # has a League from of ontario hockey league, a Nationality of united states, and a Team from of brampton battalion?
###assistant: SELECT COUNT(pick__number) FROM table_name_61 WHERE league_from = "ontario hockey league" AND nationality = "united states" AND team_from = "brampton battalion" |
###context:CREATE TABLE table_name_95 (league_from VARCHAR, player VARCHAR, position VARCHAR, pick__number VARCHAR)
###human: Which League from has a Position of lw, a Pick # larger than 34, and a Player of bradley ross?
###assistant: SELECT league_from FROM table_name_95 WHERE position = "lw" AND pick__number > 34 AND player = "bradley ross" |
###context:CREATE TABLE table_name_99 (position VARCHAR, team_from VARCHAR, pick__number VARCHAR)
###human: Which Position has a Team from of ottawa 67's, and a Pick # smaller than 47?
###assistant: SELECT position FROM table_name_99 WHERE team_from = "ottawa 67's" AND pick__number < 47 |
###context:CREATE TABLE table_name_10 (incumbent VARCHAR, party VARCHAR, district VARCHAR)
###human: Who is the republican Incumbent for Pennsylvania 9?
###assistant: SELECT incumbent FROM table_name_10 WHERE party = "republican" AND district = "pennsylvania 9" |
###context:CREATE TABLE table_name_71 (results VARCHAR, incumbent VARCHAR)
###human: What are the results for Bill Shuster?
###assistant: SELECT results FROM table_name_71 WHERE incumbent = "bill shuster" |
###context:CREATE TABLE table_name_56 (first_elected INTEGER, district VARCHAR)
###human: What is the greatest first elected for Pennsylvania 10?
###assistant: SELECT MAX(first_elected) FROM table_name_56 WHERE district = "pennsylvania 10" |
###context:CREATE TABLE table_name_59 (country VARCHAR, finish VARCHAR)
###human: What country had a Finish of t8?
###assistant: SELECT country FROM table_name_59 WHERE finish = "t8" |
###context:CREATE TABLE table_name_78 (player VARCHAR, to_par VARCHAR)
###human: What Player had a To Par of +2?
###assistant: SELECT player FROM table_name_78 WHERE to_par = "+2" |
###context:CREATE TABLE table_name_32 (to_par VARCHAR, finish VARCHAR)
###human: What is the To Par of the player with a t8 Finish?
###assistant: SELECT to_par FROM table_name_32 WHERE finish = "t8" |
###context:CREATE TABLE table_name_44 (height_ft__m_ VARCHAR, floors VARCHAR, year VARCHAR)
###human: How tall is the building built in 1985 with 22 floors?
###assistant: SELECT height_ft__m_ FROM table_name_44 WHERE floors = 22 AND year = 1985 |
###context:CREATE TABLE table_name_5 (height_ft__m_ VARCHAR, rank VARCHAR)
###human: How tall is the building ranked #13?
###assistant: SELECT height_ft__m_ FROM table_name_5 WHERE rank = "13" |
###context:CREATE TABLE table_name_82 (miss_universe_philippines VARCHAR, first_runner_up VARCHAR, binibining_pilipinas_world VARCHAR)
###human: Who won Miss Universe Philippines when the first runner-up was Danielle Castaño and Janina San Miguel won Binibining Pilipinas-World?
###assistant: SELECT miss_universe_philippines FROM table_name_82 WHERE first_runner_up = "danielle castaño" AND binibining_pilipinas_world = "janina san miguel" |
###context:CREATE TABLE table_name_86 (miss_universe_philippines VARCHAR, second_runner_up VARCHAR)
###human: Who won Miss Universe Philippines when Regina Hahn was second runner-up?
###assistant: SELECT miss_universe_philippines FROM table_name_86 WHERE second_runner_up = "regina hahn" |
###context:CREATE TABLE table_name_46 (second_runner_up VARCHAR, miss_universe_philippines VARCHAR)
###human: When Bianca Manalo won Miss Universe Philippines who was the second runner-up?
###assistant: SELECT second_runner_up FROM table_name_46 WHERE miss_universe_philippines = "bianca manalo" |
###context:CREATE TABLE table_name_18 (order VARCHAR, title VARCHAR)
###human: What order has the title Deacon of SS. Cosma E Damiano?
###assistant: SELECT order FROM table_name_18 WHERE title = "deacon of ss. cosma e damiano" |
###context:CREATE TABLE table_name_25 (tournament VARCHAR)
###human: What is 2009, when 2008 is "A", when 2011 is "A", and when Tournament is "Paris Masters"?
###assistant: SELECT 2009 FROM table_name_25 WHERE 2008 = "a" AND 2011 = "a" AND tournament = "paris masters" |
###context:CREATE TABLE table_name_91 (tournament VARCHAR)
###human: What is 2008, when 2009 is "A", and when Tournament is "Madrid Masters"?
###assistant: SELECT 2008 FROM table_name_91 WHERE 2009 = "a" AND tournament = "madrid masters" |
###context:CREATE TABLE table_name_16 (tournament VARCHAR)
###human: What is Tournament, when 2012 is "A", when 2011 is "A", and when 2008 is "A"?
###assistant: SELECT tournament FROM table_name_16 WHERE 2012 = "a" AND 2011 = "a" AND 2008 = "a" |
###context:CREATE TABLE table_name_62 (Id VARCHAR)
###human: What is 2009, when 2011 is "Q2"?
###assistant: SELECT 2009 FROM table_name_62 WHERE 2011 = "q2" |
###context:CREATE TABLE table_name_39 (tournament VARCHAR)
###human: What is 2011, when Tournament is "Year-End Ranking"?
###assistant: SELECT 2011 FROM table_name_39 WHERE tournament = "year-end ranking" |
###context:CREATE TABLE table_name_40 (total VARCHAR, player VARCHAR)
###human: What was Mark O'Meara's total?
###assistant: SELECT total FROM table_name_40 WHERE player = "mark o'meara" |
###context:CREATE TABLE table_name_87 (year_s__won VARCHAR, player VARCHAR)
###human: What year did Tom Watson win?
###assistant: SELECT year_s__won FROM table_name_87 WHERE player = "tom watson" |
###context:CREATE TABLE table_name_53 (elected VARCHAR)
###human: Who was the 1st member elected in 1511/12?
###assistant: SELECT 1 AS st_member FROM table_name_53 WHERE elected = "1511/12" |
###context:CREATE TABLE table_name_51 (dissolved VARCHAR)
###human: Who was the 1st member of the parliament that was dissolved 23 february 1510?
###assistant: SELECT 1 AS st_member FROM table_name_51 WHERE dissolved = "23 february 1510" |
###context:CREATE TABLE table_name_44 (elected VARCHAR)
###human: Who was the 1st member that was elected in 1541/42?
###assistant: SELECT 1 AS st_member FROM table_name_44 WHERE elected = "1541/42" |
###context:CREATE TABLE table_name_19 (assembled VARCHAR)
###human: Who was the 2nd member of the parliament that was assembled on 3 november 1529?
###assistant: SELECT 2 AS nd_member FROM table_name_19 WHERE assembled = "3 november 1529" |
###context:CREATE TABLE table_name_37 (assembled VARCHAR)
###human: Who was the 2nd member of the parliament that was assembled on 3 november 1529?
###assistant: SELECT 2 AS nd_member FROM table_name_37 WHERE assembled = "3 november 1529" |
###context:CREATE TABLE table_name_51 (date VARCHAR, competition VARCHAR, result VARCHAR)
###human: What date was the competition of the Emerging Nations Tournament and a result of Scotland 34-9 Russia?
###assistant: SELECT date FROM table_name_51 WHERE competition = "emerging nations tournament" AND result = "scotland 34-9 russia" |
###context:CREATE TABLE table_name_43 (number_s_ VARCHAR, quantity VARCHAR, year_s__of_manufacture VARCHAR)
###human: What number was manufactured 1 in 1841?
###assistant: SELECT number_s_ FROM table_name_43 WHERE quantity = "1" AND year_s__of_manufacture = "1841" |
###context:CREATE TABLE table_name_55 (quantity VARCHAR, class VARCHAR)
###human: What is the quantity of class B V?
###assistant: SELECT quantity FROM table_name_55 WHERE class = "b v" |
###context:CREATE TABLE table_name_50 (number_s_ VARCHAR, quantity VARCHAR)
###human: What number corresponds to the quantity of 24?
###assistant: SELECT number_s_ FROM table_name_50 WHERE quantity = "24" |
###context:CREATE TABLE table_name_45 (date_of_birth VARCHAR, name VARCHAR)
###human: What is Tim Wollthan's Date of Birth?
###assistant: SELECT date_of_birth FROM table_name_45 WHERE name = "tim wollthan" |
###context:CREATE TABLE table_name_5 (name VARCHAR, pos VARCHAR, club VARCHAR, height VARCHAR)
###human: What D Player with a Height of m (ft 4in) is in the Spandau 04 Club?
###assistant: SELECT name FROM table_name_5 WHERE club = "spandau 04" AND height = "m (ft 4in)" AND pos = "d" |
###context:CREATE TABLE table_name_18 (club VARCHAR, date_of_birth VARCHAR)
###human: What is the Club of the Player with a Date of Birth of 1979-01-29?
###assistant: SELECT club FROM table_name_18 WHERE date_of_birth = "1979-01-29" |
###context:CREATE TABLE table_name_61 (weight VARCHAR, club VARCHAR, height VARCHAR)
###human: What is the Weight of the Spandau 04 Player with a Height of m (ft 5in)?
###assistant: SELECT weight FROM table_name_61 WHERE club = "spandau 04" AND height = "m (ft 5in)" |
###context:CREATE TABLE table_name_1 (pos VARCHAR, club VARCHAR, name VARCHAR)
###human: What is Spandau 04 Player Jens Pohlmann's Pos.?
###assistant: SELECT pos FROM table_name_1 WHERE club = "spandau 04" AND name = "jens pohlmann" |
###context:CREATE TABLE table_name_62 (player VARCHAR, country VARCHAR)
###human: Which play is from Ireland?
###assistant: SELECT player FROM table_name_62 WHERE country = "ireland" |
###context:CREATE TABLE table_name_18 (country VARCHAR, player VARCHAR)
###human: Which country is Howard Clark from?
###assistant: SELECT country FROM table_name_18 WHERE player = "howard clark" |
###context:CREATE TABLE table_name_78 (silver INTEGER, bronze VARCHAR, total VARCHAR, gold VARCHAR)
###human: What is the most silver medals won among nations that won more than 40 medals total, less than 25 of them being gold, and more than 15 of them being bronze?
###assistant: SELECT MAX(silver) FROM table_name_78 WHERE total > 40 AND gold < 25 AND bronze > 15 |
###context:CREATE TABLE table_name_55 (finish VARCHAR, total VARCHAR, year_s__won VARCHAR)
###human: Of the 1978 winners, who had finish totals smaller than 292?
###assistant: SELECT finish FROM table_name_55 WHERE total < 292 AND year_s__won = "1978" |
###context:CREATE TABLE table_name_19 (finish VARCHAR, total VARCHAR, player VARCHAR)
###human: What were the finishes by David Graham with totals lower than 292?
###assistant: SELECT finish FROM table_name_19 WHERE total = 292 AND player = "david graham" |
###context:CREATE TABLE table_name_79 (finish VARCHAR, country VARCHAR)
###human: What is Australia´s finish?
###assistant: SELECT finish FROM table_name_79 WHERE country = "australia" |
###context:CREATE TABLE table_name_29 (church_name VARCHAR, location_of_the_church VARCHAR)
###human: What is the name of the church that is located in florø?
###assistant: SELECT church_name FROM table_name_29 WHERE location_of_the_church = "florø" |
###context:CREATE TABLE table_name_8 (church_name VARCHAR, location_of_the_church VARCHAR)
###human: What is the name of the church that is located in eikefjord?
###assistant: SELECT church_name FROM table_name_8 WHERE location_of_the_church = "eikefjord" |
###context:CREATE TABLE table_name_80 (parish__prestegjeld_ VARCHAR, church_name VARCHAR)
###human: In which Parish (Prestegjeld) is the church called Stavang Kyrkje?
###assistant: SELECT parish__prestegjeld_ FROM table_name_80 WHERE church_name = "stavang kyrkje" |
###context:CREATE TABLE table_name_30 (sub_parish__sokn_ VARCHAR, year_built VARCHAR, location_of_the_church VARCHAR)
###human: What is the Sub-Parish (Sokn) that was built in 1957 in the location of Stavang?
###assistant: SELECT sub_parish__sokn_ FROM table_name_30 WHERE year_built = "1957" AND location_of_the_church = "stavang" |
###context:CREATE TABLE table_name_29 (year_built VARCHAR, location_of_the_church VARCHAR)
###human: In what year was the church located in florø built?
###assistant: SELECT year_built FROM table_name_29 WHERE location_of_the_church = "florø" |
###context:CREATE TABLE table_name_2 (parish__prestegjeld_ VARCHAR, year_built VARCHAR)
###human: Which Parish (Prestegjeld) was built in 1907?
###assistant: SELECT parish__prestegjeld_ FROM table_name_2 WHERE year_built = "1907" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.