question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What is the label for CAD 2014 CD?
CREATE TABLE table_name_57 (label VARCHAR, catalogue__number VARCHAR)
{ "SQL_Query": "SELECT label FROM table_name_57 WHERE catalogue__number = \"cad 2014 cd\"" }
What is the format for the catalogue number GAD 2014 CD on July 6, 1998?
CREATE TABLE table_name_40 (format VARCHAR, catalogue__number VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT format FROM table_name_40 WHERE catalogue__number = \"gad 2014 cd\" AND date = \"july 6, 1998\"" }
How many wins are there when the draws are less than 0?
CREATE TABLE table_name_52 (wins INTEGER, draws INTEGER)
{ "SQL_Query": "SELECT SUM(wins) FROM table_name_52 WHERE draws < 0" }
What are the most losses when there are 5 wins and draws less than 0?
CREATE TABLE table_name_7 (losses INTEGER, wins VARCHAR, draws VARCHAR)
{ "SQL_Query": "SELECT MAX(losses) FROM table_name_7 WHERE wins = 5 AND draws < 0" }
What are the most wins of Terang with the draws less than 0?
CREATE TABLE table_name_84 (wins INTEGER, club VARCHAR, draws VARCHAR)
{ "SQL_Query": "SELECT MAX(wins) FROM table_name_84 WHERE club = \"terang\" AND draws < 0" }
What is the lowest against when the draws are more than 0 and the losses are less than 3?
CREATE TABLE table_name_74 (against INTEGER, losses VARCHAR, draws VARCHAR)
{ "SQL_Query": "SELECT MIN(against) FROM table_name_74 WHERE losses < 3 AND draws > 0" }
What are the least losses of Warrnambool with more than 6 wins and less than 630 against?
CREATE TABLE table_name_18 (losses INTEGER, wins VARCHAR, against VARCHAR, club VARCHAR)
{ "SQL_Query": "SELECT MIN(losses) FROM table_name_18 WHERE against < 630 AND club = \"warrnambool\" AND wins > 6" }
What are the draws of Cobden when there are more than 3 losses?
CREATE TABLE table_name_23 (draws INTEGER, losses VARCHAR, club VARCHAR)
{ "SQL_Query": "SELECT AVG(draws) FROM table_name_23 WHERE losses > 3 AND club = \"cobden\"" }
What average bronze has 0 as the silver, 17 as the rank, and a gold less than 1?
CREATE TABLE table_name_80 (bronze INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT AVG(bronze) FROM table_name_80 WHERE silver = 0 AND rank = \"17\" AND gold < 1" }
What is the lowest silver that has 2 as the bronze, with a total greater than 4?
CREATE TABLE table_name_33 (silver INTEGER, bronze VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT MIN(silver) FROM table_name_33 WHERE bronze = 2 AND total > 4" }
How many bronzes have a total less than 11, with 11 as the rank, and a gold less than 1?
CREATE TABLE table_name_81 (bronze VARCHAR, gold VARCHAR, total VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT COUNT(bronze) FROM table_name_81 WHERE total < \"11\" AND rank = \"11\" AND gold < 1" }
What is the memory with a socket g1 and a 1/1/6/9 turbo?
CREATE TABLE table_name_93 (memory VARCHAR, socket VARCHAR, turbo VARCHAR)
{ "SQL_Query": "SELECT memory FROM table_name_93 WHERE socket = \"socket g1\" AND turbo = \"1/1/6/9\"" }
What is the release date of the 6 mb L3 cache with the part number by80607005259aabx80607i7740qm?
CREATE TABLE table_name_92 (release_date VARCHAR, l3_cache VARCHAR, part_number_s_ VARCHAR)
{ "SQL_Query": "SELECT release_date FROM table_name_92 WHERE l3_cache = \"6 mb\" AND part_number_s_ = \"by80607005259aabx80607i7740qm\"" }
What was the lowest draw for Beathoven when the place was smaller than 16?
CREATE TABLE table_name_55 (draw INTEGER, artist VARCHAR, place VARCHAR)
{ "SQL_Query": "SELECT MIN(draw) FROM table_name_55 WHERE artist = \"beathoven\" AND place < 16" }
What Luca Barbarossa song had a draw smaller than 20?
CREATE TABLE table_name_17 (song VARCHAR, draw VARCHAR, artist VARCHAR)
{ "SQL_Query": "SELECT song FROM table_name_17 WHERE draw < 20 AND artist = \"luca barbarossa\"" }
Who did they play at sec tournament?
CREATE TABLE table_name_17 (opponent VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_17 WHERE location = \"sec tournament\"" }
Where was the game played when their record was 9-1-0?
CREATE TABLE table_name_10 (location VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT location FROM table_name_10 WHERE record = \"9-1-0\"" }
Who was the director of the episode written by Russell T Davies and James Moran?
CREATE TABLE table_name_67 (director VARCHAR, writer VARCHAR)
{ "SQL_Query": "SELECT director FROM table_name_67 WHERE writer = \"russell t davies and james moran\"" }
Which Points have Drawn of 1, and a Played larger than 14?
CREATE TABLE table_name_95 (points INTEGER, drawn VARCHAR, played VARCHAR)
{ "SQL_Query": "SELECT MAX(points) FROM table_name_95 WHERE drawn = 1 AND played > 14" }
Which Position has Drawn larger than 1, and a Played smaller than 14?
CREATE TABLE table_name_34 (position INTEGER, drawn VARCHAR, played VARCHAR)
{ "SQL_Query": "SELECT MAX(position) FROM table_name_34 WHERE drawn > 1 AND played < 14" }
Which Lost has Drawn larger than 1, and a Played larger than 14?
CREATE TABLE table_name_30 (lost INTEGER, drawn VARCHAR, played VARCHAR)
{ "SQL_Query": "SELECT MIN(lost) FROM table_name_30 WHERE drawn > 1 AND played > 14" }
How much Lost has Points larger than 15, and a Name of ev pegnitz?
CREATE TABLE table_name_23 (lost VARCHAR, points VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT COUNT(lost) FROM table_name_23 WHERE points > 15 AND name = \"ev pegnitz\"" }
what is the english translation when the artist is ann christine?
CREATE TABLE table_name_10 (english_translation VARCHAR, artist VARCHAR)
{ "SQL_Query": "SELECT english_translation FROM table_name_10 WHERE artist = \"ann christine\"" }
What player was picked earlier than 126 by the Houston Oilers?
CREATE TABLE table_name_3 (player VARCHAR, pick VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_3 WHERE pick < 126 AND team = \"houston oilers\"" }
What college was picked later than 122 by the Boston Patriots?
CREATE TABLE table_name_88 (college VARCHAR, pick VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT college FROM table_name_88 WHERE pick > 122 AND team = \"boston patriots\"" }
what is the to par for geoff ogilvy?
CREATE TABLE table_name_65 (to_par VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_65 WHERE player = \"geoff ogilvy\"" }
what is the country for geoff ogilvy?
CREATE TABLE table_name_88 (country VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_88 WHERE player = \"geoff ogilvy\"" }
what is the to par for retief goosen?
CREATE TABLE table_name_93 (to_par VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_93 WHERE player = \"retief goosen\"" }
how many times is the player jim furyk?
CREATE TABLE table_name_55 (total VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT COUNT(total) FROM table_name_55 WHERE player = \"jim furyk\"" }
What is the lowest lane in which an athlete got a time larger than 20.75 and a react smaller than 0.166?
CREATE TABLE table_name_50 (lane INTEGER, time VARCHAR, react VARCHAR)
{ "SQL_Query": "SELECT MIN(lane) FROM table_name_50 WHERE time > 20.75 AND react < 0.166" }
What is Christian Malcolm´s highest react when his time was below 20.58?
CREATE TABLE table_name_72 (react INTEGER, time VARCHAR, athlete VARCHAR)
{ "SQL_Query": "SELECT MAX(react) FROM table_name_72 WHERE time < 20.58 AND athlete = \"christian malcolm\"" }
what is the position when the year [A} is after 2011 and the pick is 28?
CREATE TABLE table_name_67 (position VARCHAR, pick VARCHAR, year_ VARCHAR, a_ VARCHAR)
{ "SQL_Query": "SELECT position FROM table_name_67 WHERE year_[a_] > 2011 AND pick = \"28\"" }
Who is the player when the pick is 22 and the year [A] is after 1979?
CREATE TABLE table_name_5 (player_name VARCHAR, pick VARCHAR, year_ VARCHAR, a_ VARCHAR)
{ "SQL_Query": "SELECT player_name FROM table_name_5 WHERE pick = \"22\" AND year_[a_] > 1979" }
who is the player when the pick is 15 and the year [A] is 2000?
CREATE TABLE table_name_75 (player_name VARCHAR, pick VARCHAR, year_ VARCHAR, a_ VARCHAR)
{ "SQL_Query": "SELECT player_name FROM table_name_75 WHERE pick = \"15\" AND year_[a_] = 2000" }
Which country was the player from who scored 66-72-70=207?
CREATE TABLE table_name_45 (country VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_45 WHERE score = 66 - 72 - 70 = 207" }
What place was the player who scored 70-69-68=207?
CREATE TABLE table_name_6 (place VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT place FROM table_name_6 WHERE score = 70 - 69 - 68 = 207" }
What country was the player in t10 place with a score of 66-72-70=207?
CREATE TABLE table_name_12 (country VARCHAR, place VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_12 WHERE place = \"t10\" AND score = 66 - 72 - 70 = 207" }
What is the to par of United States' Cristie Kerr?
CREATE TABLE table_name_66 (to_par VARCHAR, country VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_66 WHERE country = \"united states\" AND player = \"cristie kerr\"" }
Who is the original artist of the 3:00 song?
CREATE TABLE table_name_87 (original_artist VARCHAR, length VARCHAR)
{ "SQL_Query": "SELECT original_artist FROM table_name_87 WHERE length = \"3:00\"" }
Which song lasts 3:34?
CREATE TABLE table_name_59 (song VARCHAR, length VARCHAR)
{ "SQL_Query": "SELECT song FROM table_name_59 WHERE length = \"3:34\"" }
Which song lasts 4:08?
CREATE TABLE table_name_86 (song VARCHAR, length VARCHAR)
{ "SQL_Query": "SELECT song FROM table_name_86 WHERE length = \"4:08\"" }
How many bronze medals for Romania when the silver count is more than 1?
CREATE TABLE table_name_96 (bronze INTEGER, nation VARCHAR, silver VARCHAR)
{ "SQL_Query": "SELECT AVG(bronze) FROM table_name_96 WHERE nation = \"romania\" AND silver > 1" }
Which manager had less than 287 losses, less than 80 wins, a win percentage of 0.296, and was employed in 1904?
CREATE TABLE table_name_96 (manager VARCHAR, wpct VARCHAR, years VARCHAR, losses VARCHAR, wins VARCHAR)
{ "SQL_Query": "SELECT manager FROM table_name_96 WHERE losses < 287 AND wins < 80 AND years = \"1904\" AND wpct = 0.296" }
Which U.S. Hot has 13 as the U.S. R&B?
CREATE TABLE table_name_95 (us_hot_100 VARCHAR, us_r VARCHAR, b VARCHAR)
{ "SQL_Query": "SELECT us_hot_100 FROM table_name_95 WHERE us_r & b = \"13\"" }
What U.S. Rap has life in the concrete jungle as the album?
CREATE TABLE table_name_15 (us_rap VARCHAR, album VARCHAR)
{ "SQL_Query": "SELECT us_rap FROM table_name_15 WHERE album = \"life in the concrete jungle\"" }
What are the Notes of the Mill Built in the 19th Century?
CREATE TABLE table_name_27 (notes VARCHAR, built VARCHAR)
{ "SQL_Query": "SELECT notes FROM table_name_27 WHERE built = \"19th century\"" }
What is the Type of Mill at Molen de Stud?
CREATE TABLE table_name_84 (type VARCHAR, name_of_mill VARCHAR)
{ "SQL_Query": "SELECT type FROM table_name_84 WHERE name_of_mill = \"molen de stud\"" }
What is the Name of the Mill Built in 1802?
CREATE TABLE table_name_73 (name_of_mill VARCHAR, built VARCHAR)
{ "SQL_Query": "SELECT name_of_mill FROM table_name_73 WHERE built = \"1802\"" }
What is the Location of the Mill Built in the Early 19th Century?
CREATE TABLE table_name_50 (location VARCHAR, built VARCHAR)
{ "SQL_Query": "SELECT location FROM table_name_50 WHERE built = \"early 19th century\"" }
What was the record for the game played by the home team San Francisco 49ers and visitor Philadelphia Eagles?
CREATE TABLE table_name_58 (record VARCHAR, home VARCHAR, visitor VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_58 WHERE home = \"san francisco 49ers\" AND visitor = \"philadelphia eagles\"" }
What is the record for the game played on September 27?
CREATE TABLE table_name_26 (record VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_26 WHERE date = \"september 27\"" }
What is the highest place of a song by Henri Dès that has fewer than 8 points?
CREATE TABLE table_name_6 (place INTEGER, artist VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT MAX(place) FROM table_name_6 WHERE artist = \"henri dès\" AND points < 8" }
What team was 2 on November 22, 2008 when the result was 1-0?
CREATE TABLE table_name_82 (team_2 VARCHAR, date VARCHAR, result VARCHAR)
{ "SQL_Query": "SELECT team_2 FROM table_name_82 WHERE date = \"november 22, 2008\" AND result = \"1-0\"" }
What team was 2 when Tatung was team 1 at National Pei Men Senior High School?
CREATE TABLE table_name_32 (team_2 VARCHAR, team_1 VARCHAR, ground VARCHAR)
{ "SQL_Query": "SELECT team_2 FROM table_name_32 WHERE team_1 = \"tatung\" AND ground = \"national pei men senior high school\"" }
Where was the game played that has a result of 0-4?
CREATE TABLE table_name_36 (ground VARCHAR, result VARCHAR)
{ "SQL_Query": "SELECT ground FROM table_name_36 WHERE result = \"0-4\"" }
What team is 2 when 1 is Taipower and the result is 0-1?
CREATE TABLE table_name_90 (team_2 VARCHAR, team_1 VARCHAR, result VARCHAR)
{ "SQL_Query": "SELECT team_2 FROM table_name_90 WHERE team_1 = \"taipower\" AND result = \"0-1\"" }
What team is 2 when the game result is 0-4 at Pailing Sport Park?
CREATE TABLE table_name_32 (team_2 VARCHAR, ground VARCHAR, result VARCHAR)
{ "SQL_Query": "SELECT team_2 FROM table_name_32 WHERE ground = \"pailing sport park\" AND result = \"0-4\"" }
What is the total point value when there are less than 12 draws, the rank is less than 17, and Philipp Kirkorov is the artist?
CREATE TABLE table_name_24 (points VARCHAR, place VARCHAR, draw VARCHAR, artist VARCHAR)
{ "SQL_Query": "SELECT COUNT(points) FROM table_name_24 WHERE draw < 12 AND artist = \"philipp kirkorov\" AND place < 17" }
What is the total ranking when there are less than 16 draws, less than 1 point, and the English translation is in love with you?
CREATE TABLE table_name_22 (place INTEGER, points VARCHAR, draw VARCHAR, english_translation VARCHAR)
{ "SQL_Query": "SELECT SUM(place) FROM table_name_22 WHERE draw < 16 AND english_translation = \"in love with you\" AND points < 1" }
What is the highest draw number when there are more than 31 points, a rank greater than 6, and the English translation is listen to me?
CREATE TABLE table_name_83 (draw INTEGER, english_translation VARCHAR, points VARCHAR, place VARCHAR)
{ "SQL_Query": "SELECT MAX(draw) FROM table_name_83 WHERE points > 31 AND place > 6 AND english_translation = \"listen to me\"" }
What was the population of Green County?
CREATE TABLE table_name_15 (population INTEGER, county VARCHAR)
{ "SQL_Query": "SELECT MIN(population) FROM table_name_15 WHERE county = \"green\"" }
What was the score of the game against Minnesota?
CREATE TABLE table_name_69 (score VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_69 WHERE opponent = \"minnesota\"" }
What player had the high point on July 7?
CREATE TABLE table_name_21 (high_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_name_21 WHERE date = \"july 7\"" }
What's the format of the single, I Can't Stay?
CREATE TABLE table_name_6 (format VARCHAR, single VARCHAR)
{ "SQL_Query": "SELECT format FROM table_name_6 WHERE single = \"i can't stay\"" }
What's the Backed after 2008 with a label of Wild World?
CREATE TABLE table_name_24 (backed_with VARCHAR, record_label VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT backed_with FROM table_name_24 WHERE record_label = \"wild world\" AND date > 2008" }
What's the date for Details of 1000 copies?
CREATE TABLE table_name_74 (date INTEGER, other_details VARCHAR)
{ "SQL_Query": "SELECT MIN(date) FROM table_name_74 WHERE other_details = \"1000 copies\"" }
What nation has paavo nurmi as the athlete, with a medal count less than 12?
CREATE TABLE table_name_62 (nation VARCHAR, athlete VARCHAR, medal_count VARCHAR)
{ "SQL_Query": "SELECT nation FROM table_name_62 WHERE athlete = \"paavo nurmi\" AND medal_count < 12" }
Which sport has 17 as the medal count?
CREATE TABLE table_name_4 (sport VARCHAR, medal_count VARCHAR)
{ "SQL_Query": "SELECT sport FROM table_name_4 WHERE medal_count = 17" }
What record medal event has athletics as the sport, with robert garrett as the athlete, and a medal count less than 3?
CREATE TABLE table_name_33 (record_medal_event VARCHAR, medal_count VARCHAR, sport VARCHAR, athlete VARCHAR)
{ "SQL_Query": "SELECT record_medal_event FROM table_name_33 WHERE sport = \"athletics\" AND athlete = \"robert garrett\" AND medal_count < 3" }
What is the Opponent of the game in Week 3?
CREATE TABLE table_name_21 (opponent VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_21 WHERE week = 3" }
What is the Attendance of the game on December 12, 2004?
CREATE TABLE table_name_84 (attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_name_84 WHERE date = \"december 12, 2004\"" }
What is the Attendance of the game against Jacksonville Jaguars?
CREATE TABLE table_name_53 (attendance VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_name_53 WHERE opponent = \"jacksonville jaguars\"" }
Which Score has a Money ( £ ) of 90,400, and a Country of south africa, and a Player of thomas aiken? Question 1
CREATE TABLE table_name_38 (score VARCHAR, player VARCHAR, money___£__ VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_38 WHERE money___£__ = \"90,400\" AND country = \"south africa\" AND player = \"thomas aiken\"" }
How much Money( £ )australia has ?
CREATE TABLE table_name_11 (money___£__ VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT money___£__ FROM table_name_11 WHERE country = \"australia\"" }
Count the Money ( £ ) of south africa with a To par of +1, and a Player of ernie els?
CREATE TABLE table_name_50 (money___£__ VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR)
{ "SQL_Query": "SELECT money___£__ FROM table_name_50 WHERE country = \"south africa\" AND to_par = \"+1\" AND player = \"ernie els\"" }
Where has a Player of tom watson?
CREATE TABLE table_name_22 (place VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT place FROM table_name_22 WHERE player = \"tom watson\"" }
Which Score has a To par of +1 in sweden?
CREATE TABLE table_name_67 (score VARCHAR, to_par VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_67 WHERE to_par = \"+1\" AND country = \"sweden\"" }
Which To par is of thomas aiken?
CREATE TABLE table_name_77 (to_par VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_77 WHERE player = \"thomas aiken\"" }
What is the average expenditures on R&D for Croatia after 2007?
CREATE TABLE table_name_32 (_ppp__ VARCHAR, d__billions_of_us$_ VARCHAR, expenditures_on_r INTEGER, country_region VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT AVG(expenditures_on_r) & d__billions_of_us$_, _ppp__ FROM table_name_32 WHERE country_region = \"croatia\" AND year > 2007" }
What is the lowest expenditures on R&D for Poland after 2011?
CREATE TABLE table_name_94 (_ppp__ VARCHAR, d__billions_of_us$_ VARCHAR, expenditures_on_r INTEGER, country_region VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT MIN(expenditures_on_r) & d__billions_of_us$_, _ppp__ FROM table_name_94 WHERE country_region = \"poland\" AND year > 2011" }
What is the Opposition in the First Round of the UEFA Cup with a Score of 3–1 (h), 2–0 (a)?
CREATE TABLE table_name_66 (opposition VARCHAR, score VARCHAR, round VARCHAR, competition VARCHAR)
{ "SQL_Query": "SELECT opposition FROM table_name_66 WHERE round = \"first round\" AND competition = \"uefa cup\" AND score = \"3–1 (h), 2–0 (a)\"" }
What is the Season of the game with a Score of 0–2 (a), 3–1 (h)?
CREATE TABLE table_name_24 (season VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT season FROM table_name_24 WHERE score = \"0–2 (a), 3–1 (h)\"" }
Which Location has a Year Joined of 1966, and a Previous Conference of noble county, and a School of wawaka?
CREATE TABLE table_name_83 (location VARCHAR, school VARCHAR, year_joined VARCHAR, previous_conference VARCHAR)
{ "SQL_Query": "SELECT location FROM table_name_83 WHERE year_joined = 1966 AND previous_conference = \"noble county\" AND school = \"wawaka\"" }
How much Year Left has a Location of howe?
CREATE TABLE table_name_13 (year_left INTEGER, location VARCHAR)
{ "SQL_Query": "SELECT SUM(year_left) FROM table_name_13 WHERE location = \"howe\"" }
Which School has a Year Left of 1966, and a Mascot of indians?
CREATE TABLE table_name_8 (school VARCHAR, year_left VARCHAR, mascot VARCHAR)
{ "SQL_Query": "SELECT school FROM table_name_8 WHERE year_left = 1966 AND mascot = \"indians\"" }
Who was the Elevator of Giacomo Colonna?
CREATE TABLE table_name_21 (elevator VARCHAR, elector VARCHAR)
{ "SQL_Query": "SELECT elevator FROM table_name_21 WHERE elector = \"giacomo colonna\"" }
What is the date of elevation for the Cardinal elevated by Nicholas III to the title of Cardinal-Deacon of S. Eustachio?
CREATE TABLE table_name_7 (elevated VARCHAR, elevator VARCHAR, cardinalatial_order_and_title VARCHAR)
{ "SQL_Query": "SELECT elevated FROM table_name_7 WHERE elevator = \"nicholas iii\" AND cardinalatial_order_and_title = \"cardinal-deacon of s. eustachio\"" }
What was the date of elevation for the cardinal given the order and title of Cardinal-Priest of S. Pudenziana?
CREATE TABLE table_name_91 (elevated VARCHAR, cardinalatial_order_and_title VARCHAR)
{ "SQL_Query": "SELECT elevated FROM table_name_91 WHERE cardinalatial_order_and_title = \"cardinal-priest of s. pudenziana\"" }
What are the games behind for the Oklahoma City Thunder division?
CREATE TABLE table_name_49 (games_behind__gb_ VARCHAR, division__div_ VARCHAR)
{ "SQL_Query": "SELECT games_behind__gb_ FROM table_name_49 WHERE division__div_ = \"oklahoma city thunder\"" }
What is the highest elevation of a place where the lowest point is the Allaine River, National border?
CREATE TABLE table_name_93 (highest_elevation VARCHAR, lowest_point VARCHAR)
{ "SQL_Query": "SELECT highest_elevation FROM table_name_93 WHERE lowest_point = \"allaine river, national border\"" }
What is the lowest elevation value whose highest point is Mont Raimeux?
CREATE TABLE table_name_62 (lowest_elevation VARCHAR, highest_point VARCHAR)
{ "SQL_Query": "SELECT lowest_elevation FROM table_name_62 WHERE highest_point = \"mont raimeux\"" }
What rank is Vaud with the lowest point is Lake Geneva?
CREATE TABLE table_name_19 (rank INTEGER, lowest_point VARCHAR, canton VARCHAR)
{ "SQL_Query": "SELECT SUM(rank) FROM table_name_19 WHERE lowest_point = \"lake geneva\" AND canton = \"vaud\"" }
Wich rank is given to the Canton of Schaffhausen?
CREATE TABLE table_name_4 (rank INTEGER, canton VARCHAR)
{ "SQL_Query": "SELECT SUM(rank) FROM table_name_4 WHERE canton = \"schaffhausen\"" }
What is the highest elevation for the highest point of Schnebelhorn?
CREATE TABLE table_name_7 (highest_elevation VARCHAR, highest_point VARCHAR)
{ "SQL_Query": "SELECT highest_elevation FROM table_name_7 WHERE highest_point = \"schnebelhorn\"" }
What is the Canton of Vaud's highest point?
CREATE TABLE table_name_85 (highest_point VARCHAR, canton VARCHAR)
{ "SQL_Query": "SELECT highest_point FROM table_name_85 WHERE canton = \"vaud\"" }
What type of ship is a Kobben class vessel that has been in service longer than 2?
CREATE TABLE table_name_18 (type VARCHAR, in_service VARCHAR, vessel VARCHAR)
{ "SQL_Query": "SELECT type FROM table_name_18 WHERE in_service > 2 AND vessel = \"kobben class\"" }
What is the unit for a submarine type ship from Norway?
CREATE TABLE table_name_74 (unit VARCHAR, type VARCHAR, origin VARCHAR)
{ "SQL_Query": "SELECT unit FROM table_name_74 WHERE type = \"submarine\" AND origin = \"norway\"" }
Who was the opponent with a 32-25 record?
CREATE TABLE table_name_50 (opponent VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_50 WHERE record = \"32-25\"" }
What is the location/ attendance for a 35-28 record?
CREATE TABLE table_name_4 (location_attendance VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_name_4 WHERE record = \"35-28\"" }
What is the latest year when Neal Baer was a nominee, and the result was nominated?
CREATE TABLE table_name_38 (year INTEGER, result VARCHAR, nominee_s_ VARCHAR)
{ "SQL_Query": "SELECT MAX(year) FROM table_name_38 WHERE result = \"nominated\" AND nominee_s_ = \"neal baer\"" }