combined_text
stringlengths
106
1.05k
###question:What boat was laid down on 25 april 1887?###answer:SELECT name FROM table_name_26 WHERE laid_down = "25 april 1887"###context:CREATE TABLE table_name_26 (name VARCHAR, laid_down VARCHAR)
###question:When did chatham complete the Hmsmedusa?###answer:SELECT completed FROM table_name_91 WHERE builder = "chatham" AND name = "hmsmedusa"###context:CREATE TABLE table_name_91 (completed VARCHAR, builder VARCHAR, name VARCHAR)
###question:What is the Overall with a Date that is february 4, 1964?###answer:SELECT overall FROM table_name_95 WHERE date = "february 4, 1964"###context:CREATE TABLE table_name_95 (overall VARCHAR, date VARCHAR)
###question:What is the Date with an Opponent that is indiana state college?###answer:SELECT date FROM table_name_71 WHERE opponent = "indiana state college"###context:CREATE TABLE table_name_71 (date VARCHAR, opponent VARCHAR)
###question:What is the Location with a Date that is december 10, 1963?###answer:SELECT location FROM table_name_11 WHERE date = "december 10, 1963"###context:CREATE TABLE table_name_11 (location VARCHAR, date VARCHAR)
###question:What is NiCd, when Type is "Capacity under 500mA constant Drain"?###answer:SELECT nicd FROM table_name_23 WHERE type = "capacity under 500ma constant drain"###context:CREATE TABLE table_name_23 (nicd VARCHAR, type VARCHAR)
###question:What is Li-FeS 2, when Type is Nominal Voltage?###answer:SELECT li_fes_2 FROM table_name_9 WHERE type = "nominal voltage"###context:CREATE TABLE table_name_9 (li_fes_2 VARCHAR, type VARCHAR)
###question:What was the Liberal Party result from the election having a Conservative Party result of 16 (-1) and Labour of 6 (+2)?###answer:SELECT liberal_party FROM table_name_97 WHERE conservative_party = "16 (-1)" AND labour_party = "6 (+2)"###context:CREATE TABLE table_name_97 (liberal_party VARCHAR, conservative_...
###question:What was the control for the year with a Conservative Party result of 10 (+5)?###answer:SELECT control FROM table_name_70 WHERE conservative_party = "10 (+5)"###context:CREATE TABLE table_name_70 (control VARCHAR, conservative_party VARCHAR)
###question:Who was in control the year that Labour Party won 12 (+6) seats?###answer:SELECT control FROM table_name_36 WHERE labour_party = "12 (+6)"###context:CREATE TABLE table_name_36 (control VARCHAR, labour_party VARCHAR)
###question:What is the number of Independents elected in the year Labour won 26 (+3) seats?###answer:SELECT independents FROM table_name_73 WHERE labour_party = "26 (+3)"###context:CREATE TABLE table_name_73 (independents VARCHAR, labour_party VARCHAR)
###question:What is the set 5 for the game with a set 2 of 21-25 and a set 1 of 41633?###answer:SELECT set_5 FROM table_name_62 WHERE set_2 = "21-25" AND set_1 = "41633"###context:CREATE TABLE table_name_62 (set_5 VARCHAR, set_2 VARCHAR, set_1 VARCHAR)
###question:What is the result of the game with a set 1 of 26-24?###answer:SELECT result__pts_ FROM table_name_17 WHERE set_1 = "26-24"###context:CREATE TABLE table_name_17 (result__pts_ VARCHAR, set_1 VARCHAR)
###question:Which Altadeña has a Aprende of jaguars?###answer:SELECT altadeña FROM table_name_83 WHERE aprende = "jaguars"###context:CREATE TABLE table_name_83 (altadeña VARCHAR, aprende VARCHAR)
###question:WHich kind of Aprende has a Centennial of 1988?###answer:SELECT aprende FROM table_name_35 WHERE centennial = "1988"###context:CREATE TABLE table_name_35 (aprende VARCHAR, centennial VARCHAR)
###question:Which Centennial has a Altadeña of panthers?###answer:SELECT centennial FROM table_name_4 WHERE altadeña = "panthers"###context:CREATE TABLE table_name_4 (centennial VARCHAR, altadeña VARCHAR)
###question:Which Centennial has a del Pueblo of 1986?###answer:SELECT centennial FROM table_name_40 WHERE del_pueblo = "1986"###context:CREATE TABLE table_name_40 (centennial VARCHAR, del_pueblo VARCHAR)
###question:What kind of Altadeña has del Pueblo of maroon/gray?###answer:SELECT altadeña FROM table_name_45 WHERE del_pueblo = "maroon/gray"###context:CREATE TABLE table_name_45 (altadeña VARCHAR, del_pueblo VARCHAR)
###question:How many people attended the game against Clemson?###answer:SELECT COUNT(attendance) FROM table_name_34 WHERE opponent = "clemson"###context:CREATE TABLE table_name_34 (attendance VARCHAR, opponent VARCHAR)
###question:Who's the Runner(s)-up with a Winning score of −19 (71-63-63-64=261)?###answer:SELECT runner_s__up FROM table_name_97 WHERE winning_score = −19(71 - 63 - 63 - 64 = 261)###context:CREATE TABLE table_name_97 (runner_s__up VARCHAR, winning_score VARCHAR)
###question:Which Date has a Runner(s)-up of fred funk?###answer:SELECT date FROM table_name_55 WHERE runner_s__up = "fred funk"###context:CREATE TABLE table_name_55 (date VARCHAR, runner_s__up VARCHAR)
###question:Which Tournament has a Date of jul 14, 2013?###answer:SELECT tournament FROM table_name_6 WHERE date = "jul 14, 2013"###context:CREATE TABLE table_name_6 (tournament VARCHAR, date VARCHAR)
###question:Which Margin of victory has a Tournament of u.s. senior open?###answer:SELECT margin_of_victory FROM table_name_34 WHERE tournament = "u.s. senior open"###context:CREATE TABLE table_name_34 (margin_of_victory VARCHAR, tournament VARCHAR)
###question:Which Date has a Runner(s)-up of bernhard langer, and a Tournament of at&t championship?###answer:SELECT date FROM table_name_3 WHERE runner_s__up = "bernhard langer" AND tournament = "at&t championship"###context:CREATE TABLE table_name_3 (date VARCHAR, runner_s__up VARCHAR, tournament VARCHAR)
###question:Which Date has a Margin of victory of 5 strokes, and a Winning score of −13 (67-73-64-63=267)?###answer:SELECT date FROM table_name_33 WHERE margin_of_victory = "5 strokes" AND winning_score = −13(67 - 73 - 64 - 63 = 267)###context:CREATE TABLE table_name_33 (date VARCHAR, margin_of_victory VARCHAR, winning...
###question:What is the Population density that has a Change (%) higher than 10.4, and a Population (2011) less than 8574, in the County of Queens?###answer:SELECT AVG(population_density) FROM table_name_63 WHERE change___percentage_ > 10.4 AND county = "queens" AND population__2011_ < 8574###context:CREATE TABLE table...
###question:What was the Population (2011) when the Population (2006) was less than 7083, and the Population density less than 342.8, and the Change (%) of 5, and an Area (km²) larger than 4.5?###answer:SELECT COUNT(population__2011_) FROM table_name_2 WHERE population__2006_ < 7083 AND population_density < 342.8 AND c...
###question:What was the Area (km²) when the Population (2011) was 8574, and the Population density was larger than 381.4?###answer:SELECT AVG(area__km²_) FROM table_name_21 WHERE population__2011_ = 8574 AND population_density > 381.4###context:CREATE TABLE table_name_21 (area__km²_ INTEGER, population__2011_ VARCHAR,...
###question:In the County of Prince, what was the highest Population density when the Area (km²) was larger than 3.02, and the Population (2006) was larger than 786, and the Population (2011) was smaller than 1135?###answer:SELECT MAX(population_density) FROM table_name_93 WHERE county = "prince" AND area__km²_ > 3.02 ...
###question:What is the lowest Against when the played is more than 10?###answer:SELECT MIN(against) FROM table_name_4 WHERE played > 10###context:CREATE TABLE table_name_4 (against INTEGER, played INTEGER)
###question:What is the sum of Against when the lost is more than 7?###answer:SELECT SUM(against) FROM table_name_45 WHERE lost > 7###context:CREATE TABLE table_name_45 (against INTEGER, lost INTEGER)
###question:What is the highest Drawn when the lost is 7 and the points are more than 4, and the against is less than 22?###answer:SELECT MAX(drawn) FROM table_name_12 WHERE lost = 7 AND points > 4 AND against < 22###context:CREATE TABLE table_name_12 (drawn INTEGER, against VARCHAR, lost VARCHAR, points VARCHAR)
###question:What team has an against more than 8, lost of 7, and the position is 5?###answer:SELECT team FROM table_name_13 WHERE against > 8 AND lost = 7 AND position = 5###context:CREATE TABLE table_name_13 (team VARCHAR, position VARCHAR, against VARCHAR, lost VARCHAR)
###question:What is the Against when the drawn is 5?###answer:SELECT against FROM table_name_21 WHERE drawn = 5###context:CREATE TABLE table_name_21 (against VARCHAR, drawn VARCHAR)
###question:How many years were there for the 62nd golden globe awards?###answer:SELECT SUM(year) FROM table_name_29 WHERE awards = "62nd golden globe awards"###context:CREATE TABLE table_name_29 (year INTEGER, awards VARCHAR)
###question:What was the result for years prior to 2005?###answer:SELECT result FROM table_name_83 WHERE year < 2005###context:CREATE TABLE table_name_83 (result VARCHAR, year INTEGER)
###question:Which awards happened more recently than 2005?###answer:SELECT awards FROM table_name_33 WHERE year > 2005###context:CREATE TABLE table_name_33 (awards VARCHAR, year INTEGER)
###question:What is the total years with average runs less than 4.75 and a time of 14.26?###answer:SELECT COUNT(year) FROM table_name_8 WHERE time = 14.26 AND avg_run < 4.75###context:CREATE TABLE table_name_8 (year VARCHAR, time VARCHAR, avg_run VARCHAR)
###question:What is the total amount of time for years prior to 2013 when speed option is the stage?###answer:SELECT SUM(time) FROM table_name_25 WHERE stage = "speed option" AND year < 2013###context:CREATE TABLE table_name_25 (time INTEGER, stage VARCHAR, year VARCHAR)
###question:What was the prior position held by Wyman Webb?###answer:SELECT prior_position FROM table_name_1 WHERE name = "wyman webb"###context:CREATE TABLE table_name_1 (prior_position VARCHAR, name VARCHAR)
###question:Who was appointed on October 21, 2011 from Quebec?###answer:SELECT name FROM table_name_31 WHERE province = "quebec" AND appointed = "october 21, 2011"###context:CREATE TABLE table_name_31 (name VARCHAR, province VARCHAR, appointed VARCHAR)
###question:The Away High Park Demons was which Ground?###answer:SELECT ground FROM table_name_83 WHERE away = "high park demons"###context:CREATE TABLE table_name_83 (ground VARCHAR, away VARCHAR)
###question:With the Ground of Humber College North at 12:00, what was the Away?###answer:SELECT away FROM table_name_69 WHERE ground = "humber college north" AND time = "12:00"###context:CREATE TABLE table_name_69 (away VARCHAR, ground VARCHAR, time VARCHAR)
###question:Who has the Home Score of 52-54?###answer:SELECT home FROM table_name_76 WHERE score = "52-54"###context:CREATE TABLE table_name_76 (home VARCHAR, score VARCHAR)
###question:When did the High Park Demons play Away?###answer:SELECT date FROM table_name_64 WHERE away = "high park demons"###context:CREATE TABLE table_name_64 (date VARCHAR, away VARCHAR)
###question:What tournament that Fernando Roca is the runner-up?###answer:SELECT tournament FROM table_name_14 WHERE runner_s__up = "fernando roca"###context:CREATE TABLE table_name_14 (tournament VARCHAR, runner_s__up VARCHAR)
###question:What is the winning score for the runner-up Ernie Els?###answer:SELECT winning_score FROM table_name_7 WHERE runner_s__up = "ernie els"###context:CREATE TABLE table_name_7 (winning_score VARCHAR, runner_s__up VARCHAR)
###question:How many people attended when Wake Forest played Virginia Tech?###answer:SELECT SUM(attendance) FROM table_name_21 WHERE opponent = "virginia tech"###context:CREATE TABLE table_name_21 (attendance INTEGER, opponent VARCHAR)
###question:What is Country, when Television Service is Eurosport 2?###answer:SELECT country FROM table_name_50 WHERE television_service = "eurosport 2"###context:CREATE TABLE table_name_50 (country VARCHAR, television_service VARCHAR)
###question:What is Package/Option, when Content is Poker?###answer:SELECT package_option FROM table_name_3 WHERE content = "poker"###context:CREATE TABLE table_name_3 (package_option VARCHAR, content VARCHAR)
###question:What is Language, when Content is Sport, when HDTV is No, and when Television Service is ESPN America?###answer:SELECT language FROM table_name_71 WHERE content = "sport" AND hdtv = "no" AND television_service = "espn america"###context:CREATE TABLE table_name_71 (language VARCHAR, television_service VARCHA...
###question:What is Package/Option, when Content is Tennis?###answer:SELECT package_option FROM table_name_3 WHERE content = "tennis"###context:CREATE TABLE table_name_3 (package_option VARCHAR, content VARCHAR)
###question:What is Television Service, when Content is Calcio, and when Package/Option is Option?###answer:SELECT television_service FROM table_name_5 WHERE content = "calcio" AND package_option = "option"###context:CREATE TABLE table_name_5 (television_service VARCHAR, content VARCHAR, package_option VARCHAR)
###question:What is the Novelty of the dinosaur that was named by the Author, Zhiming, and whose Notes are, "carcharodontosaurid"?###answer:SELECT novelty FROM table_name_46 WHERE authors = "zhiming" AND notes = "carcharodontosaurid"###context:CREATE TABLE table_name_46 (novelty VARCHAR, authors VARCHAR, notes VARCHAR)
###question:What is the Name of the dinosaur that was discovered in the Location, China, and whose Notes are, "described from a single tooth"?###answer:SELECT name FROM table_name_63 WHERE location = "china" AND notes = "described from a single tooth"###context:CREATE TABLE table_name_63 (name VARCHAR, location VARCHAR...
###question:What is the Name of the dinosaur, whose notes are, "n ornithischia of uncertain placement"?###answer:SELECT name FROM table_name_22 WHERE notes = "n ornithischia of uncertain placement"###context:CREATE TABLE table_name_22 (name VARCHAR, notes VARCHAR)
###question:What is the Status of the dinosaur, whose notes are, "n coelurosauria"?###answer:SELECT status FROM table_name_73 WHERE notes = "n coelurosauria"###context:CREATE TABLE table_name_73 (status VARCHAR, notes VARCHAR)
###question:What are the Notes of the dinosaur, whose Status is nomen dubium, and whose Location is China?###answer:SELECT notes FROM table_name_26 WHERE status = "nomen dubium" AND location = "china"###context:CREATE TABLE table_name_26 (notes VARCHAR, status VARCHAR, location VARCHAR)
###question:What is the Novelty of the dinosaur, whose naming Author was Galton?###answer:SELECT novelty FROM table_name_37 WHERE authors = "galton"###context:CREATE TABLE table_name_37 (novelty VARCHAR, authors VARCHAR)
###question:What is the number listed under against when there were less than 13 losses and less than 2 byes?###answer:SELECT COUNT(against) FROM table_name_72 WHERE losses < 13 AND byes < 2###context:CREATE TABLE table_name_72 (against VARCHAR, losses VARCHAR, byes VARCHAR)
###question:What is the highest number listed under against when there were 15 losses and more than 1 win?###answer:SELECT MAX(against) FROM table_name_97 WHERE losses = 15 AND wins > 1###context:CREATE TABLE table_name_97 (against INTEGER, losses VARCHAR, wins VARCHAR)
###question:What is the average number of Byes when there were less than 0 losses and were against 1247?###answer:SELECT AVG(byes) FROM table_name_75 WHERE against = 1247 AND draws < 0###context:CREATE TABLE table_name_75 (byes INTEGER, against VARCHAR, draws VARCHAR)
###question:What is the highest number listed under against when there were less than 3 wins and less than 15 losses?###answer:SELECT MAX(against) FROM table_name_20 WHERE wins < 3 AND losses < 15###context:CREATE TABLE table_name_20 (against INTEGER, wins VARCHAR, losses VARCHAR)
###question:What is the average public debt % of GDP in 2013 Q1 of the country with a member slate sorted by GDP of Czech Republic and a GDP per capita in PPP US dollars in 2012 greater than 27,191?###answer:SELECT AVG(public_debt__percentage_of_gdp__2013_q1_) FROM table_name_7 WHERE member_state_sorted_by_gdp = "czech...
###question:What is the largest inflation % annual in 2012 of the country with a public debt % of GDP in 2013 Q1 greater than 88.2 and a GDP % of EU in 2012 of 2.9%?###answer:SELECT MAX(inflation__percentage_annual__2012_) FROM table_name_74 WHERE public_debt__percentage_of_gdp__2013_q1_ > 88.2 AND gdp__percentage_of_e...
###question:What is the GDP % of EU in 2012 of the country with a GDP in billions of USD in 2012 of 256.3?###answer:SELECT gdp__percentage_of_eu__2012_ FROM table_name_19 WHERE gdp_in_s_billion_of_usd__2012_ = 256.3###context:CREATE TABLE table_name_19 (gdp__percentage_of_eu__2012_ VARCHAR, gdp_in_s_billion_of_usd__201...
###question:What is the Chord with a Major that is third of e?###answer:SELECT chord FROM table_name_69 WHERE major_third = "e"###context:CREATE TABLE table_name_69 (chord VARCHAR, major_third VARCHAR)
###question:What is the Chord with a Minor that is seventh of f?###answer:SELECT chord FROM table_name_73 WHERE minor_seventh = "f"###context:CREATE TABLE table_name_73 (chord VARCHAR, minor_seventh VARCHAR)
###question:What is the Major third with a Perfect fifth that is d?###answer:SELECT major_third FROM table_name_20 WHERE perfect_fifth = "d"###context:CREATE TABLE table_name_20 (major_third VARCHAR, perfect_fifth VARCHAR)
###question:What is the Perfect fifth with a Minor that is seventh of d?###answer:SELECT perfect_fifth FROM table_name_48 WHERE minor_seventh = "d"###context:CREATE TABLE table_name_48 (perfect_fifth VARCHAR, minor_seventh VARCHAR)
###question:Where was the game, and how many attended the game on january 2?###answer:SELECT location_attendance FROM table_name_69 WHERE date = "january 2"###context:CREATE TABLE table_name_69 (location_attendance VARCHAR, date VARCHAR)
###question:What is the Location and Attendance with a Record of 21–22?###answer:SELECT location_attendance FROM table_name_16 WHERE record = "21–22"###context:CREATE TABLE table_name_16 (location_attendance VARCHAR, record VARCHAR)
###question:What was the date of the game against North Carolina?###answer:SELECT date FROM table_name_10 WHERE opponent = "north carolina"###context:CREATE TABLE table_name_10 (date VARCHAR, opponent VARCHAR)
###question:How many FG percent values are associated with 59 assists and offensive rebounds under 40?###answer:SELECT COUNT(fg_pct) FROM table_name_21 WHERE asst = 59 AND off_reb < 40###context:CREATE TABLE table_name_21 (fg_pct VARCHAR, asst VARCHAR, off_reb VARCHAR)
###question:What is the total number of offensive rebounds for players with under 65 total rebounds, 5 defensive rebounds, and under 7 assists?###answer:SELECT COUNT(off_reb) FROM table_name_8 WHERE total_reb < 65 AND def_reb = 5 AND asst < 7###context:CREATE TABLE table_name_8 (off_reb VARCHAR, asst VARCHAR, total_reb...
###question:Which Round has a Competition of uefa cup, and a Series of 5–2?###answer:SELECT round FROM table_name_34 WHERE competition = "uefa cup" AND series = "5–2"###context:CREATE TABLE table_name_34 (round VARCHAR, competition VARCHAR, series VARCHAR)
###question:Which Series has a Home of 2–0, and an Opponent of panathinaikos?###answer:SELECT series FROM table_name_96 WHERE home = "2–0" AND opponent = "panathinaikos"###context:CREATE TABLE table_name_96 (series VARCHAR, home VARCHAR, opponent VARCHAR)
###question:Which Home has a Competition of european cup, and a Round of qf?###answer:SELECT home FROM table_name_70 WHERE competition = "european cup" AND round = "qf"###context:CREATE TABLE table_name_70 (home VARCHAR, competition VARCHAR, round VARCHAR)
###question:Which Season has an Opponent of hibernians?###answer:SELECT season FROM table_name_4 WHERE opponent = "hibernians"###context:CREATE TABLE table_name_4 (season VARCHAR, opponent VARCHAR)
###question:Which Opponent has an Away of 1–1, and a Home of 3–3?###answer:SELECT opponent FROM table_name_25 WHERE away = "1–1" AND home = "3–3"###context:CREATE TABLE table_name_25 (opponent VARCHAR, away VARCHAR, home VARCHAR)
###question:Which Home has a Round of r1, and an Opponent of dundee united?###answer:SELECT home FROM table_name_72 WHERE round = "r1" AND opponent = "dundee united"###context:CREATE TABLE table_name_72 (home VARCHAR, round VARCHAR, opponent VARCHAR)
###question:What is the set 2 the has 1 set of 21-25, and 4 sets of 25-20?###answer:SELECT set_2 FROM table_name_17 WHERE set_1 = "21-25" AND set_4 = "25-20"###context:CREATE TABLE table_name_17 (set_2 VARCHAR, set_1 VARCHAR, set_4 VARCHAR)
###question:What is Domenik Hixon's average rush?###answer:SELECT avg FROM table_name_76 WHERE player = "domenik hixon"###context:CREATE TABLE table_name_76 (avg VARCHAR, player VARCHAR)
###question:What is the total number of Viewers when the rank is #40?###answer:SELECT COUNT(viewers) FROM table_name_30 WHERE rank = "#40"###context:CREATE TABLE table_name_30 (viewers VARCHAR, rank VARCHAR)
###question:What is the average Episode # with a share of 9, and #35 is rank and less than 8.21 viewers?###answer:SELECT AVG(episode__number) FROM table_name_96 WHERE share = 9 AND rank = "#35" AND viewers < 8.21###context:CREATE TABLE table_name_96 (episode__number INTEGER, viewers VARCHAR, share VARCHAR, rank VARCHAR...
###question:What is the lowest Bronze with a Nation of egypt (egy) and with a Gold that is smaller than 2?###answer:SELECT MIN(bronze) FROM table_name_56 WHERE nation = "egypt (egy)" AND gold < 2###context:CREATE TABLE table_name_56 (bronze INTEGER, nation VARCHAR, gold VARCHAR)
###question:What is the total number of Silver with a Total that is smaller than 1?###answer:SELECT COUNT(silver) FROM table_name_19 WHERE total < 1###context:CREATE TABLE table_name_19 (silver VARCHAR, total INTEGER)
###question:What is the highest Total with a Rank that is smaller than 4 and a Nation of tunisia (tun) with a Gold that is smaller than 2?###answer:SELECT MAX(total) FROM table_name_57 WHERE rank < 4 AND nation = "tunisia (tun)" AND gold < 2###context:CREATE TABLE table_name_57 (total INTEGER, gold VARCHAR, rank VARCHA...
###question:What is the average Total with a Nation of ethiopia (eth) and a Rank that is larger than 9?###answer:SELECT AVG(total) FROM table_name_4 WHERE nation = "ethiopia (eth)" AND rank > 9###context:CREATE TABLE table_name_4 (total INTEGER, nation VARCHAR, rank VARCHAR)
###question:From which region is the album with release date of 19 June 2007?###answer:SELECT region FROM table_name_7 WHERE date = "19 june 2007"###context:CREATE TABLE table_name_7 (region VARCHAR, date VARCHAR)
###question:Which label released the catalog Magik Muzik CD 07 on 28 March 2007?###answer:SELECT label FROM table_name_86 WHERE date = "28 march 2007" AND catalog = "magik muzik cd 07"###context:CREATE TABLE table_name_86 (label VARCHAR, date VARCHAR, catalog VARCHAR)
###question:For the catalog title DP068-07, what formats are available?###answer:SELECT format FROM table_name_52 WHERE catalog = "dp068-07"###context:CREATE TABLE table_name_52 (format VARCHAR, catalog VARCHAR)
###question:What is the Term in office with an Order that is 9?###answer:SELECT term_in_office FROM table_name_21 WHERE order = "9"###context:CREATE TABLE table_name_21 (term_in_office VARCHAR, order VARCHAR)
###question:What competition has June 19, 2004 as the date?###answer:SELECT competition FROM table_name_5 WHERE date = "june 19, 2004"###context:CREATE TABLE table_name_5 (competition VARCHAR, date VARCHAR)
###question:What result has January 21, 2002 as the date?###answer:SELECT result FROM table_name_51 WHERE date = "january 21, 2002"###context:CREATE TABLE table_name_51 (result VARCHAR, date VARCHAR)
###question:What date has alamodome, san antonio, united states as the venue?###answer:SELECT date FROM table_name_63 WHERE venue = "alamodome, san antonio, united states"###context:CREATE TABLE table_name_63 (date VARCHAR, venue VARCHAR)
###question:What date has 2006 fifa world cup qualification as the competition, and alamodome, san antonio, united States as the venue?###answer:SELECT date FROM table_name_40 WHERE competition = "2006 fifa world cup qualification" AND venue = "alamodome, san antonio, united states"###context:CREATE TABLE table_name_40...
###question:What is the rank of the nation with more than 0 silver medals and 38 bronze medals?###answer:SELECT rank FROM table_name_97 WHERE silver > 0 AND bronze = 38###context:CREATE TABLE table_name_97 (rank VARCHAR, silver VARCHAR, bronze VARCHAR)
###question:Which astrological sign has the Latin motto of Vita?###answer:SELECT sign FROM table_name_21 WHERE latin_motto = "vita"###context:CREATE TABLE table_name_21 (sign VARCHAR, latin_motto VARCHAR)
###question:What is the translation of the sign of Aquarius?###answer:SELECT translation FROM table_name_15 WHERE sign = "aquarius"###context:CREATE TABLE table_name_15 (translation VARCHAR, sign VARCHAR)