training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_65 (year INTEGER, sideline_reporters VARCHAR)
###human: What's the average year that sara orlesky and farhan lalji are the sideline reporters?
###assistant: SELECT AVG(year) FROM table_name_65 WHERE sideline_reporters = "sara orlesky and farhan lalji" |
###context:CREATE TABLE table_name_83 (attendance INTEGER, date VARCHAR)
###human: What was the attendance on september 29?
###assistant: SELECT MAX(attendance) FROM table_name_83 WHERE date = "september 29" |
###context:CREATE TABLE table_name_71 (attendance INTEGER, date VARCHAR)
###human: What was the attendance on september 8?
###assistant: SELECT AVG(attendance) FROM table_name_71 WHERE date = "september 8" |
###context:CREATE TABLE table_name_84 (week INTEGER, result VARCHAR, attendance VARCHAR)
###human: Which Week has a Result of l 10–30, and an Attendance larger than 57,312?
###assistant: SELECT AVG(week) FROM table_name_84 WHERE result = "l 10–30" AND attendance > 57 OFFSET 312 |
###context:CREATE TABLE table_name_33 (date VARCHAR, tie_no VARCHAR)
###human: What is Date, when Tie no is "3"?
###assistant: SELECT date FROM table_name_33 WHERE tie_no = "3" |
###context:CREATE TABLE table_name_62 (date VARCHAR, away_team VARCHAR)
###human: What is Date, when Away Team is "Brentford"?
###assistant: SELECT date FROM table_name_62 WHERE away_team = "brentford" |
###context:CREATE TABLE table_name_6 (date VARCHAR, home_team VARCHAR)
###human: What is Date, when Home Team is "Everton"?
###assistant: SELECT date FROM table_name_6 WHERE home_team = "everton" |
###context:CREATE TABLE table_name_83 (away_team VARCHAR, home_team VARCHAR)
###human: What is Away Team, when Home Team is "West Ham United"?
###assistant: SELECT away_team FROM table_name_83 WHERE home_team = "west ham united" |
###context:CREATE TABLE table_name_22 (venue VARCHAR, balls VARCHAR)
###human: What is Venue, when Balls is "148"?
###assistant: SELECT venue FROM table_name_22 WHERE balls = 148 |
###context:CREATE TABLE table_name_63 (name VARCHAR, score VARCHAR)
###human: What is Name, when Score is "101"?
###assistant: SELECT name FROM table_name_63 WHERE score = "101" |
###context:CREATE TABLE table_name_78 (date VARCHAR, venue VARCHAR, name VARCHAR)
###human: What is Date, when Venue is "Taunton", and when Name is "SC Ganguly"?
###assistant: SELECT date FROM table_name_78 WHERE venue = "taunton" AND name = "sc ganguly" |
###context:CREATE TABLE table_name_3 (balls VARCHAR, venue VARCHAR, score VARCHAR)
###human: What is Balls, when Venue is "Bristol", and when Score is "104*"?
###assistant: SELECT balls FROM table_name_3 WHERE venue = "bristol" AND score = "104*" |
###context:CREATE TABLE table_name_10 (silver VARCHAR, bronze INTEGER)
###human: What is the number of silver when bronze is less than 0?
###assistant: SELECT COUNT(silver) FROM table_name_10 WHERE bronze < 0 |
###context:CREATE TABLE table_name_68 (gold INTEGER, total VARCHAR, silver VARCHAR, rank VARCHAR)
###human: What is the gold when silver is less than 1, rank is 12, and total is less than 3?
###assistant: SELECT MAX(gold) FROM table_name_68 WHERE silver < 1 AND rank = 12 AND total < 3 |
###context:CREATE TABLE table_name_62 (gold INTEGER, rank VARCHAR, silver VARCHAR)
###human: What shows for gold when the rank is less than 3, and silver less than 1?
###assistant: SELECT SUM(gold) FROM table_name_62 WHERE rank < 3 AND silver < 1 |
###context:CREATE TABLE table_name_1 (total VARCHAR, bronze VARCHAR, gold VARCHAR, rank VARCHAR)
###human: What is the total when gold is 1, and rank is more than 4, and bronze is 0?
###assistant: SELECT COUNT(total) FROM table_name_1 WHERE gold = 1 AND rank > 4 AND bronze = 0 |
###context:CREATE TABLE table_name_8 (bronze INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR)
###human: What shows for bronze when silver is 1, rank is smaller than 4, and gold is larger than 1?
###assistant: SELECT SUM(bronze) FROM table_name_8 WHERE silver = 1 AND rank < 4 AND gold > 1 |
###context:CREATE TABLE table_name_52 (gold INTEGER, bronze VARCHAR, total VARCHAR, silver VARCHAR, rank VARCHAR)
###human: What is the gold when silver is 1, rank is larger than 3, total is smaller than 2, bronze is smaller than 0?
###assistant: SELECT SUM(gold) FROM table_name_52 WHERE silver = 1 AND rank > 3 AND total < 2 AND bronze < 0 |
###context:CREATE TABLE table_name_63 (player VARCHAR, country VARCHAR)
###human: What player is from France?
###assistant: SELECT player FROM table_name_63 WHERE country = "france" |
###context:CREATE TABLE table_name_93 (place VARCHAR, player VARCHAR)
###human: What place is S.K. Ho in?
###assistant: SELECT place FROM table_name_93 WHERE player = "s.k. ho" |
###context:CREATE TABLE table_name_90 (player VARCHAR, country VARCHAR, score VARCHAR)
###human: What player is from Scotland and has a score of 74-70=144?
###assistant: SELECT player FROM table_name_90 WHERE score = 74 - 70 = 144 AND country = "scotland" |
###context:CREATE TABLE table_name_79 (player VARCHAR, country VARCHAR)
###human: Which player is from South Africa?
###assistant: SELECT player FROM table_name_79 WHERE country = "south africa" |
###context:CREATE TABLE table_name_97 (country VARCHAR, score VARCHAR)
###human: What country is the player with a score of 72-72=144 from?
###assistant: SELECT country FROM table_name_97 WHERE score = 72 - 72 = 144 |
###context:CREATE TABLE table_name_87 (geelong_dfl VARCHAR, wins VARCHAR, losses VARCHAR)
###human: Which Geelong DFL has 8 losses and more than 4 wins?
###assistant: SELECT geelong_dfl FROM table_name_87 WHERE wins > 4 AND losses = 8 |
###context:CREATE TABLE table_name_47 (number_of_examinees VARCHAR, number_of_passed_students VARCHAR, year VARCHAR, pass_percentage VARCHAR)
###human: What number of examines after 2005 has a pass percentage of 78.35% with less than 297 students?
###assistant: SELECT COUNT(number_of_examinees) FROM table_name_47 WHERE year > 2005 AND pass_percentage = "78.35%" AND number_of_passed_students < 297 |
###context:CREATE TABLE table_name_93 (venue VARCHAR, founded VARCHAR, league VARCHAR)
###human: Which venue was founded after 1967 and had the league North American Soccer League?
###assistant: SELECT venue FROM table_name_93 WHERE founded > 1967 AND league = "north american soccer league" |
###context:CREATE TABLE table_name_31 (venue VARCHAR, founded VARCHAR, sport VARCHAR)
###human: Which venue was fouded before 2000 for basketball?
###assistant: SELECT venue FROM table_name_31 WHERE founded < 2000 AND sport = "basketball" |
###context:CREATE TABLE table_name_43 (club VARCHAR, sport VARCHAR, venue VARCHAR)
###human: Which club had football at Mitchel Athletic Field?
###assistant: SELECT club FROM table_name_43 WHERE sport = "football" AND venue = "mitchel athletic field" |
###context:CREATE TABLE table_name_25 (club VARCHAR, founded VARCHAR)
###human: Which club was founded in 1962?
###assistant: SELECT club FROM table_name_25 WHERE founded = 1962 |
###context:CREATE TABLE table_name_52 (total INTEGER, country VARCHAR, year_s__won VARCHAR)
###human: What is the total sum of the player from the United States who won in 1986?
###assistant: SELECT SUM(total) FROM table_name_52 WHERE country = "united states" AND year_s__won = "1986" |
###context:CREATE TABLE table_name_36 (year_s__won VARCHAR, total VARCHAR, to_par VARCHAR)
###human: What year did the player with a total less than 300 and a to par of 9 have a win?
###assistant: SELECT year_s__won FROM table_name_36 WHERE total < 300 AND to_par = 9 |
###context:CREATE TABLE table_name_9 (to_par VARCHAR, player VARCHAR, total VARCHAR)
###human: What is total number of the to par of player john mahaffey, who has a total less than 298?
###assistant: SELECT COUNT(to_par) FROM table_name_9 WHERE player = "john mahaffey" AND total < 298 |
###context:CREATE TABLE table_name_90 (total INTEGER, year_s__won VARCHAR)
###human: What is the sum of the total of the player who won in 1979?
###assistant: SELECT SUM(total) FROM table_name_90 WHERE year_s__won = "1979" |
###context:CREATE TABLE table_name_70 (country VARCHAR, total INTEGER)
###human: What is the country of the player who has a total larger than 300?
###assistant: SELECT country FROM table_name_70 WHERE total > 300 |
###context:CREATE TABLE table_name_44 (shropshire_senior_cup VARCHAR, points VARCHAR, fa_cup VARCHAR)
###human: What is the Shropshire Senior Cup when points are greater than 78 and FA Cup is pre?
###assistant: SELECT shropshire_senior_cup FROM table_name_44 WHERE points > 78 AND fa_cup = "pre" |
###context:CREATE TABLE table_name_17 (season VARCHAR, points VARCHAR)
###human: What season had 78 points?
###assistant: SELECT season FROM table_name_17 WHERE points = 78 |
###context:CREATE TABLE table_name_64 (score VARCHAR, result VARCHAR, opponent VARCHAR)
###human: For the match against Arema Malang that ended in a draw, what was the final score?
###assistant: SELECT score FROM table_name_64 WHERE result = "draw" AND opponent = "arema malang" |
###context:CREATE TABLE table_name_68 (score VARCHAR, date VARCHAR)
###human: What was the final score for the match held on April 11, 2007?
###assistant: SELECT score FROM table_name_68 WHERE date = "april 11, 2007" |
###context:CREATE TABLE table_name_90 (venue VARCHAR, score VARCHAR, date VARCHAR)
###human: What was the location for the match held on April 11, 2007, which ended with a score of 0-0?
###assistant: SELECT venue FROM table_name_90 WHERE score = "0-0" AND date = "april 11, 2007" |
###context:CREATE TABLE table_name_63 (venue VARCHAR, score VARCHAR, date VARCHAR)
###human: What was the location for the match held on March 7, 2007, which ended with a score of 0-0?
###assistant: SELECT venue FROM table_name_63 WHERE score = "0-0" AND date = "march 7, 2007" |
###context:CREATE TABLE table_name_87 (constituency_number VARCHAR, name VARCHAR)
###human: Amritpur has what constituency number?
###assistant: SELECT constituency_number FROM table_name_87 WHERE name = "amritpur" |
###context:CREATE TABLE table_name_87 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR)
###human: Kaimganj has what reserved for (SC / ST /None)?
###assistant: SELECT reserved_for___sc___st__none_ FROM table_name_87 WHERE name = "kaimganj" |
###context:CREATE TABLE table_name_30 (country VARCHAR, player VARCHAR)
###human: Which country is bob tway from?
###assistant: SELECT country FROM table_name_30 WHERE player = "bob tway" |
###context:CREATE TABLE table_name_59 (country VARCHAR, year_s__won VARCHAR)
###human: Which country won in 1986?
###assistant: SELECT country FROM table_name_59 WHERE year_s__won = "1986" |
###context:CREATE TABLE table_name_63 (total INTEGER, country VARCHAR)
###human: What is Fiji's lowest total?
###assistant: SELECT MIN(total) FROM table_name_63 WHERE country = "fiji" |
###context:CREATE TABLE table_name_17 (country VARCHAR, score VARCHAR)
###human: What Country had a Player with a Score of 72-66-72=210?
###assistant: SELECT country FROM table_name_17 WHERE score = 72 - 66 - 72 = 210 |
###context:CREATE TABLE table_name_96 (place VARCHAR, to_par VARCHAR)
###human: What is the Place of the Player with a To par of –6?
###assistant: SELECT place FROM table_name_96 WHERE to_par = "–6" |
###context:CREATE TABLE table_name_86 (place VARCHAR, score VARCHAR)
###human: What is the Place of the Player with a Score of 68-73-76=217?
###assistant: SELECT place FROM table_name_86 WHERE score = 68 - 73 - 76 = 217 |
###context:CREATE TABLE table_name_59 (to_par VARCHAR, player VARCHAR)
###human: What is Justin Leonard's To par?
###assistant: SELECT to_par FROM table_name_59 WHERE player = "justin leonard" |
###context:CREATE TABLE table_name_10 (architecture_version VARCHAR, model VARCHAR)
###human: What is the architecture version of Model 1b?
###assistant: SELECT architecture_version FROM table_name_10 WHERE model = "1b" |
###context:CREATE TABLE table_name_90 (name___generation VARCHAR, architecture_version VARCHAR, model VARCHAR)
###human: What is the name of the architecture version of the MIPS-III 64-bit, and model 2b?
###assistant: SELECT name___generation FROM table_name_90 WHERE architecture_version = "mips-iii 64-bit" AND model = "2b" |
###context:CREATE TABLE table_name_1 (event VARCHAR, time VARCHAR)
###human: What is the event with a 2:08 time?
###assistant: SELECT event FROM table_name_1 WHERE time = "2:08" |
###context:CREATE TABLE table_name_99 (wheels VARCHAR, builder VARCHAR)
###human: What type of wheels did the locomotive have that was built by Baldwin Locomotive Works?
###assistant: SELECT wheels FROM table_name_99 WHERE builder = "baldwin locomotive works" |
###context:CREATE TABLE table_name_89 (venue VARCHAR, against VARCHAR)
###human: Which Venue has Against of 25?
###assistant: SELECT venue FROM table_name_89 WHERE against = 25 |
###context:CREATE TABLE table_name_82 (venue VARCHAR, against INTEGER)
###human: Which Venue has Against smaller than 6?
###assistant: SELECT venue FROM table_name_82 WHERE against < 6 |
###context:CREATE TABLE table_name_7 (utah VARCHAR, colorado VARCHAR, new_mexico VARCHAR)
###human: What's the value for utah when colorado and new mexico are bush?
###assistant: SELECT utah FROM table_name_7 WHERE colorado = "bush" AND new_mexico = "bush" |
###context:CREATE TABLE table_name_6 (oklahoma VARCHAR, texas VARCHAR)
###human: What's the value for oklahoma when texas is kennedy?
###assistant: SELECT oklahoma FROM table_name_6 WHERE texas = "kennedy" |
###context:CREATE TABLE table_name_80 (utah VARCHAR, texas VARCHAR)
###human: What's the value for utah when texas is humphrey?
###assistant: SELECT utah FROM table_name_80 WHERE texas = "humphrey" |
###context:CREATE TABLE table_name_83 (arizona VARCHAR, texas VARCHAR, colorado VARCHAR, nevada VARCHAR)
###human: What's the value for arizona when colorado and nevada are nixon, and texas is humphrey?
###assistant: SELECT arizona FROM table_name_83 WHERE colorado = "nixon" AND nevada = "nixon" AND texas = "humphrey" |
###context:CREATE TABLE table_name_94 (oklahoma VARCHAR, nevada VARCHAR, colorado VARCHAR)
###human: What's the value for oklahoma when nevada and colorado are clinton?
###assistant: SELECT oklahoma FROM table_name_94 WHERE nevada = "clinton" AND colorado = "clinton" |
###context:CREATE TABLE table_name_50 (arizona VARCHAR, utah VARCHAR)
###human: What's the value for arizona when utah is eisenhower?
###assistant: SELECT arizona FROM table_name_50 WHERE utah = "eisenhower" |
###context:CREATE TABLE table_name_84 (ad_freq VARCHAR, show_name VARCHAR)
###human: How often are there ads during American Top 40?
###assistant: SELECT ad_freq FROM table_name_84 WHERE show_name = "american top 40" |
###context:CREATE TABLE table_name_94 (time VARCHAR, show_name VARCHAR)
###human: When does Classic Hits air?
###assistant: SELECT time FROM table_name_94 WHERE show_name = "classic hits" |
###context:CREATE TABLE table_name_4 (role VARCHAR, pick__number VARCHAR)
###human: What is Pick #18's Role?
###assistant: SELECT role FROM table_name_4 WHERE pick__number = 18 |
###context:CREATE TABLE table_name_5 (foundation VARCHAR, name_in_english VARCHAR)
###human: What is the foundation for the institution whose name in English is tanjung puteri technical secondary school?
###assistant: SELECT foundation FROM table_name_5 WHERE name_in_english = "tanjung puteri technical secondary school" |
###context:CREATE TABLE table_name_95 (location VARCHAR, name_in_malay VARCHAR)
###human: What is the location of the institution whose name in Malay is kolej kemahiran belia nasional, pontian?
###assistant: SELECT location FROM table_name_95 WHERE name_in_malay = "kolej kemahiran belia nasional, pontian" |
###context:CREATE TABLE table_name_97 (money___ INTEGER, score VARCHAR)
###human: What was the average money when the score was 68-69-68-72=277?
###assistant: SELECT AVG(money___) AS $__ FROM table_name_97 WHERE score = 68 - 69 - 68 - 72 = 277 |
###context:CREATE TABLE table_name_37 (money___ INTEGER, score VARCHAR)
###human: What was the highest money when the score was 69-68-67-69=273?
###assistant: SELECT MAX(money___) AS $__ FROM table_name_37 WHERE score = 69 - 68 - 67 - 69 = 273 |
###context:CREATE TABLE table_name_89 (place VARCHAR, country VARCHAR)
###human: What did South Africa place?
###assistant: SELECT place FROM table_name_89 WHERE country = "south africa" |
###context:CREATE TABLE table_name_95 (country VARCHAR, place VARCHAR, score VARCHAR)
###human: What county placed t2 and scored 68-69-68-72=277?
###assistant: SELECT country FROM table_name_95 WHERE place = "t2" AND score = 68 - 69 - 68 - 72 = 277 |
###context:CREATE TABLE table_name_81 (milan___san_remo VARCHAR, liège_bastogne_liège VARCHAR)
###human: Name the Milan – San Remo which has a Liège–Bastogne–Liège of danilo di luca ( ita )?
###assistant: SELECT milan___san_remo FROM table_name_81 WHERE liège_bastogne_liège = "danilo di luca ( ita )" |
###context:CREATE TABLE table_name_38 (giro_di_lombardia VARCHAR, paris_roubaix VARCHAR)
###human: Which Giro di Lombardia has a Paris–Roubaix of servais knaven ( ned )?
###assistant: SELECT giro_di_lombardia FROM table_name_38 WHERE paris_roubaix = "servais knaven ( ned )" |
###context:CREATE TABLE table_name_22 (giro_di_lombardia VARCHAR, tour_of_flanders VARCHAR, paris_roubaix VARCHAR)
###human: what kind of Giro di Lombardiahas a Tour of Flanders of tom boonen ( bel ), and a Paris–Roubaix of fabian cancellara ( sui )?
###assistant: SELECT giro_di_lombardia FROM table_name_22 WHERE tour_of_flanders = "tom boonen ( bel )" AND paris_roubaix = "fabian cancellara ( sui )" |
###context:CREATE TABLE table_name_90 (cargo__tonnes_ VARCHAR, international__non_cis_ VARCHAR)
###human: What are the cargo tonnes when the international (non-CIS) is 297 421?
###assistant: SELECT cargo__tonnes_ FROM table_name_90 WHERE international__non_cis_ = "297 421" |
###context:CREATE TABLE table_name_27 (aircraft_landings VARCHAR, cargo__tonnes_ VARCHAR)
###human: How manu aircraft landings when the cargo tonnes are 18 344?
###assistant: SELECT aircraft_landings FROM table_name_27 WHERE cargo__tonnes_ = "18 344" |
###context:CREATE TABLE table_name_61 (domestic VARCHAR, cargo__tonnes_ VARCHAR)
###human: What is the domestic figure when cargo tonnes equal 25 866?
###assistant: SELECT domestic FROM table_name_61 WHERE cargo__tonnes_ = "25 866" |
###context:CREATE TABLE table_name_53 (year VARCHAR, passenger_change VARCHAR)
###human: What is the year that saw a passenger change of +32,9%?
###assistant: SELECT COUNT(year) FROM table_name_53 WHERE passenger_change = "+32,9%" |
###context:CREATE TABLE table_name_32 (year INTEGER, cargo__tonnes_ VARCHAR)
###human: What year had cargo tonnes of 13 585?
###assistant: SELECT AVG(year) FROM table_name_32 WHERE cargo__tonnes_ = "13 585" |
###context:CREATE TABLE table_name_31 (round VARCHAR, event VARCHAR)
###human: What round did the event UFC 86 take place?
###assistant: SELECT round FROM table_name_31 WHERE event = "ufc 86" |
###context:CREATE TABLE table_name_25 (method VARCHAR, round VARCHAR, location VARCHAR)
###human: What method was there in round 1 when the location was Aruba?
###assistant: SELECT method FROM table_name_25 WHERE round = "1" AND location = "aruba" |
###context:CREATE TABLE table_name_91 (location VARCHAR, event VARCHAR)
###human: What location was the event ufc: fight for the troops?
###assistant: SELECT location FROM table_name_91 WHERE event = "ufc: fight for the troops" |
###context:CREATE TABLE table_name_49 (date VARCHAR, visiting_team VARCHAR, result VARCHAR)
###human: When was the game that had the St. Louis Rams as visiting team and resulted in a score of 26-0?
###assistant: SELECT date FROM table_name_49 WHERE visiting_team = "st. louis rams" AND result = "26-0" |
###context:CREATE TABLE table_name_30 (date VARCHAR, venue VARCHAR)
###human: What date(s) was the game(s) at Candlestick Park?
###assistant: SELECT date FROM table_name_30 WHERE venue = "candlestick park" |
###context:CREATE TABLE table_name_45 (year VARCHAR, opponent_in_the_final VARCHAR)
###human: What year was the opponent in the final john higgins category:articles with hcards?
###assistant: SELECT year FROM table_name_45 WHERE opponent_in_the_final = "john higgins category:articles with hcards" |
###context:CREATE TABLE table_name_38 (church_name VARCHAR, year_built VARCHAR)
###human: Which church was built in 1600?
###assistant: SELECT church_name FROM table_name_38 WHERE year_built = 1600 |
###context:CREATE TABLE table_name_51 (location_of_the_church VARCHAR, year_built VARCHAR)
###human: What is the Location of the Church that was built in the year 1914?
###assistant: SELECT location_of_the_church FROM table_name_51 WHERE year_built = 1914 |
###context:CREATE TABLE table_name_64 (location_of_the_church VARCHAR, sub_parish__sokn_ VARCHAR)
###human: Where is the Church that has a Sub-Parish (Sokn) of rugsund?
###assistant: SELECT location_of_the_church FROM table_name_64 WHERE sub_parish__sokn_ = "rugsund" |
###context:CREATE TABLE table_name_67 (year_built INTEGER, parish___prestegjeld__ VARCHAR, location_of_the_church VARCHAR)
###human: Which Year Built has a Parish (Prestegjeld) of bremanger parish, and a Location of the Church of bremanger?
###assistant: SELECT AVG(year_built) FROM table_name_67 WHERE parish___prestegjeld__ = "bremanger parish" AND location_of_the_church = "bremanger" |
###context:CREATE TABLE table_name_29 (actor_required VARCHAR, actor_in_original_production VARCHAR)
###human: Who is the required actor when Robert Austin was the actor in the original production?
###assistant: SELECT actor_required FROM table_name_29 WHERE actor_in_original_production = "robert austin" |
###context:CREATE TABLE table_name_69 (actor_in_original_production VARCHAR, gameplan VARCHAR)
###human: Who is the actor in the original production when Troy Stephens is the GamePlan?
###assistant: SELECT actor_in_original_production FROM table_name_69 WHERE gameplan = "troy stephens" |
###context:CREATE TABLE table_name_71 (gameplan VARCHAR, actor_in_original_production VARCHAR)
###human: Who is the GamePlan when Jacqueline King is the actor in the original production?
###assistant: SELECT gameplan FROM table_name_71 WHERE actor_in_original_production = "jacqueline king" |
###context:CREATE TABLE table_name_29 (gameplan VARCHAR, roleplay VARCHAR)
###human: Who is the GamePlan when Arabella Lazenby is the RolePlay actor?
###assistant: SELECT gameplan FROM table_name_29 WHERE roleplay = "arabella lazenby" |
###context:CREATE TABLE table_name_24 (actor_required VARCHAR, flatspin VARCHAR)
###human: Who is the actor required when Edna Stricken is the FlatSpin actor?
###assistant: SELECT actor_required FROM table_name_24 WHERE flatspin = "edna stricken" |
###context:CREATE TABLE table_name_33 (team_1 VARCHAR)
###human: What shows for the 1st round when the team 1 was Lb Châteauroux (d2)?
###assistant: SELECT 1 AS st_round FROM table_name_33 WHERE team_1 = "lb châteauroux (d2)" |
###context:CREATE TABLE table_name_63 (team_1 VARCHAR)
###human: What shows for 2nd round when the team 1 was Rc Strasbourg (d1)?
###assistant: SELECT 2 AS nd_round FROM table_name_63 WHERE team_1 = "rc strasbourg (d1)" |
###context:CREATE TABLE table_name_80 (home_team VARCHAR, tie_no VARCHAR)
###human: Who was the Home team in Tie #23?
###assistant: SELECT home_team FROM table_name_80 WHERE tie_no = 23 |
###context:CREATE TABLE table_name_90 (score VARCHAR, tie_no VARCHAR)
###human: What was the final score in Tie #28?
###assistant: SELECT score FROM table_name_90 WHERE tie_no = 28 |
###context:CREATE TABLE table_name_81 (score VARCHAR, player VARCHAR, to_par VARCHAR, money___$__ VARCHAR)
###human: What score has a to par greater than 15, money ($) greater than 116, with billy burke as the player?
###assistant: SELECT score FROM table_name_81 WHERE to_par > 15 AND money___$__ > 116 AND player = "billy burke" |
###context:CREATE TABLE table_name_57 (player VARCHAR, place VARCHAR, country VARCHAR)
###human: What player has t3 as the place, with england united states as the country?
###assistant: SELECT player FROM table_name_57 WHERE place = "t3" AND country = "england united states" |
###context:CREATE TABLE table_name_75 (money___ INTEGER, place VARCHAR, to_par VARCHAR)
###human: What is the lowest money ($) that has t8 as the place, with a to par greater than 19?
###assistant: SELECT MIN(money___) AS $__ FROM table_name_75 WHERE place = "t8" AND to_par > 19 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.