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