training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_23453931_8 (score VARCHAR, points VARCHAR) ###human: What was the score when they had 62 points? ###assistant: SELECT score FROM table_23453931_8 WHERE points = 62
###context:CREATE TABLE table_23453931_4 (opponent VARCHAR, points VARCHAR) ###human: What team did the Maple Leafs score 9 points against? ###assistant: SELECT opponent FROM table_23453931_4 WHERE points = 9
###context:CREATE TABLE table_23465864_4 (sat_29_aug VARCHAR, tues_25_aug VARCHAR) ###human: What time was achieved on Saturday 29th August by the rider who recorded 23' 18.82 97.102mph on Tuesday 25th August? ###assistant: SELECT sat_29_aug FROM table_23465864_4 WHERE tues_25_aug = "23' 18.82 97.102mph"
###context:CREATE TABLE table_23465864_4 (sat_29_aug VARCHAR, mon_24_aug VARCHAR) ###human: What time was achieved on Saturday 29th August by the rider who recorded 24' 17.26 93.208mph on Monday 24th August? ###assistant: SELECT sat_29_aug FROM table_23465864_4 WHERE mon_24_aug = "24' 17.26 93.208mph"
###context:CREATE TABLE table_23465864_4 (sat_29_aug VARCHAR, tues_25_aug VARCHAR) ###human: What time was achieved on Saturday 29th August by the rider who recorded 22' 54.20 98.842mph on Tuesday 25th August? ###assistant: SELECT sat_29_aug FROM table_23465864_4 WHERE tues_25_aug = "22' 54.20 98.842mph"
###context:CREATE TABLE table_23465864_4 (sat_29_aug VARCHAR, fri_28_aug VARCHAR) ###human: What time was achieved on Saturday 29th August by the rider who recorded 25' 01.89 90.438mph on Friday 28th August? ###assistant: SELECT sat_29_aug FROM table_23465864_4 WHERE fri_28_aug = "25' 01.89 90.438mph"
###context:CREATE TABLE table_23465864_6 (wed_26_aug VARCHAR, rider VARCHAR) ###human: What was the event on Wed 26 Aug where rider is Andrew Farrell 400cc Kawasaki? ###assistant: SELECT wed_26_aug FROM table_23465864_6 WHERE rider = "Andrew Farrell 400cc Kawasaki"
###context:CREATE TABLE table_23465864_6 (thurs_27_aug VARCHAR, tues_25_aug VARCHAR) ###human: What was the event on Thurs 27 Aug when Tues 25 Aug was 23' 00.59 98.384mph? ###assistant: SELECT thurs_27_aug FROM table_23465864_6 WHERE tues_25_aug = "23' 00.59 98.384mph"
###context:CREATE TABLE table_23465864_6 (tues_25_aug VARCHAR, mon_24_aug VARCHAR) ###human: What was the Tues 25 Aug time and speed when Mon 24 Aug was 22' 24.56 101.021mph? ###assistant: SELECT tues_25_aug FROM table_23465864_6 WHERE mon_24_aug = "22' 24.56 101.021mph"
###context:CREATE TABLE table_23465864_6 (rider VARCHAR, fri_28_aug VARCHAR) ###human: Who was the rider when Fri 28 Aug was 24' 23.36 92.820mph? ###assistant: SELECT rider FROM table_23465864_6 WHERE fri_28_aug = "24' 23.36 92.820mph"
###context:CREATE TABLE table_23466021_4 (opponent VARCHAR, attendance VARCHAR) ###human: Which opponent has 32194 as the attendance? ###assistant: SELECT opponent FROM table_23466021_4 WHERE attendance = 32194
###context:CREATE TABLE table_23466021_4 (opponent VARCHAR, attendance VARCHAR) ###human: Which opponent has 36102 is the attendance? ###assistant: SELECT opponent FROM table_23466021_4 WHERE attendance = 36102
###context:CREATE TABLE table_23466021_4 (attendance INTEGER) ###human: What is the attendance? ###assistant: SELECT MAX(attendance) FROM table_23466021_4
###context:CREATE TABLE table_23476629_2 (hometown VARCHAR, province VARCHAR) ###human: What is the hometown of contestants who are from the province of Huesca? ###assistant: SELECT hometown FROM table_23476629_2 WHERE province = "Huesca"
###context:CREATE TABLE table_23476629_2 (height__in_ VARCHAR, province VARCHAR) ###human: What is the height in inches of contestants who are from the province of La Rioja? ###assistant: SELECT height__in_ FROM table_23476629_2 WHERE province = "La Rioja"
###context:CREATE TABLE table_23476629_2 (age VARCHAR, hometown VARCHAR) ###human: How many contestants of whatever age are there whose hometown of Andujar? ###assistant: SELECT COUNT(age) FROM table_23476629_2 WHERE hometown = "Andujar"
###context:CREATE TABLE table_23477312_1 (service INTEGER, train_name VARCHAR) ###human: What's the service number of the Jammu Duronto train? ###assistant: SELECT MAX(service) FROM table_23477312_1 WHERE train_name = "Jammu Duronto"
###context:CREATE TABLE table_23477312_1 (train_name VARCHAR, destination VARCHAR) ###human: What's the name of the train to Madurai Junction? ###assistant: SELECT train_name FROM table_23477312_1 WHERE destination = "Madurai Junction"
###context:CREATE TABLE table_23477312_1 (service VARCHAR, train_name VARCHAR, departure VARCHAR) ###human: What's the service number of the Pune Duronto train that departures at 21:35? ###assistant: SELECT service FROM table_23477312_1 WHERE train_name = "Pune Duronto" AND departure = "21:35"
###context:CREATE TABLE table_23477312_1 (train_name VARCHAR, destination VARCHAR) ###human: What's the name of the train that goes to Bhubaneswar? ###assistant: SELECT train_name FROM table_23477312_1 WHERE destination = "Bhubaneswar"
###context:CREATE TABLE table_23486853_6 (record VARCHAR, opponent VARCHAR) ###human: What is the record when the opposing team was the Pittsburgh Penguins? ###assistant: SELECT record FROM table_23486853_6 WHERE opponent = "Pittsburgh Penguins"
###context:CREATE TABLE table_23486853_6 (game INTEGER, opponent VARCHAR) ###human: What was the game number when the opposing team was the Buffalo Sabres? ###assistant: SELECT MIN(game) FROM table_23486853_6 WHERE opponent = "Buffalo Sabres"
###context:CREATE TABLE table_234886_3 (directed_by VARCHAR, no_in_series VARCHAR) ###human: Who directed episode no. 44 in the series? ###assistant: SELECT directed_by FROM table_234886_3 WHERE no_in_series = 44
###context:CREATE TABLE table_234886_3 (no_in_season VARCHAR, prod_code VARCHAR) ###human: What is the number in the season of the episode with a production code of 2-05? ###assistant: SELECT COUNT(no_in_season) FROM table_234886_3 WHERE prod_code = "2-05"
###context:CREATE TABLE table_234886_3 (title VARCHAR, prod_code VARCHAR) ###human: What is the title of the episode with the production code 2-19? ###assistant: SELECT title FROM table_234886_3 WHERE prod_code = "2-19"
###context:CREATE TABLE table_234886_3 (title VARCHAR, no_in_series VARCHAR) ###human: What is the total number of titles for the episode numbered 29 in the series? ###assistant: SELECT COUNT(title) FROM table_234886_3 WHERE no_in_series = 29
###context:CREATE TABLE table_23492454_1 (title VARCHAR, directed_by VARCHAR) ###human: What was the name of the episode directed by Jessica Yu? ###assistant: SELECT title FROM table_23492454_1 WHERE directed_by = "Jessica Yu"
###context:CREATE TABLE table_23492454_1 (directed_by VARCHAR, written_by VARCHAR) ###human: who directed the episode written by Shonda Rhimes? ###assistant: SELECT directed_by FROM table_23492454_1 WHERE written_by = "Shonda Rhimes"
###context:CREATE TABLE table_23492454_1 (no_in_series VARCHAR, no_in_season VARCHAR) ###human: How many episodes in the series are also episode 18 in the season? ###assistant: SELECT COUNT(no_in_series) FROM table_23492454_1 WHERE no_in_season = 18
###context:CREATE TABLE table_23486853_8 (opponent VARCHAR, date VARCHAR) ###human: Who is every opponent on the date of March 16? ###assistant: SELECT opponent FROM table_23486853_8 WHERE date = "March 16"
###context:CREATE TABLE table_23486853_8 (score VARCHAR, opponent VARCHAR) ###human: What is every score for the opponent of Atlanta Thrashers? ###assistant: SELECT score FROM table_23486853_8 WHERE opponent = "Atlanta Thrashers"
###context:CREATE TABLE table_23486853_8 (location VARCHAR, date VARCHAR) ###human: What is every location for the date of March 20? ###assistant: SELECT location FROM table_23486853_8 WHERE date = "March 20"
###context:CREATE TABLE table_23486853_8 (score VARCHAR, location VARCHAR, points VARCHAR) ###human: What is every score at the location of Verizon Center and points of 68? ###assistant: SELECT score FROM table_23486853_8 WHERE location = "Verizon Center" AND points = 68
###context:CREATE TABLE table_23486853_8 (date VARCHAR, record VARCHAR) ###human: What is every date with a record of 30–34–12? ###assistant: SELECT date FROM table_23486853_8 WHERE record = "30–34–12"
###context:CREATE TABLE table_23508196_2 (officers_o_s INTEGER, total_usaaf VARCHAR) ###human: How many officers o/s were there on the day when the number of USAAF was 2373882? ###assistant: SELECT MAX(officers_o_s) FROM table_23508196_2 WHERE total_usaaf = 2373882
###context:CREATE TABLE table_23508196_2 (tot_enlisted VARCHAR, enlisted_o_s VARCHAR) ###human: How many different numbers of Tot enlisted are there on the dates when the number of Enlisted o/s was 801471? ###assistant: SELECT COUNT(tot_enlisted) FROM table_23508196_2 WHERE enlisted_o_s = 801471
###context:CREATE TABLE table_23508196_2 (tot_officers VARCHAR, tot_enlisted VARCHAR) ###human: How many tot officers were there on the date when the number of tot enlisted was 329640? ###assistant: SELECT tot_officers FROM table_23508196_2 WHERE tot_enlisted = 329640
###context:CREATE TABLE table_23508196_2 (tot_enlisted INTEGER, total_usaaf VARCHAR) ###human: How many Tot enlisted were there on the day when the number of total USAAF was 2329534? ###assistant: SELECT MAX(tot_enlisted) FROM table_23508196_2 WHERE total_usaaf = 2329534
###context:CREATE TABLE table_23495048_2 (age VARCHAR, represent VARCHAR) ###human: How many contestants where from mitteldeutschland? ###assistant: SELECT COUNT(age) FROM table_23495048_2 WHERE represent = "Mitteldeutschland"
###context:CREATE TABLE table_23495048_2 (height__mtr_ VARCHAR, contestant VARCHAR) ###human: How many meters tall is Ulrike Wolful? ###assistant: SELECT height__mtr_ FROM table_23495048_2 WHERE contestant = "Ulrike Wolful"
###context:CREATE TABLE table_23495048_2 (represent VARCHAR, height__mtr_ VARCHAR) ###human: Which country had a contestant that was 1.76 meters tall? ###assistant: SELECT represent FROM table_23495048_2 WHERE height__mtr_ = "1.76"
###context:CREATE TABLE table_23495048_2 (represent VARCHAR, height__mtr_ VARCHAR) ###human: What country had a contestant that was 1.70 meters tall? ###assistant: SELECT represent FROM table_23495048_2 WHERE height__mtr_ = "1.70"
###context:CREATE TABLE table_23501776_18 (points INTEGER, seed VARCHAR) ###human: If seed number is 2, what is the maximum amount of points? ###assistant: SELECT MAX(points) FROM table_23501776_18 WHERE seed = 2
###context:CREATE TABLE table_23501776_18 (status VARCHAR, new_points VARCHAR) ###human: If new points is 1720, what is the status? ###assistant: SELECT status FROM table_23501776_18 WHERE new_points = 1720
###context:CREATE TABLE table_23512864_4 (winning_party_coalition VARCHAR, election_year VARCHAR) ###human: Who is the winning party/coalition name in election year 1980? ###assistant: SELECT winning_party_coalition FROM table_23512864_4 WHERE election_year = 1980
###context:CREATE TABLE table_23512864_4 (election_year INTEGER, speaker VARCHAR) ###human: If the speaker is Munu Adhi (2) K. Rajaram, what is the election year maximum? ###assistant: SELECT MAX(election_year) FROM table_23512864_4 WHERE speaker = "Munu Adhi (2) K. Rajaram"
###context:CREATE TABLE table_23512864_4 (election_year INTEGER, speaker VARCHAR) ###human: If the speaker is R. Muthiah, what is the election year maximum? ###assistant: SELECT MAX(election_year) FROM table_23512864_4 WHERE speaker = "R. Muthiah"
###context:CREATE TABLE table_23512864_4 (speaker VARCHAR, chief_minister VARCHAR) ###human: What is the name of the speaker if the chief minister is M.G. Ramachandran? ###assistant: SELECT speaker FROM table_23512864_4 WHERE chief_minister = "M.G. Ramachandran"
###context:CREATE TABLE table_23512864_4 (election_year INTEGER, assembly VARCHAR) ###human: If the assembly is the sixth assembly, what is the maximum election year? ###assistant: SELECT MAX(election_year) FROM table_23512864_4 WHERE assembly = "Sixth assembly"
###context:CREATE TABLE table_23508196_5 (number_of_crews VARCHAR, type_of_unit VARCHAR) ###human: Name the number of crews for light bombardment group ###assistant: SELECT number_of_crews FROM table_23508196_5 WHERE type_of_unit = "Light bombardment group"
###context:CREATE TABLE table_23508196_5 (type_of_aircraft VARCHAR, number_of_crews VARCHAR) ###human: What is the aircraft for 21 crews? ###assistant: SELECT type_of_aircraft FROM table_23508196_5 WHERE number_of_crews = "21"
###context:CREATE TABLE table_23508196_5 (enlisted VARCHAR, type_of_unit VARCHAR) ###human: Nam ethe enlisted for troop carrier group ###assistant: SELECT enlisted FROM table_23508196_5 WHERE type_of_unit = "Troop carrier group"
###context:CREATE TABLE table_23513241_5 (title VARCHAR, us_viewers__millions_ VARCHAR) ###human: What was the title when 1.121 million US people watched it? ###assistant: SELECT title FROM table_23513241_5 WHERE us_viewers__millions_ = "1.121"
###context:CREATE TABLE table_23513241_5 (series_episode INTEGER, prod_code VARCHAR) ###human: What is the lowest series episode with a production code of 406? ###assistant: SELECT MIN(series_episode) FROM table_23513241_5 WHERE prod_code = 406
###context:CREATE TABLE table_23513241_5 (title VARCHAR, series_episode VARCHAR) ###human: List the title of series episode 38. ###assistant: SELECT title FROM table_23513241_5 WHERE series_episode = 38
###context:CREATE TABLE table_23548160_1 (formula VARCHAR, driver VARCHAR) ###human: What type of formula did Stirling Moss drive? ###assistant: SELECT formula FROM table_23548160_1 WHERE driver = "Stirling Moss"
###context:CREATE TABLE table_23548160_1 (year VARCHAR, driver VARCHAR) ###human: What year did Randy Lewis drive? ###assistant: SELECT year FROM table_23548160_1 WHERE driver = "Randy Lewis"
###context:CREATE TABLE table_23548160_1 (constructor VARCHAR, year VARCHAR) ###human: What was the constructor in 1975? ###assistant: SELECT constructor FROM table_23548160_1 WHERE year = 1975
###context:CREATE TABLE table (weight VARCHAR, market_name VARCHAR) ###human: If the market name is Xperia U, what is the weight? ###assistant: SELECT weight FROM table WHERE market_name = "Xperia U"
###context:CREATE TABLE table (release_date VARCHAR, code_name VARCHAR) ###human: What is the release date if the code name is Aoba? ###assistant: SELECT release_date FROM table WHERE code_name = "Aoba"
###context:CREATE TABLE table (battery___mah__ VARCHAR, nfc VARCHAR, weight VARCHAR) ###human: If the weight is 126g and the NFC is yes, what is the battery (MAH)? ###assistant: SELECT battery___mah__ FROM table WHERE nfc = "Yes" AND weight = "126g"
###context:CREATE TABLE table (platform VARCHAR, weight VARCHAR) ###human: What is the platform if the weight is 131.5g? ###assistant: SELECT platform FROM table WHERE weight = "131.5g"
###context:CREATE TABLE table (android_version VARCHAR, code_name VARCHAR) ###human: What is the Android version is the code name is Lotus? ###assistant: SELECT android_version FROM table WHERE code_name = "Lotus"
###context:CREATE TABLE table_23537091_1 (copper_age VARCHAR, ubaid_period_in_mesopotamia VARCHAR) ###human: When middle assyrian empire is the ubaid period in mesopotamia what is the copper age? ###assistant: SELECT copper_age FROM table_23537091_1 WHERE ubaid_period_in_mesopotamia = "Middle Assyrian Empire"
###context:CREATE TABLE table_23537091_1 (copper_age VARCHAR, ubaid_period_in_mesopotamia VARCHAR) ###human: When hittite old kingdom , minoan eruption is the ubaid period in mesopotamia what is the copper age? ###assistant: SELECT copper_age FROM table_23537091_1 WHERE ubaid_period_in_mesopotamia = "Hittite O...
###context:CREATE TABLE table_23537091_1 (early_chalcolithic VARCHAR, ubaid_period_in_mesopotamia VARCHAR) ###human: When hittite middle kingdom , new kingdom of egypt is the ubaid period in mesopotamia how many early chalcolithics are there? ###assistant: SELECT COUNT(early_chalcolithic) FROM table_23537091_1 ...
###context:CREATE TABLE table_23537091_1 (early_chalcolithic VARCHAR, ubaid_period_in_mesopotamia VARCHAR) ###human: When the second intermediate period of egypt is the ubaid period in mesopotamia how many early calcolithics are there? ###assistant: SELECT COUNT(early_chalcolithic) FROM table_23537091_1 WHERE ...
###context:CREATE TABLE table_23563375_11 (result VARCHAR, opponent VARCHAR) ###human: What was the score against Loic Didavi? ###assistant: SELECT result FROM table_23563375_11 WHERE opponent = "Loic Didavi"
###context:CREATE TABLE table_23563375_11 (against VARCHAR, w_l VARCHAR, round VARCHAR) ###human: Who was played against when there was a loss and in the gi po round? ###assistant: SELECT against FROM table_23563375_11 WHERE w_l = "Loss" AND round = "GI PO"
###context:CREATE TABLE table_23563375_11 (w_l VARCHAR, result VARCHAR) ###human: What were the w/l when the final score was 2–6, 5–7, 7–6 (11–9) , 1–6? ###assistant: SELECT w_l FROM table_23563375_11 WHERE result = "2–6, 5–7, 7–6 (11–9) , 1–6"
###context:CREATE TABLE table_2357201_1 (playoffs VARCHAR, regular_season VARCHAR) ###human: When Cleveland was 2nd, great lakes in the regular season what did they get to in the playoffs? ###assistant: SELECT playoffs FROM table_2357201_1 WHERE regular_season = "2nd, Great Lakes"
###context:CREATE TABLE table_2357201_1 (division INTEGER) ###human: What is the lowest numbered division Cleveland played in? ###assistant: SELECT MIN(division) FROM table_2357201_1
###context:CREATE TABLE table_2357201_1 (regular_season VARCHAR, year VARCHAR) ###human: How did Cleveland do in the regular season in 2006? ###assistant: SELECT regular_season FROM table_2357201_1 WHERE year = 2006
###context:CREATE TABLE table_2357201_1 (open_cup VARCHAR, year VARCHAR) ###human: How did Cleveland do in the Open Cup in 2009? ###assistant: SELECT open_cup FROM table_2357201_1 WHERE year = 2009
###context:CREATE TABLE table_23575917_6 (scores VARCHAR, lees_team VARCHAR) ###human: When victoria coren and rhod gilbert are both on the lees team what is the score? ###assistant: SELECT scores FROM table_23575917_6 WHERE lees_team = "Victoria Coren and Rhod Gilbert"
###context:CREATE TABLE table_23575917_6 (first_broadcast VARCHAR, davids_team VARCHAR) ###human: When david o'doherty and katherine parkinson are both on the davids team when is the first broadcast? ###assistant: SELECT first_broadcast FROM table_23575917_6 WHERE davids_team = "David O'Doherty and Katherine Pa...
###context:CREATE TABLE table_23575917_6 (episode VARCHAR, davids_team VARCHAR) ###human: When bill oddie and frank skinner are both on the davids team what is the episode? ###assistant: SELECT episode FROM table_23575917_6 WHERE davids_team = "Bill Oddie and Frank Skinner"
###context:CREATE TABLE table_23575917_6 (scores VARCHAR, lees_team VARCHAR) ###human: When kevin bridges and katy wix are both on the less team what is the score? ###assistant: SELECT scores FROM table_23575917_6 WHERE lees_team = "Kevin Bridges and Katy Wix"
###context:CREATE TABLE table_23575917_8 (episode VARCHAR, davids_team VARCHAR) ###human: How many shows did team David consist of vernon kay and dara Γ³ briain ###assistant: SELECT COUNT(episode) FROM table_23575917_8 WHERE davids_team = "Vernon Kay and Dara Γ“ Briain"
###context:CREATE TABLE table_23576576_2 (represented VARCHAR, hometown VARCHAR) ###human: If the hometown is Windhoek, what is the represented? ###assistant: SELECT represented FROM table_23576576_2 WHERE hometown = "Windhoek"
###context:CREATE TABLE table_23576576_2 (contestant VARCHAR, hometown VARCHAR) ###human: If the hometown is Omuthiya, what is the contestant name? ###assistant: SELECT contestant FROM table_23576576_2 WHERE hometown = "Omuthiya"
###context:CREATE TABLE table_23576576_2 (height__in_ VARCHAR, represented VARCHAR) ###human: What is the height in inches if the represented is Erongo? ###assistant: SELECT height__in_ FROM table_23576576_2 WHERE represented = "Erongo"
###context:CREATE TABLE table_23601267_2 (week VARCHAR, date VARCHAR) ###human: What week did September 29 fall in? ###assistant: SELECT COUNT(week) FROM table_23601267_2 WHERE date = "September 29"
###context:CREATE TABLE table_23601267_2 (final_score VARCHAR, date VARCHAR) ###human: What was the score on the October 28 game? ###assistant: SELECT final_score FROM table_23601267_2 WHERE date = "October 28"
###context:CREATE TABLE table_23601267_2 (final_score VARCHAR, date VARCHAR) ###human: What was the score on September 20? ###assistant: SELECT final_score FROM table_23601267_2 WHERE date = "September 20"
###context:CREATE TABLE table_23614702_1 (main_artillery VARCHAR, warship VARCHAR) ###human: What's Blanco Encalada's main artillery? ###assistant: SELECT main_artillery FROM table_23614702_1 WHERE warship = "Blanco Encalada"
###context:CREATE TABLE table_23614702_1 (horse__power VARCHAR, warship VARCHAR) ###human: How many different horse-powers does the Cochrane have? ###assistant: SELECT COUNT(horse__power) FROM table_23614702_1 WHERE warship = "Cochrane"
###context:CREATE TABLE table_23614702_1 (warship VARCHAR, horse__power VARCHAR) ###human: What warship has horse-power of 1500? ###assistant: SELECT warship FROM table_23614702_1 WHERE horse__power = 1500
###context:CREATE TABLE table_23614702_1 (tons___lton__ INTEGER, warship VARCHAR) ###human: How much does the Independencia weight? ###assistant: SELECT MIN(tons___lton__) FROM table_23614702_1 WHERE warship = "Independencia"
###context:CREATE TABLE table_23614702_1 (built_year VARCHAR, tons___lton__ VARCHAR) ###human: In how many different years was the warship that weights 1130 tons built? ###assistant: SELECT COUNT(built_year) FROM table_23614702_1 WHERE tons___lton__ = 1130
###context:CREATE TABLE table_23606500_4 (_percentage_20_39 VARCHAR, _percentage_60_74 VARCHAR) ###human: What is every value for % 20-39 if % 60-74 is 10,46%? ###assistant: SELECT _percentage_20_39 FROM table_23606500_4 WHERE _percentage_60_74 = "10,46%"
###context:CREATE TABLE table_23606500_4 (_percentage_40_59 VARCHAR, _percentage_60_74 VARCHAR) ###human: What is every value for % 40-59 if % 60-74 is 12,42%? ###assistant: SELECT _percentage_40_59 FROM table_23606500_4 WHERE _percentage_60_74 = "12,42%"
###context:CREATE TABLE table_23606500_4 (_percentage_20_39 VARCHAR, _percentage_0_19 VARCHAR) ###human: What is every value for % 20-39 if % 0-19 is 21,11%? ###assistant: SELECT _percentage_20_39 FROM table_23606500_4 WHERE _percentage_0_19 = "21,11%"
###context:CREATE TABLE table_23606500_4 (_percentage_40_59 VARCHAR, _percentage_60_74 VARCHAR) ###human: What is every value for % 40-59 if % 60-74 is 12,40%? ###assistant: SELECT _percentage_40_59 FROM table_23606500_4 WHERE _percentage_60_74 = "12,40%"
###context:CREATE TABLE table_23614702_2 (horse__power VARCHAR, warship VARCHAR) ###human: How man horse power did the ship covadonga have? ###assistant: SELECT horse__power FROM table_23614702_2 WHERE warship = "Covadonga"
###context:CREATE TABLE table_23614702_2 (main_artillery VARCHAR, tons___lton__ VARCHAR) ###human: What is the primary artillery for the 1,051 ships? ###assistant: SELECT main_artillery FROM table_23614702_2 WHERE tons___lton__ = "1,051"
###context:CREATE TABLE table_23614702_2 (speed___knots__ VARCHAR, tons___lton__ VARCHAR) ###human: List the maximum speed for the 1.150 ton ships? ###assistant: SELECT speed___knots__ FROM table_23614702_2 WHERE tons___lton__ = "1.150"
###context:CREATE TABLE table_23614702_2 (warship VARCHAR, main_artillery VARCHAR) ###human: List the ship with 1x115-2x70-2x12-pounders for primary artillery. ###assistant: SELECT warship FROM table_23614702_2 WHERE main_artillery = "1x115-2x70-2x12-pounders"
###context:CREATE TABLE table_23612439_2 (location VARCHAR, date VARCHAR) ###human: Which location has the date of October 28? ###assistant: SELECT location FROM table_23612439_2 WHERE date = "October 28"
###context:CREATE TABLE table_23612439_2 (final_score VARCHAR, attendance VARCHAR) ###human: What is the final score when 22210 is the attendance? ###assistant: SELECT final_score FROM table_23612439_2 WHERE attendance = 22210