question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
When did the Cyclones get 46 points?
CREATE TABLE table_23184448_3 (date VARCHAR, cyclones_points VARCHAR)
SELECT date FROM table_23184448_3 WHERE cyclones_points = 46
Which position is cfl team edmonton eskimos for weber state college?
CREATE TABLE table_21321804_1 (position VARCHAR, cfl_team VARCHAR, college VARCHAR)
SELECT position FROM table_21321804_1 WHERE cfl_team = "Edmonton Eskimos" AND college = "Weber State"
What is the average draws with more than 38 played?
CREATE TABLE table_name_25 (draws INTEGER, played INTEGER)
SELECT AVG(draws) FROM table_name_25 WHERE played > 38
What was the score of the game played on September 9?
CREATE TABLE table_name_5 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_5 WHERE date = "september 9"
Which Margin of victory has a Tournament of u.s. senior open?
CREATE TABLE table_name_34 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_name_34 WHERE tournament = "u.s. senior open"
What was the number of "The Word" segments for episode number 727?
CREATE TABLE table_25691838_6 (the_wørd VARCHAR, episode__number VARCHAR)
SELECT COUNT(the_wørd) FROM table_25691838_6 WHERE episode__number = 727
Which ship has a Pennant number of h.69?
CREATE TABLE table_name_43 (ship VARCHAR, pennant_number VARCHAR)
SELECT ship FROM table_name_43 WHERE pennant_number = "h.69"
Which bumping/blocking has a yes for both the ankle tap and steal/intercept ball?
CREATE TABLE table_name_49 (bumping_blocking VARCHAR, ankle_tap VARCHAR, steal_intercept_ball VARCHAR)
SELECT bumping_blocking FROM table_name_49 WHERE ankle_tap = "yes" AND steal_intercept_ball = "yes"
Who was the winning team at Zandvoort?
CREATE TABLE table_name_6 (winning_team VARCHAR, circuit VARCHAR)
SELECT winning_team FROM table_name_6 WHERE circuit = "zandvoort"
How many years have had the position of 2nd?
CREATE TABLE table_name_66 (year VARCHAR, position VARCHAR)
SELECT COUNT(year) FROM table_name_66 WHERE position = "2nd"
Find the id and name of the museum that has the most staff members?
CREATE TABLE museum (museum_id VARCHAR, name VARCHAR, num_of_staff VARCHAR)
SELECT museum_id, name FROM museum ORDER BY num_of_staff DESC LIMIT 1
What are the distinct cross reference source system codes which are related to the master customer details 'Gottlieb, Becker and Wyman'?
CREATE TABLE customer_master_index (master_customer_id VARCHAR, cmi_details VARCHAR); CREATE TABLE cmi_cross_references (source_system_code VARCHAR, master_customer_id VARCHAR)
SELECT DISTINCT T2.source_system_code FROM customer_master_index AS T1 JOIN cmi_cross_references AS T2 ON T1.master_customer_id = T2.master_customer_id WHERE T1.cmi_details = 'Gottlieb , Becker and Wyman'
How was the native american, Wau-Bau-Ne-Me-Mee, executed?
CREATE TABLE table_name_19 (method VARCHAR, race VARCHAR, name VARCHAR)
SELECT method FROM table_name_19 WHERE race = "native american" AND name = "wau-bau-ne-me-mee"
What is the lowest # Of Episodes, when Date Released is "15 December 2011"?
CREATE TABLE table_name_75 (_number_of_episodes INTEGER, date_released VARCHAR)
SELECT MIN(_number_of_episodes) FROM table_name_75 WHERE date_released = "15 december 2011"
What was the manner of departure for the appointment date of 21 september 2010
CREATE TABLE table_27495117_3 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)
SELECT manner_of_departure FROM table_27495117_3 WHERE date_of_appointment = "21 September 2010"
What race was there in the formula one series when there was a test driver?
CREATE TABLE table_name_40 (races VARCHAR, series VARCHAR, poles VARCHAR)
SELECT races FROM table_name_40 WHERE series = "formula one" AND poles = "test driver"
Cordell Hull is the incumbent in how many districts?
CREATE TABLE table_1342393_41 (district VARCHAR, incumbent VARCHAR)
SELECT COUNT(district) FROM table_1342393_41 WHERE incumbent = "Cordell Hull"
Which paper is published in an institution in "USA" and have "Turon" as its second author?
CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR, instid VARCHAR, authorder VARCHAR); CREATE TABLE authors (authid VARCHAR, lname VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR); CREATE TABLE inst (instid VARCHAR, country VARCHAR)
SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid JOIN inst AS t4 ON t2.instid = t4.instid WHERE t4.country = "USA" AND t2.authorder = 2 AND t1.lname = "Turon"
Which country has an area of 871,980 square km?
CREATE TABLE table_name_15 (member_countries VARCHAR, area__km²_ VARCHAR)
SELECT member_countries FROM table_name_15 WHERE area__km²_ = "871,980"
Which week had 39,056 people in attendance?
CREATE TABLE table_name_89 (week VARCHAR, attendance VARCHAR)
SELECT week FROM table_name_89 WHERE attendance = "39,056"
What Locomotive was Delivered as T414?
CREATE TABLE table_name_2 (locomotive VARCHAR, delivered_as VARCHAR)
SELECT locomotive FROM table_name_2 WHERE delivered_as = "t414"
What are the countries in which the agricultural use (m 3 /p/yr)(in %) is 2040(93%)?
CREATE TABLE table_15909409_2 (country VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)
SELECT country FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "2040(93%)"
What is the lowest position?
CREATE TABLE table_19412902_2 (pos INTEGER)
SELECT MAX(pos) FROM table_19412902_2
What result did the ktm motorcycle achieve?
CREATE TABLE table_16710541_2 (position VARCHAR, motorcycle VARCHAR)
SELECT position FROM table_16710541_2 WHERE motorcycle = "KTM"
Who did she play with on clay?
CREATE TABLE table_1920271_3 (partner VARCHAR, surface VARCHAR)
SELECT partner FROM table_1920271_3 WHERE surface = "Clay"
Where did Dennis Byrd go to college?
CREATE TABLE table_name_29 (college VARCHAR, player VARCHAR)
SELECT college FROM table_name_29 WHERE player = "dennis byrd"
Which player has the fewest assists and played 2 games or fewer?
CREATE TABLE table_name_72 (assists INTEGER, games INTEGER)
SELECT MIN(assists) FROM table_name_72 WHERE games < 2
What are the names of the chairs of festivals, sorted in ascending order of the year held?
CREATE TABLE festival_detail (Chair_Name VARCHAR, YEAR VARCHAR)
SELECT Chair_Name FROM festival_detail ORDER BY YEAR
What were the notes when the Venue was Turin, Italy?
CREATE TABLE table_name_62 (notes VARCHAR, venue VARCHAR)
SELECT notes FROM table_name_62 WHERE venue = "turin, italy"
What surface was the Australian Open (1) played on?
CREATE TABLE table_name_84 (surface VARCHAR, championship VARCHAR)
SELECT surface FROM table_name_84 WHERE championship = "australian open (1)"
What was the Indians record during the game that had 19,823 fans attending?
CREATE TABLE table_name_75 (record VARCHAR, attendance VARCHAR)
SELECT record FROM table_name_75 WHERE attendance = "19,823"
How many tries for does Pontardawe RFC have?
CREATE TABLE table_14070062_3 (tries_for VARCHAR, club VARCHAR)
SELECT tries_for FROM table_14070062_3 WHERE club = "Pontardawe RFC"
What is the IHSAA class for Muncie Burris?
CREATE TABLE table_name_69 (ihsaa_class VARCHAR, school VARCHAR)
SELECT ihsaa_class FROM table_name_69 WHERE school = "muncie burris"
What was Austria's lowest total when the gold was more than 3?
CREATE TABLE table_name_84 (total INTEGER, nation VARCHAR, gold VARCHAR)
SELECT MIN(total) FROM table_name_84 WHERE nation = "austria" AND gold > 3
What is the Player that has a To standard of –4?
CREATE TABLE table_name_71 (player VARCHAR, to_par VARCHAR)
SELECT player FROM table_name_71 WHERE to_par = "–4"
What is the average Founded, when Enrollment is 4,000?
CREATE TABLE table_name_68 (founded INTEGER, enrollment VARCHAR)
SELECT AVG(founded) FROM table_name_68 WHERE enrollment = 4 OFFSET 000
who is the the incumbent with district being ohio 2
CREATE TABLE table_1342013_34 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1342013_34 WHERE district = "Ohio 2"
What's the sum of Opening Weekend Net Gross at the Studio of UTV Motion Pictures?
CREATE TABLE table_name_8 (opening_weekend_net_gross INTEGER, studio_s_ VARCHAR)
SELECT SUM(opening_weekend_net_gross) FROM table_name_8 WHERE studio_s_ = "utv motion pictures"
Tell me the stages for 1981
CREATE TABLE table_name_42 (stages VARCHAR, year VARCHAR)
SELECT stages FROM table_name_42 WHERE year = 1981
How tall is nerlens noel?
CREATE TABLE table_name_11 (height VARCHAR, player VARCHAR)
SELECT height FROM table_name_11 WHERE player = "nerlens noel"
How many values for silver occur when gold is less than 1, the rank is 13, and bronze is greater than 2?
CREATE TABLE table_name_70 (silver VARCHAR, bronze VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT COUNT(silver) FROM table_name_70 WHERE gold < 1 AND rank = 13 AND bronze > 2
What was the total attendance with a result of W 31-21 before week 9?
CREATE TABLE table_name_13 (attendance VARCHAR, result VARCHAR, week VARCHAR)
SELECT COUNT(attendance) FROM table_name_13 WHERE result = "w 31-21" AND week < 9
Tell me the wekk for eastern #2 of houston
CREATE TABLE table_name_37 (week VARCHAR, eastern__number2 VARCHAR)
SELECT week FROM table_name_37 WHERE eastern__number2 = "houston"
Name who directed when the viewers is 5.86
CREATE TABLE table_27401228_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT directed_by FROM table_27401228_1 WHERE us_viewers__million_ = "5.86"
How many institutions are located in wilmore, kentucky and private
CREATE TABLE table_10581768_2 (founded INTEGER, type VARCHAR, location VARCHAR)
SELECT MAX(founded) FROM table_10581768_2 WHERE type = "Private" AND location = "Wilmore, Kentucky"
Which Date has a Game of game 3?
CREATE TABLE table_name_90 (date VARCHAR, game VARCHAR)
SELECT date FROM table_name_90 WHERE game = "game 3"
what is the tv station when the romaji title is kazoku~tsuma no fuzai・otto no sonzai~?
CREATE TABLE table_name_17 (tv_station VARCHAR, romaji_title VARCHAR)
SELECT tv_station FROM table_name_17 WHERE romaji_title = "kazoku~tsuma no fuzai・otto no sonzai~"
Which Played has a Drawn of 5, and a Team of palmeiras, and a Position smaller than 6?
CREATE TABLE table_name_95 (played INTEGER, position VARCHAR, drawn VARCHAR, team VARCHAR)
SELECT MAX(played) FROM table_name_95 WHERE drawn = 5 AND team = "palmeiras" AND position < 6
What is Date, when Time is "56.49"?
CREATE TABLE table_name_90 (date VARCHAR, time VARCHAR)
SELECT date FROM table_name_90 WHERE time = "56.49"
What is the total number of Round, when Position is 2B?
CREATE TABLE table_name_77 (round VARCHAR, position VARCHAR)
SELECT COUNT(round) FROM table_name_77 WHERE position = "2b"
What was the transfer fee when the moving from was celta de Vigo?
CREATE TABLE table_name_25 (transfer_fee VARCHAR, moving_from VARCHAR)
SELECT transfer_fee FROM table_name_25 WHERE moving_from = "celta de vigo"
What episode after 1998 had John Wells as the nominee?
CREATE TABLE table_name_25 (episode VARCHAR, year VARCHAR, nominee_s_ VARCHAR)
SELECT episode FROM table_name_25 WHERE year > 1998 AND nominee_s_ = "john wells"
What is 1996 Grand Slam Tournament if 1994 is LQ and 1992 is 3R?
CREATE TABLE table_name_4 (Id VARCHAR)
SELECT 1996 FROM table_name_4 WHERE 1994 = "lq" AND 1992 = "3r"
What was the MNZ FEA when the SIL SPR was 18?
CREATE TABLE table_name_73 (mnz_fea VARCHAR, sil_spr VARCHAR)
SELECT mnz_fea FROM table_name_73 WHERE sil_spr = "18"
Which Frequency has a Call sign of kcse?
CREATE TABLE table_name_93 (frequency VARCHAR, call_sign VARCHAR)
SELECT frequency FROM table_name_93 WHERE call_sign = "kcse"
What date did season 12 premiere?
CREATE TABLE table_2655016_4 (original_air_date VARCHAR, season__number VARCHAR)
SELECT original_air_date FROM table_2655016_4 WHERE season__number = 12
What engine has an output of ps (kw; hp) @4700 rpm?
CREATE TABLE table_name_85 (engine VARCHAR, output VARCHAR)
SELECT engine FROM table_name_85 WHERE output = "ps (kw; hp) @4700 rpm"
How many fatalities are there for the airline of spantax, with a registration of ec-arz?
CREATE TABLE table_name_67 (fatalities INTEGER, airline VARCHAR, registration VARCHAR)
SELECT AVG(fatalities) FROM table_name_67 WHERE airline = "spantax" AND registration = "ec-arz"
What is the name of the party called name?
CREATE TABLE table_name_45 (party VARCHAR)
SELECT party FROM table_name_45 WHERE "name" = "name"
What is the average Acquired when the Number shows as 7?
CREATE TABLE table_name_73 (acquired INTEGER, number VARCHAR)
SELECT AVG(acquired) FROM table_name_73 WHERE number = 7
List the section_name in reversed lexicographical order.
CREATE TABLE Sections (section_name VARCHAR)
SELECT section_name FROM Sections ORDER BY section_name DESC
Who was the head coach in season 2?
CREATE TABLE table_14015965_1 (head_coach VARCHAR, previous_season VARCHAR)
SELECT head_coach FROM table_14015965_1 WHERE previous_season = "2"
What party is the member that has an electorate of Lindsay?
CREATE TABLE table_name_34 (party VARCHAR, electorate VARCHAR)
SELECT party FROM table_name_34 WHERE electorate = "lindsay"
Who was the builder of Gannet from the United Kingdom?
CREATE TABLE table_name_60 (builder VARCHAR, country VARCHAR, ship VARCHAR)
SELECT builder FROM table_name_60 WHERE country = "united kingdom" AND ship = "gannet"
What was the record of the game with a score of 12–6?
CREATE TABLE table_name_76 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_76 WHERE score = "12–6"
What is the decision when vancouver is at home and winnipeg is away?
CREATE TABLE table_name_44 (decision VARCHAR, home VARCHAR, visitor VARCHAR)
SELECT decision FROM table_name_44 WHERE home = "vancouver" AND visitor = "winnipeg"
What is the rank when there is 0 gold, the total is more than 1, and silver is more than 0?
CREATE TABLE table_name_58 (rank INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR)
SELECT MAX(rank) FROM table_name_58 WHERE gold = 0 AND total > 1 AND silver > 0
Which Tournament has A in 1987?
CREATE TABLE table_name_11 (tournament VARCHAR)
SELECT tournament FROM table_name_11 WHERE 1987 = "a"
Name the 2012 when 2011 is qf
CREATE TABLE table_name_97 (Id VARCHAR)
SELECT 2012 FROM table_name_97 WHERE 2011 = "qf"
Who were the running candidates when Samuel Riker was the incumbent?
CREATE TABLE table_2668374_10 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_2668374_10 WHERE incumbent = "Samuel Riker"
What is the 2007 value with NMS in 2011?
CREATE TABLE table_name_87 (Id VARCHAR)
SELECT 2007 FROM table_name_87 WHERE 2011 = "nms"
What is the score for the game that Colin Fleming Scott Lipsky played in?
CREATE TABLE table_name_5 (score VARCHAR, opponents VARCHAR)
SELECT score FROM table_name_5 WHERE opponents = "colin fleming scott lipsky"
What's the engine capacity when the mpg-UK urban is less than 12.2, the mpg-UK extra urban is less than 18.8 and the mpg-US turban is less than 7.2?
CREATE TABLE table_name_53 (engine_capacity INTEGER, mpg_us_urban VARCHAR, mpg_uk_urban__cold_ VARCHAR, mpg_uk_extra_urban VARCHAR)
SELECT SUM(engine_capacity) FROM table_name_53 WHERE mpg_uk_urban__cold_ < 12.2 AND mpg_uk_extra_urban < 18.8 AND mpg_us_urban < 7.2
Rank 14 with a total greater than 1 has what as the average bronze?
CREATE TABLE table_name_41 (bronze INTEGER, rank VARCHAR, total VARCHAR)
SELECT AVG(bronze) FROM table_name_41 WHERE rank = 14 AND total > 1
How many Deaths have a Fate of damaged, and a Tonnage (GRT) smaller than 4,917?
CREATE TABLE table_name_1 (deaths VARCHAR, fate VARCHAR, tonnage___grt__ VARCHAR)
SELECT COUNT(deaths) FROM table_name_1 WHERE fate = "damaged" AND tonnage___grt__ < 4 OFFSET 917
What was the term of Bruce Biers Kendall whose hometown is Anchorage?
CREATE TABLE table_name_6 (term VARCHAR, hometown VARCHAR, name VARCHAR)
SELECT term FROM table_name_6 WHERE hometown = "anchorage" AND name = "bruce biers kendall"
What is the President with a Location of justus lipsius building, brussels, and a Type with scheduled, and a Year larger than 2011, and a Date with 18–19 october?
CREATE TABLE table_name_22 (president VARCHAR, date VARCHAR, year VARCHAR, location VARCHAR, type VARCHAR)
SELECT president FROM table_name_22 WHERE location = "justus lipsius building, brussels" AND type = "scheduled" AND year > 2011 AND date = "18–19 october"
Which Draft has a Round of 1, a Nationality of canada, a Pick of 1, and a Player of vincent lecavalier?
CREATE TABLE table_name_56 (draft INTEGER, player VARCHAR, pick VARCHAR, round VARCHAR, nationality VARCHAR)
SELECT AVG(draft) FROM table_name_56 WHERE round = "1" AND nationality = "canada" AND pick = "1" AND player = "vincent lecavalier"
What inverse subjunctive has — as the imperative and a subjunctive of se måchadn?
CREATE TABLE table_name_9 (inverse_subjunctive VARCHAR, imperative VARCHAR, subjunctive VARCHAR)
SELECT inverse_subjunctive FROM table_name_9 WHERE imperative = "—" AND subjunctive = "se måchadn"
Find the number of universities that have over a 20000 enrollment size for each affiliation type.
CREATE TABLE university (affiliation VARCHAR, enrollment INTEGER)
SELECT COUNT(*), affiliation FROM university WHERE enrollment > 20000 GROUP BY affiliation
Which Finalist has a Winner and score of boris becker 7–6(3), 6–3, 3–6, 6–3?
CREATE TABLE table_name_86 (finalist VARCHAR, winner_and_score VARCHAR)
SELECT finalist FROM table_name_86 WHERE winner_and_score = "boris becker 7–6(3), 6–3, 3–6, 6–3"
What date was the Tigullio Circuit?
CREATE TABLE table_name_24 (date VARCHAR, circuit VARCHAR)
SELECT date FROM table_name_24 WHERE circuit = "tigullio"
What is the production code directed by Matt Shakman?
CREATE TABLE table_23799417_1 (production_code VARCHAR, directed_by VARCHAR)
SELECT production_code FROM table_23799417_1 WHERE directed_by = "Matt Shakman"
Where did Test Mission: War Heads and Missile Payload launch when there was a partial failure?
CREATE TABLE table_11869952_3 (launch_site VARCHAR, mission VARCHAR, results VARCHAR)
SELECT launch_site FROM table_11869952_3 WHERE mission = "Test mission: war heads and Missile payload" AND results = "Partial Failure"
Which date has a region of united kingdom?
CREATE TABLE table_name_54 (date VARCHAR, region VARCHAR)
SELECT date FROM table_name_54 WHERE region = "united kingdom"
What was the smallest attendance at a game when the record was 7-15?
CREATE TABLE table_name_7 (attendance INTEGER, record VARCHAR)
SELECT MIN(attendance) FROM table_name_7 WHERE record = "7-15"
WHAT IS THE RESULT WITH FILM LAKE OF TEARS?
CREATE TABLE table_name_28 (result VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT result FROM table_name_28 WHERE film_title_used_in_nomination = "lake of tears"
How many gold medals were won by the nation that won over 4 silver medals, over 14 bronze, and 97 medals total?
CREATE TABLE table_name_88 (gold VARCHAR, total VARCHAR, silver VARCHAR, bronze VARCHAR)
SELECT COUNT(gold) FROM table_name_88 WHERE silver > 4 AND bronze > 14 AND total = 97
In what Weeks is the game against the Tampa Bay Buccaneers with less than 44,506 in Attendance?
CREATE TABLE table_name_10 (week INTEGER, opponent VARCHAR, attendance VARCHAR)
SELECT SUM(week) FROM table_name_10 WHERE opponent = "tampa bay buccaneers" AND attendance < 44 OFFSET 506
Name the district for hugh glasgow
CREATE TABLE table_2668352_14 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_2668352_14 WHERE incumbent = "Hugh Glasgow"
What day was the visitor Chicago Black Hawks and the record 0-2?
CREATE TABLE table_name_16 (date VARCHAR, visitor VARCHAR, record VARCHAR)
SELECT date FROM table_name_16 WHERE visitor = "chicago black hawks" AND record = "0-2"
Show name of all students who have some friends and also are liked by someone else.
CREATE TABLE Highschooler (name VARCHAR, id VARCHAR); CREATE TABLE Likes (student_id VARCHAR, liked_id VARCHAR); CREATE TABLE Friend (student_id VARCHAR, liked_id VARCHAR)
SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id INTERSECT SELECT T2.name FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.liked_id = T2.id
What was the outcome on May 18, 2008?
CREATE TABLE table_name_55 (outcome VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_55 WHERE date = "may 18, 2008"
Which example has rx as the formula?
CREATE TABLE table_name_36 (example VARCHAR, formula VARCHAR)
SELECT example FROM table_name_36 WHERE formula = "rx"
In what year did the team from the Western school join the conference?
CREATE TABLE table_name_10 (year_joined VARCHAR, school VARCHAR)
SELECT year_joined FROM table_name_10 WHERE school = "western"
what is the total number of reasons for change where the date the successor was seated is june 8, 1876?
CREATE TABLE table_2192067_4 (reason_for_change VARCHAR, date_successor_seated VARCHAR)
SELECT COUNT(reason_for_change) FROM table_2192067_4 WHERE date_successor_seated = "June 8, 1876"
What is the crowd size of the game when Fitzroy is the away team?
CREATE TABLE table_name_96 (crowd VARCHAR, away_team VARCHAR)
SELECT COUNT(crowd) FROM table_name_96 WHERE away_team = "fitzroy"
Which player was defensive back after round 3?
CREATE TABLE table_name_87 (player VARCHAR, position VARCHAR, round VARCHAR)
SELECT player FROM table_name_87 WHERE position = "defensive back" AND round > 3
When columbia, south carolina is the hometown what is the lowest age?
CREATE TABLE table_1859855_2 (age INTEGER, hometown VARCHAR)
SELECT MIN(age) FROM table_1859855_2 WHERE hometown = "Columbia, South Carolina"
What is the issue price of a voyageur before 2006?
CREATE TABLE table_name_89 (issue_price VARCHAR, year VARCHAR, theme VARCHAR)
SELECT issue_price FROM table_name_89 WHERE year < 2006 AND theme = "voyageur"