training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_91 (service_area VARCHAR)
###human: What is the 2FM for SW Ireland?
###assistant: SELECT 2 AS fm__mhz_ FROM table_name_91 WHERE service_area = "sw ireland" |
###context:CREATE TABLE table_name_18 (event VARCHAR, medal VARCHAR, name VARCHAR)
###human: Name Event of Medal of gold and a Name of duncan white?
###assistant: SELECT event FROM table_name_18 WHERE medal = "gold" AND name = "duncan white" |
###context:CREATE TABLE table_name_60 (event VARCHAR, games VARCHAR, medal VARCHAR)
###human: Name the Event of the Games of 1950 auckland and a Medal of bronze?
###assistant: SELECT event FROM table_name_60 WHERE games = "1950 auckland" AND medal = "bronze" |
###context:CREATE TABLE table_name_14 (medal VARCHAR, name VARCHAR)
###human: Which Medal has a Name of alex obeyesekera?
###assistant: SELECT medal FROM table_name_14 WHERE name = "alex obeyesekera" |
###context:CREATE TABLE table_name_69 (event VARCHAR, medal VARCHAR, name VARCHAR)
###human: Which Event has a Medal of gold and a Name of barney henricus?
###assistant: SELECT event FROM table_name_69 WHERE medal = "gold" AND name = "barney henricus" |
###context:CREATE TABLE table_name_93 (event VARCHAR, name VARCHAR)
###human: Name the Event of sudesh peiris?
###assistant: SELECT event FROM table_name_93 WHERE name = "sudesh peiris" |
###context:CREATE TABLE table_name_59 (year INTEGER, developer_s_ VARCHAR)
###human: What year was the developer(s) Bioware?
###assistant: SELECT AVG(year) FROM table_name_59 WHERE developer_s_ = "bioware" |
###context:CREATE TABLE table_name_9 (genre VARCHAR, year VARCHAR, platform_s_ VARCHAR)
###human: What is the genre for 2009 on Playstation 3?
###assistant: SELECT genre FROM table_name_9 WHERE year > 2009 AND platform_s_ = "playstation 3" |
###context:CREATE TABLE table_name_87 (result VARCHAR, recipients_and_nominees VARCHAR, year VARCHAR)
###human: Which result has a recipients and nominees of outstanding achievement in drama with 1995 as the year?
###assistant: SELECT result FROM table_name_87 WHERE recipients_and_nominees = "outstanding achievement in drama" AND year = 1995 |
###context:CREATE TABLE table_name_93 (recipients_and_nominees VARCHAR, category VARCHAR, year VARCHAR)
###human: What recipients and nominees have outstanding achievement in drama as the category with 1994 as the year?
###assistant: SELECT recipients_and_nominees FROM table_name_93 WHERE category = "outstanding achievement in drama" AND year = 1994 |
###context:CREATE TABLE table_name_48 (result VARCHAR, role_episode VARCHAR, year VARCHAR)
###human: What result has outstanding achievement in drama, as the role/episode with a year prior to 1995?
###assistant: SELECT result FROM table_name_48 WHERE role_episode = "outstanding achievement in drama" AND year < 1995 |
###context:CREATE TABLE table_name_37 (total INTEGER, gymnast VARCHAR, position VARCHAR)
###human: What is the total for Danny Pinheiro Rodrigues ( fra ), in a Position smaller than 7?
###assistant: SELECT AVG(total) FROM table_name_37 WHERE gymnast = "danny pinheiro rodrigues ( fra )" AND position < 7 |
###context:CREATE TABLE table_name_87 (total VARCHAR, gymnast VARCHAR, b_score VARCHAR)
###human: What is the total for Chen Yibing ( chn ), when his B Score was smaller than 9.225?
###assistant: SELECT COUNT(total) FROM table_name_87 WHERE gymnast = "chen yibing ( chn )" AND b_score < 9.225 |
###context:CREATE TABLE table_name_54 (a_score VARCHAR, b_score VARCHAR, total VARCHAR)
###human: What is the A Score when the B Score is more than 9.05, and the total is less than 16.525?
###assistant: SELECT COUNT(a_score) FROM table_name_54 WHERE b_score > 9.05 AND total < 16.525 |
###context:CREATE TABLE table_name_58 (position VARCHAR, gymnast VARCHAR, total VARCHAR)
###human: What is the position for Oleksandr Vorobiov ( ukr ), when the total was larger than 16.25?
###assistant: SELECT COUNT(position) FROM table_name_58 WHERE gymnast = "oleksandr vorobiov ( ukr )" AND total > 16.25 |
###context:CREATE TABLE table_name_40 (total INTEGER, gymnast VARCHAR, b_score VARCHAR)
###human: What is the total for Robert Stanescu ( rou ), when the B Score is larger than 8.75?
###assistant: SELECT SUM(total) FROM table_name_40 WHERE gymnast = "robert stanescu ( rou )" AND b_score > 8.75 |
###context:CREATE TABLE table_name_75 (notes VARCHAR, country VARCHAR)
###human: Poland has what notes?
###assistant: SELECT notes FROM table_name_75 WHERE country = "poland" |
###context:CREATE TABLE table_name_85 (rank VARCHAR, country VARCHAR)
###human: What is Croatia's rank?
###assistant: SELECT rank FROM table_name_85 WHERE country = "croatia" |
###context:CREATE TABLE table_name_32 (rowers VARCHAR, rank VARCHAR)
###human: When rank is 5, what is the rowers?
###assistant: SELECT rowers FROM table_name_32 WHERE rank = 5 |
###context:CREATE TABLE table_name_33 (rank INTEGER, country VARCHAR)
###human: What is the average rank for Denmark?
###assistant: SELECT AVG(rank) FROM table_name_33 WHERE country = "denmark" |
###context:CREATE TABLE table_name_6 (term_end VARCHAR, party VARCHAR, term_start VARCHAR)
###human: What is the end of the term for Kadima that started on 18 January 2006?
###assistant: SELECT term_end FROM table_name_6 WHERE party = "kadima" AND term_start = "18 january 2006" |
###context:CREATE TABLE table_name_35 (minister VARCHAR, term_start VARCHAR)
###human: Whose term started on 4 May 2006?
###assistant: SELECT minister FROM table_name_35 WHERE term_start = "4 may 2006" |
###context:CREATE TABLE table_name_71 (bronze INTEGER, total VARCHAR, gold VARCHAR, rank VARCHAR)
###human: What's the number of bronze when they are ranked 29, had a total more than 3 and less than 2 golds?
###assistant: SELECT MIN(bronze) FROM table_name_71 WHERE gold < 2 AND rank = "29" AND total > 3 |
###context:CREATE TABLE table_name_51 (bronze INTEGER, rank VARCHAR, silver VARCHAR, total VARCHAR)
###human: What's the bronze medal count for Rank 33 when the silver count was less than 2 and the total was more than 4?
###assistant: SELECT MAX(bronze) FROM table_name_51 WHERE silver < 2 AND total > 4 AND rank = "33" |
###context:CREATE TABLE table_name_45 (silver INTEGER, rank VARCHAR, bronze VARCHAR, gold VARCHAR)
###human: How many silver for rank 22 when gold count was more than 0 and Bronze count was less than 5?
###assistant: SELECT SUM(silver) FROM table_name_45 WHERE bronze < 5 AND gold > 0 AND rank = "22" |
###context:CREATE TABLE table_name_64 (bronze INTEGER, nation VARCHAR, total VARCHAR)
###human: What's the bronze count for South Africa (RSA) with a total more than 16?
###assistant: SELECT MAX(bronze) FROM table_name_64 WHERE nation = "south africa (rsa)" AND total > 16 |
###context:CREATE TABLE table_name_29 (election INTEGER, president VARCHAR, inhabitants VARCHAR)
###human: What was the lowest election result for President Leonardo Marras with an area smaller than 227,063 people?
###assistant: SELECT MIN(election) FROM table_name_29 WHERE president = "leonardo marras" AND inhabitants < 227 OFFSET 063 |
###context:CREATE TABLE table_name_33 (party VARCHAR, president VARCHAR)
###human: What is the party affiliation for President Stefano Baccelli?
###assistant: SELECT party FROM table_name_33 WHERE president = "stefano baccelli" |
###context:CREATE TABLE table_name_50 (election INTEGER, province VARCHAR, established VARCHAR)
###human: What is the average election result for the province of Grosseto from 1766 and prior?
###assistant: SELECT AVG(election) FROM table_name_50 WHERE province = "grosseto" AND established < 1766 |
###context:CREATE TABLE table_name_80 (all_bills_cosponsored VARCHAR, all_amendments_cosponsored VARCHAR, all_amendments_sponsored VARCHAR, all_bills_sponsored VARCHAR)
###human: What is the total number of all bills co-sponsored associated with all amendments sponsored under 15, all bills sponsored of 6, and 0 amendments cosponsored?
###assistant: SELECT COUNT(all_bills_cosponsored) FROM table_name_80 WHERE all_amendments_sponsored < 15 AND all_bills_sponsored = 6 AND all_amendments_cosponsored < 0 |
###context:CREATE TABLE table_name_52 (all_amendments_sponsored INTEGER, bills_originally_cosponsored VARCHAR, all_bills_cosponsored VARCHAR)
###human: What is the fewest amendments sponsored associated with 150 bills originally cosponsored and over 247 bills cosponsored?
###assistant: SELECT MIN(all_amendments_sponsored) FROM table_name_52 WHERE bills_originally_cosponsored = 150 AND all_bills_cosponsored > 247 |
###context:CREATE TABLE table_name_22 (all_bills_cosponsored INTEGER, all_bills_sponsored VARCHAR, all_amendments_sponsored VARCHAR)
###human: What is the highest number of bills cosponsored associated with under 24 bills sponsored and under 16 amendments sponsored?
###assistant: SELECT MAX(all_bills_cosponsored) FROM table_name_22 WHERE all_bills_sponsored < 24 AND all_amendments_sponsored < 16 |
###context:CREATE TABLE table_name_25 (all_amendments_cosponsored INTEGER, amendments_originally_cosponsored VARCHAR, all_bills_sponsored VARCHAR)
###human: What is the highest number of amendments cosponsored associated with 53 amendments originally cosponsored and over 54 bills sponsored?
###assistant: SELECT MAX(all_amendments_cosponsored) FROM table_name_25 WHERE amendments_originally_cosponsored = 53 AND all_bills_sponsored > 54 |
###context:CREATE TABLE table_name_57 (all_bills_sponsored VARCHAR, bills_originally_cosponsored VARCHAR, all_amendments_cosponsored VARCHAR)
###human: What is the number of bills sponsored associated with over 113 bills originally cosponsored and under 47 amendments cosponsored?
###assistant: SELECT all_bills_sponsored FROM table_name_57 WHERE bills_originally_cosponsored > 113 AND all_amendments_cosponsored < 47 |
###context:CREATE TABLE table_name_88 (lane VARCHAR, heat VARCHAR, nationality VARCHAR)
###human: What is the Lane of the swimmer from Uzbekistan in Heat 1?
###assistant: SELECT COUNT(lane) FROM table_name_88 WHERE heat = 1 AND nationality = "uzbekistan" |
###context:CREATE TABLE table_name_18 (station VARCHAR, frequency VARCHAR)
###human: Which station has a frequency of 873khz?
###assistant: SELECT station FROM table_name_18 WHERE frequency = "873khz" |
###context:CREATE TABLE table_name_87 (transmitter_location VARCHAR, station VARCHAR)
###human: Where is the transmitter located for the station voice of vietnam
###assistant: SELECT transmitter_location FROM table_name_87 WHERE station = "voice of vietnam" |
###context:CREATE TABLE table_name_79 (station VARCHAR, country_of_origin VARCHAR, frequency VARCHAR)
###human: Which station is from China and has a frequency of 684khz?
###assistant: SELECT station FROM table_name_79 WHERE country_of_origin = "china" AND frequency = "684khz" |
###context:CREATE TABLE table_name_76 (tally VARCHAR, opposition VARCHAR)
###human: Name the Tally of an Opposition of westmeath?
###assistant: SELECT tally FROM table_name_76 WHERE opposition = "westmeath" |
###context:CREATE TABLE table_name_18 (horizontal_bar VARCHAR, parallel_bars VARCHAR, pommel_horse VARCHAR, position VARCHAR)
###human: What is the horizontal bar score with a pommel horse of n/a, and the position is less than 27, and the parallel bars score is 15.800?
###assistant: SELECT horizontal_bar FROM table_name_18 WHERE pommel_horse = "n/a" AND position < 27 AND parallel_bars = "15.800" |
###context:CREATE TABLE table_name_1 (floor VARCHAR, pommel_horse VARCHAR, position VARCHAR, total VARCHAR)
###human: What is the score of the floor when the position is less than 21, and less than 81.2 total, and the pommel horse score is 13.925?
###assistant: SELECT floor FROM table_name_1 WHERE position < 21 AND total < 81.2 AND pommel_horse = "13.925" |
###context:CREATE TABLE table_name_83 (gymnast VARCHAR, floor VARCHAR)
###human: Who is the gymnast with a floor score of 14.800?
###assistant: SELECT gymnast FROM table_name_83 WHERE floor = "14.800" |
###context:CREATE TABLE table_name_60 (horizontal_bar VARCHAR, pommel_horse VARCHAR)
###human: What horizontal bar score also has a pommel horse score of 15.250?
###assistant: SELECT horizontal_bar FROM table_name_60 WHERE pommel_horse = "15.250" |
###context:CREATE TABLE table_name_8 (total INTEGER, parallel_bars VARCHAR)
###human: With a parallel bars score of 14.625 what is the average total?
###assistant: SELECT AVG(total) FROM table_name_8 WHERE parallel_bars = "14.625" |
###context:CREATE TABLE table_name_21 (rank VARCHAR, time VARCHAR)
###human: What is the Rank of the Athletes with a Time of 3:43.491?
###assistant: SELECT COUNT(rank) FROM table_name_21 WHERE time = "3:43.491" |
###context:CREATE TABLE table_name_41 (notes VARCHAR, country VARCHAR)
###human: What are the Notes of the Athletes from Germany?
###assistant: SELECT notes FROM table_name_41 WHERE country = "germany" |
###context:CREATE TABLE table_name_65 (rank VARCHAR, country VARCHAR)
###human: What is the Rank of the Athletes from Ukraine?
###assistant: SELECT COUNT(rank) FROM table_name_65 WHERE country = "ukraine" |
###context:CREATE TABLE table_name_13 (location VARCHAR, winning_skip VARCHAR)
###human: What location did Sherry Middaugh win in?
###assistant: SELECT location FROM table_name_13 WHERE winning_skip = "sherry middaugh" |
###context:CREATE TABLE table_name_11 (event VARCHAR, winning_skip VARCHAR)
###human: What event did Patti Lank have the winning skip?
###assistant: SELECT event FROM table_name_11 WHERE winning_skip = "patti lank" |
###context:CREATE TABLE table_name_68 (date VARCHAR, runner_up_skip VARCHAR)
###human: What date shows Binia Feltscher-Beeli as the runner-up skip?
###assistant: SELECT date FROM table_name_68 WHERE runner_up_skip = "binia feltscher-beeli" |
###context:CREATE TABLE table_name_61 (runner_up_skip VARCHAR, winning_skip VARCHAR)
###human: What person was the runner-up skip when Julie Reddick was the winning skip?
###assistant: SELECT runner_up_skip FROM table_name_61 WHERE winning_skip = "julie reddick" |
###context:CREATE TABLE table_name_94 (yellow_109_percentage VARCHAR, brazil_100_percentage VARCHAR)
###human: What's the Yellow fertility rate when Brazil is 0,43407?
###assistant: SELECT yellow_109_percentage FROM table_name_94 WHERE brazil_100_percentage = "0,43407" |
###context:CREATE TABLE table_name_59 (area__km_2__ INTEGER, population__2011_ VARCHAR)
###human: What is the sum of the area in km with a population of 110 in 2011?
###assistant: SELECT SUM(area__km_2__) FROM table_name_59 WHERE population__2011_ = 110 |
###context:CREATE TABLE table_name_14 (population__2006_ INTEGER, population__2011_ VARCHAR, area__km_2__ VARCHAR)
###human: What is the average population in 2006 that has more than 5 people in 2011 and an area 5.84km?
###assistant: SELECT AVG(population__2006_) FROM table_name_14 WHERE population__2011_ > 5 AND area__km_2__ = 5.84 |
###context:CREATE TABLE table_name_67 (lane INTEGER, react VARCHAR)
###human: What is the lowest lane with a 0.216 react?
###assistant: SELECT MIN(lane) FROM table_name_67 WHERE react = 0.216 |
###context:CREATE TABLE table_name_87 (rank INTEGER, lane INTEGER)
###human: What is the total rank for the lane before 2?
###assistant: SELECT SUM(rank) FROM table_name_87 WHERE lane < 2 |
###context:CREATE TABLE table_name_29 (genre VARCHAR, year VARCHAR)
###human: What genre is the game from the year 2007?
###assistant: SELECT genre FROM table_name_29 WHERE year = 2007 |
###context:CREATE TABLE table_name_39 (game VARCHAR, platform_s_ VARCHAR, year VARCHAR)
###human: What is the Game that came out before the year 2009 for the Playstation 3?
###assistant: SELECT game FROM table_name_39 WHERE platform_s_ = "playstation 3" AND year < 2009 |
###context:CREATE TABLE table_name_90 (year INTEGER, game VARCHAR)
###human: What is the earliest year that had the Legend of Zelda: Twilight Princess game?
###assistant: SELECT MIN(year) FROM table_name_90 WHERE game = "the legend of zelda: twilight princess" |
###context:CREATE TABLE table_name_70 (opponent VARCHAR, date VARCHAR)
###human: Who was the opponent on November 15, 1981?
###assistant: SELECT opponent FROM table_name_70 WHERE date = "november 15, 1981" |
###context:CREATE TABLE table_name_95 (debut_year INTEGER, player VARCHAR, games VARCHAR)
###human: Which Debut year has a Player of noel carroll, and Games smaller than 12?
###assistant: SELECT MAX(debut_year) FROM table_name_95 WHERE player = "noel carroll" AND games < 12 |
###context:CREATE TABLE table_name_4 (goals INTEGER, player VARCHAR)
###human: Which Goals have a Player of noel carroll?
###assistant: SELECT MIN(goals) FROM table_name_4 WHERE player = "noel carroll" |
###context:CREATE TABLE table_name_39 (debut_year INTEGER, years_at_club VARCHAR, games VARCHAR)
###human: How many debut years have Years at club of 1950–1951, and Games larger than 14?
###assistant: SELECT SUM(debut_year) FROM table_name_39 WHERE years_at_club = "1950–1951" AND games > 14 |
###context:CREATE TABLE table_name_85 (title VARCHAR, label VARCHAR)
###human: Which title has origianal sound entertainment as its label?
###assistant: SELECT title FROM table_name_85 WHERE label = "origianal sound entertainment" |
###context:CREATE TABLE table_name_71 (year_of_release INTEGER, title VARCHAR)
###human: What was the latest year of release for the greatest hits title?
###assistant: SELECT MAX(year_of_release) FROM table_name_71 WHERE title = "greatest hits" |
###context:CREATE TABLE table_name_39 (label VARCHAR, country_of_release VARCHAR)
###human: When the country of release is EU, what is the label name?
###assistant: SELECT label FROM table_name_39 WHERE country_of_release = "eu" |
###context:CREATE TABLE table_name_24 (latitude INTEGER, township VARCHAR, geo_id VARCHAR)
###human: what is the highest latitude when the township is kingsley and the geo id is higher than 3803942820?
###assistant: SELECT MAX(latitude) FROM table_name_24 WHERE township = "kingsley" AND geo_id > 3803942820 |
###context:CREATE TABLE table_name_57 (latitude INTEGER, water__sqmi_ VARCHAR, ansi_code VARCHAR)
###human: what is the latitude when water (sqmi) is 0.058 and the ansi code is less than 1759683?
###assistant: SELECT AVG(latitude) FROM table_name_57 WHERE water__sqmi_ = 0.058 AND ansi_code < 1759683 |
###context:CREATE TABLE table_name_1 (geo_id INTEGER, longitude VARCHAR, land___sqmi__ VARCHAR)
###human: what is the geo id when the longitude is -98.435797 and the land (sqmi) is less than 36.039?
###assistant: SELECT MAX(geo_id) FROM table_name_1 WHERE longitude = -98.435797 AND land___sqmi__ < 36.039 |
###context:CREATE TABLE table_name_93 (year_joined INTEGER, mascot VARCHAR)
###human: Name the lowest Year Joined which has a Mascot of pioneers?
###assistant: SELECT MIN(year_joined) FROM table_name_93 WHERE mascot = "pioneers" |
###context:CREATE TABLE table_name_32 (ihsaa_class VARCHAR, mascot VARCHAR)
###human: Name the IHSAA Class of Mascot of pioneers?
###assistant: SELECT ihsaa_class FROM table_name_32 WHERE mascot = "pioneers" |
###context:CREATE TABLE table_name_8 (ihsaa_class VARCHAR, county VARCHAR, school VARCHAR)
###human: Name the IHSAA Class of 55 morgan and a School of mooresville?
###assistant: SELECT ihsaa_class FROM table_name_8 WHERE county = "55 morgan" AND school = "mooresville" |
###context:CREATE TABLE table_name_35 (location VARCHAR, mascot VARCHAR)
###human: where is Mascot of quakers?
###assistant: SELECT location FROM table_name_35 WHERE mascot = "quakers" |
###context:CREATE TABLE table_name_2 (ihsaa_class VARCHAR, school VARCHAR)
###human: What kind of IHSAA Class has a School of decatur central?
###assistant: SELECT ihsaa_class FROM table_name_2 WHERE school = "decatur central" |
###context:CREATE TABLE table_name_57 (studio_s_ VARCHAR, year VARCHAR, director VARCHAR)
###human: What studio had the director Peter Lord Nick Park before 2004?
###assistant: SELECT studio_s_ FROM table_name_57 WHERE year < 2004 AND director = "peter lord nick park" |
###context:CREATE TABLE table_name_92 (studio_s_ VARCHAR, year VARCHAR, director VARCHAR)
###human: What studio did Paul Greengrass direct in 2007?
###assistant: SELECT studio_s_ FROM table_name_92 WHERE year = 2007 AND director = "paul greengrass" |
###context:CREATE TABLE table_name_1 (a_score INTEGER, b_score VARCHAR, position VARCHAR)
###human: What is the A score when the B score is more than 9.15 and the gymnast was in the 2nd position?
###assistant: SELECT SUM(a_score) FROM table_name_1 WHERE b_score > 9.15 AND position = "2nd" |
###context:CREATE TABLE table_name_20 (quantity VARCHAR, year_s__of_manufacture VARCHAR, class VARCHAR)
###human: what is the quantity when the year of manufacture is 1900 and the class is mc?
###assistant: SELECT quantity FROM table_name_20 WHERE year_s__of_manufacture = "1900" AND class = "mc" |
###context:CREATE TABLE table_name_96 (class VARCHAR, quantity VARCHAR)
###human: what is the class when the quantity is 4?
###assistant: SELECT class FROM table_name_96 WHERE quantity = 4 |
###context:CREATE TABLE table_name_89 (opponent VARCHAR, week VARCHAR)
###human: Who were the opponents on Week 8?
###assistant: SELECT opponent FROM table_name_89 WHERE week = 8 |
###context:CREATE TABLE table_name_8 (change__12_11_ VARCHAR, city VARCHAR)
###human: When the city is agadir what is the change (12/11)?
###assistant: SELECT change__12_11_ FROM table_name_8 WHERE city = "agadir" |
###context:CREATE TABLE table_name_30 (catalog_number VARCHAR, a_side VARCHAR)
###human: What is the catalog number of Venus Demilo's A-side?
###assistant: SELECT catalog_number FROM table_name_30 WHERE a_side = "venus demilo" |
###context:CREATE TABLE table_name_46 (year VARCHAR, b_side VARCHAR)
###human: What year did the B-Side of Just Squeeze Me come out?
###assistant: SELECT year FROM table_name_46 WHERE b_side = "just squeeze me" |
###context:CREATE TABLE table_name_92 (label VARCHAR, catalog_number VARCHAR)
###human: What label has the 817 catalog?
###assistant: SELECT label FROM table_name_92 WHERE catalog_number = "817" |
###context:CREATE TABLE table_name_75 (a_side VARCHAR, b_side VARCHAR)
###human: What is the A-side for it Never Entered My Mind, Part 2?
###assistant: SELECT a_side FROM table_name_75 WHERE b_side = "it never entered my mind, part 2" |
###context:CREATE TABLE table_name_87 (a_side VARCHAR, catalog_number VARCHAR)
###human: What is the A-side for catalog 902?
###assistant: SELECT a_side FROM table_name_87 WHERE catalog_number = "902" |
###context:CREATE TABLE table_name_10 (class VARCHAR, type VARCHAR)
###human: What is the class of the a1 bm type?
###assistant: SELECT class FROM table_name_10 WHERE type = "a1 bm" |
###context:CREATE TABLE table_name_5 (quantity VARCHAR, class VARCHAR)
###human: What is the quantity of the aw class?
###assistant: SELECT quantity FROM table_name_5 WHERE class = "aw" |
###context:CREATE TABLE table_name_6 (class VARCHAR, quantity VARCHAR)
###human: What is the class with 1 quantity?
###assistant: SELECT class FROM table_name_6 WHERE quantity = "1" |
###context:CREATE TABLE table_name_3 (railway_number_s_ VARCHAR, class VARCHAR)
###human: What is the railway number of the aw class?
###assistant: SELECT railway_number_s_ FROM table_name_3 WHERE class = "aw" |
###context:CREATE TABLE table_name_80 (game VARCHAR, record VARCHAR)
###human: What was the game when the record was 31-15?
###assistant: SELECT game FROM table_name_80 WHERE record = "31-15" |
###context:CREATE TABLE table_name_2 (date VARCHAR, score VARCHAR)
###human: What was the date of the game with a score of W 106-100?
###assistant: SELECT date FROM table_name_2 WHERE score = "w 106-100" |
###context:CREATE TABLE table_name_26 (speed VARCHAR, rank VARCHAR)
###human: What is the speed for rank 1?
###assistant: SELECT speed FROM table_name_26 WHERE rank = "1" |
###context:CREATE TABLE table_name_92 (team VARCHAR, rank VARCHAR, rider VARCHAR)
###human: What team has a Rank Ret, and rider Frank A Applebee?
###assistant: SELECT team FROM table_name_92 WHERE rank = "ret" AND rider = "frank a applebee" |
###context:CREATE TABLE table_name_91 (internet_explorer VARCHAR, chrome VARCHAR)
###human: What internet explorer has 29.07% for the chrome?
###assistant: SELECT internet_explorer FROM table_name_91 WHERE chrome = "29.07%" |
###context:CREATE TABLE table_name_71 (other_mozilla VARCHAR, safari VARCHAR)
###human: What is the other mozilla that has 9.41% for the safari?
###assistant: SELECT other_mozilla FROM table_name_71 WHERE safari = "9.41%" |
###context:CREATE TABLE table_name_80 (other_mozilla VARCHAR, period VARCHAR)
###human: What other mozilla has January 2010 as the period?
###assistant: SELECT other_mozilla FROM table_name_80 WHERE period = "january 2010" |
###context:CREATE TABLE table_name_31 (internet_explorer VARCHAR, safari VARCHAR, chrome VARCHAR)
###human: What internet explorer has 7.89% as the safari, and 8.22% as the chrome?
###assistant: SELECT internet_explorer FROM table_name_31 WHERE safari = "7.89%" AND chrome = "8.22%" |
###context:CREATE TABLE table_name_66 (period VARCHAR, other_mozilla VARCHAR)
###human: What period has 0.25% as the other mozilla?
###assistant: SELECT period FROM table_name_66 WHERE other_mozilla = "0.25%" |
###context:CREATE TABLE table_name_75 (socket VARCHAR, release_price___usd__ VARCHAR, turbo VARCHAR)
###human: Which socket goes with the item with release price of $378 and turbo of 6/6/8/9?
###assistant: SELECT socket FROM table_name_75 WHERE release_price___usd__ = "$378" AND turbo = "6/6/8/9" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.