question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Show all region code and region name sorted by the codes.
CREATE TABLE region (region_code VARCHAR, region_name VARCHAR)
SELECT region_code, region_name FROM region ORDER BY region_code
Which language do 706 females speak?
CREATE TABLE table_name_10 (females VARCHAR, number VARCHAR)
SELECT females FROM table_name_10 WHERE number = "706"
Name the country that has mänttä
CREATE TABLE table_name_2 (country VARCHAR, place VARCHAR)
SELECT country FROM table_name_2 WHERE place = "mänttä"
When private/ nonsectarian is the the affiliation what is the team nickname?
CREATE TABLE table_28211213_2 (team_nickname VARCHAR, affiliation VARCHAR)
SELECT team_nickname FROM table_28211213_2 WHERE affiliation = "Private/ Nonsectarian"
Which Label has a Country of united kingdom, a Date of 22 september 2008, and a Catalogue number(s) of eredv711?
CREATE TABLE table_name_61 (label VARCHAR, catalogue_number_s_ VARCHAR, country VARCHAR, date VARCHAR)
SELECT label FROM table_name_61 WHERE country = "united kingdom" AND date = "22 september 2008" AND catalogue_number_s_ = "eredv711"
How many overs occurred at Waca Ground against Queensland?
CREATE TABLE table_name_31 (overs VARCHAR, ground VARCHAR, opponent VARCHAR)
SELECT overs FROM table_name_31 WHERE ground = "waca ground" AND opponent = "queensland"
Name the casualities for nation of incident of hostile on 2006-06-26
CREATE TABLE table_name_43 (casualties VARCHAR, nature_of_incident VARCHAR, date VARCHAR)
SELECT casualties FROM table_name_43 WHERE nature_of_incident = "hostile" AND date = "2006-06-26"
What is the Series of the Filmography with a Production Number of M-4-15?
CREATE TABLE table_name_37 (series VARCHAR, production_number VARCHAR)
SELECT series FROM table_name_37 WHERE production_number = "m-4-15"
What is the largest mass for Tycho Crater?
CREATE TABLE table_name_59 (mass__kg_ INTEGER, landing_zone VARCHAR)
SELECT MAX(mass__kg_) FROM table_name_59 WHERE landing_zone = "tycho crater"
What is Outcome, when Score is 1-6, 3-6?
CREATE TABLE table_name_5 (outcome VARCHAR, score VARCHAR)
SELECT outcome FROM table_name_5 WHERE score = "1-6, 3-6"
What country had a 100% cut?
CREATE TABLE table_21690339_1 (country VARCHAR, _percentage_cut VARCHAR)
SELECT country FROM table_21690339_1 WHERE _percentage_cut = "100%"
Which party is tobias a. plants the incumbent?
CREATE TABLE table_name_11 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_name_11 WHERE incumbent = "tobias a. plants"
Find the founded year of the newest non public school.
CREATE TABLE university (founded VARCHAR, affiliation VARCHAR)
SELECT founded FROM university WHERE affiliation <> 'Public' ORDER BY founded DESC LIMIT 1
What was Kilgore's (R) percentage when Potts (I) polled at 1%?
CREATE TABLE table_name_95 (kilgore__r_ VARCHAR, potts__i_ VARCHAR)
SELECT kilgore__r_ FROM table_name_95 WHERE potts__i_ = "1%"
What is the nationality of the player from Duke?
CREATE TABLE table_name_18 (nationality VARCHAR, school_club_team VARCHAR)
SELECT nationality FROM table_name_18 WHERE school_club_team = "duke"
What's the highest Ends Lost with a shot % greater than 77, 11 blank ends, 7 stolen ends, and more than 44 ends one?
CREATE TABLE table_name_2 (ends_lost INTEGER, ends_won VARCHAR, stolen_ends VARCHAR, shot_pct VARCHAR, blank_ends VARCHAR)
SELECT MAX(ends_lost) FROM table_name_2 WHERE shot_pct > 77 AND blank_ends = 11 AND stolen_ends = 7 AND ends_won > 44
For which singers was Alangudi Somu the lyricist?
CREATE TABLE table_10848177_1 (singers VARCHAR, lyricist VARCHAR)
SELECT singers FROM table_10848177_1 WHERE lyricist = "Alangudi Somu"
What is the total of Mark O'meara?
CREATE TABLE table_name_88 (total INTEGER, player VARCHAR)
SELECT MIN(total) FROM table_name_88 WHERE player = "mark o'meara"
what is the grid when the rider is mika kallio?
CREATE TABLE table_name_64 (grid INTEGER, rider VARCHAR)
SELECT MAX(grid) FROM table_name_64 WHERE rider = "mika kallio"
What are the locations where the year of election is 1980?
CREATE TABLE table_1341568_24 (district VARCHAR, elected VARCHAR)
SELECT district FROM table_1341568_24 WHERE elected = 1980
Game time of 2nd quarter (0:00), and a Date of november 8, 1971 has how many average yards?
CREATE TABLE table_name_2 (yards INTEGER, game_time VARCHAR, date VARCHAR)
SELECT AVG(yards) FROM table_name_2 WHERE game_time = "2nd quarter (0:00)" AND date = "november 8, 1971"
What are the average points that have december 27?
CREATE TABLE table_name_36 (points INTEGER, december VARCHAR)
SELECT AVG(points) FROM table_name_36 WHERE december = 27
What county has a school with less than 301 students and plays IHSAA class A football?
CREATE TABLE table_name_81 (county VARCHAR, ihsaa_football_class VARCHAR, size VARCHAR)
SELECT county FROM table_name_81 WHERE ihsaa_football_class = "a" AND size < 301
On what date was the race course from Rome to Naples?
CREATE TABLE table_name_31 (date VARCHAR, course VARCHAR)
SELECT date FROM table_name_31 WHERE course = "rome to naples"
Name the least points with chassis of kurtis kraft 3000 and year before 1951
CREATE TABLE table_name_92 (points INTEGER, chassis VARCHAR, year VARCHAR)
SELECT MIN(points) FROM table_name_92 WHERE chassis = "kurtis kraft 3000" AND year < 1951
What is the total area for a code less than 1862 and a density (per km 2 land) of 21.6?
CREATE TABLE table_name_53 (total_area VARCHAR, code VARCHAR, density__per_km_2_land_ VARCHAR)
SELECT total_area FROM table_name_53 WHERE code < 1862 AND density__per_km_2_land_ = 21.6
What was the latest year that resulted in won?
CREATE TABLE table_name_17 (year INTEGER, result VARCHAR)
SELECT MAX(year) FROM table_name_17 WHERE result = "won"
Name the total number of date for l 85–86 (ot)
CREATE TABLE table_22654073_6 (date VARCHAR, score VARCHAR)
SELECT COUNT(date) FROM table_22654073_6 WHERE score = "L 85–86 (OT)"
In what district was the incumbent Edwin Gray?
CREATE TABLE table_2668401_17 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_2668401_17 WHERE incumbent = "Edwin Gray"
Name the circuit for gt3 alex mortimer bradley ellis
CREATE TABLE table_14574130_3 (circuit VARCHAR, gt3_winner VARCHAR)
SELECT circuit FROM table_14574130_3 WHERE gt3_winner = "Alex Mortimer Bradley Ellis"
What is the mean number of goals against when there were fewer than 8 games played?
CREATE TABLE table_name_39 (goals_against INTEGER, games_played INTEGER)
SELECT AVG(goals_against) FROM table_name_39 WHERE games_played < 8
Who was the winner of seat no 4 for the election on January 25, 1967
CREATE TABLE table_2231241_1 (seat_no_4 VARCHAR, election VARCHAR)
SELECT seat_no_4 FROM table_2231241_1 WHERE election = "January 25, 1967"
Who was the home team for the match against Arsenal?
CREATE TABLE table_name_2 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_2 WHERE away_team = "arsenal"
What drama role does she play in 1973?
CREATE TABLE table_name_57 (role VARCHAR, genre VARCHAR, year VARCHAR)
SELECT role FROM table_name_57 WHERE genre = "drama" AND year = 1973
what is the highest podiums when the stage wins is 91 and the points is less than 140?
CREATE TABLE table_name_60 (podiums INTEGER, stage_wins VARCHAR, points VARCHAR)
SELECT MAX(podiums) FROM table_name_60 WHERE stage_wins = 91 AND points < 140
What are the highest matches that have points less than 88, and goals less than 0?
CREATE TABLE table_name_55 (matches INTEGER, points VARCHAR, goals VARCHAR)
SELECT MAX(matches) FROM table_name_55 WHERE points < 88 AND goals < 0
What is the value for the League Cup when the FA Cup value is 0 13 0 (49)?
CREATE TABLE table_name_20 (league VARCHAR, fa_cup VARCHAR)
SELECT league AS Cup FROM table_name_20 WHERE fa_cup = "0 13 0 (49)"
How many products have the title "Jak 3"?
CREATE TABLE table_10875694_11 (product_no VARCHAR, title VARCHAR)
SELECT COUNT(product_no) FROM table_10875694_11 WHERE title = "Jak 3"
How many rankings are associated with giuseppe meazza holding over 3 titles?
CREATE TABLE table_name_35 (rank VARCHAR, player VARCHAR, titles VARCHAR)
SELECT COUNT(rank) FROM table_name_35 WHERE player = "giuseppe meazza" AND titles > 3
What January 15-16 is is that corresponds to November 3, 2013?
CREATE TABLE table_25284864_3 (january_15_16 VARCHAR, november_3 VARCHAR)
SELECT january_15_16 FROM table_25284864_3 WHERE november_3 = "november_3, 2013"
What is the pick number for position of D from the University of Maine (NCAA)?
CREATE TABLE table_name_50 (pick__number VARCHAR, position VARCHAR, college_junior_club_team VARCHAR)
SELECT pick__number FROM table_name_50 WHERE position = "d" AND college_junior_club_team = "university of maine (ncaa)"
what is the position in round 3?
CREATE TABLE table_name_9 (position VARCHAR, round VARCHAR)
SELECT position FROM table_name_9 WHERE round = 3
When there are 9.28 million viewers what is the share (18-49)?
CREATE TABLE table_28980706_4 (share__18_49_ VARCHAR, viewers__millions_ VARCHAR)
SELECT share__18_49_ FROM table_28980706_4 WHERE viewers__millions_ = "9.28"
What was the record on April 16?
CREATE TABLE table_name_41 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_41 WHERE date = "april 16"
Which Name has an Intra-molecular structure of no, and a Link of webserver, and a Comparative of no?
CREATE TABLE table_name_63 (name VARCHAR, comparative VARCHAR, intra_molecular_structure VARCHAR, link VARCHAR)
SELECT name FROM table_name_63 WHERE intra_molecular_structure = "no" AND link = "webserver" AND comparative = "no"
How many years had budgets of $39 million?
CREATE TABLE table_name_42 (year INTEGER, budget VARCHAR)
SELECT SUM(year) FROM table_name_42 WHERE budget = "$39 million"
Which country has is Len Mattiace in T10 place?
CREATE TABLE table_name_54 (country VARCHAR, place VARCHAR, player VARCHAR)
SELECT country FROM table_name_54 WHERE place = "t10" AND player = "len mattiace"
Who is the team captain of Regenboogstadion?
CREATE TABLE table_name_42 (team_captain VARCHAR, stadium VARCHAR)
SELECT team_captain FROM table_name_42 WHERE stadium = "regenboogstadion"
What Tournament's Score was 6–2, 4–6, 6–4?
CREATE TABLE table_name_14 (tournament VARCHAR, score VARCHAR)
SELECT tournament FROM table_name_14 WHERE score = "6–2, 4–6, 6–4"
What date has a catalogue of asw 40362?
CREATE TABLE table_name_90 (date VARCHAR, catalogue VARCHAR)
SELECT date FROM table_name_90 WHERE catalogue = "asw 40362"
What is the result of the match on 30 July 2004?
CREATE TABLE table_name_78 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_78 WHERE date = "30 july 2004"
What is the average top-25 value for majors that have more than 0 wins?
CREATE TABLE table_name_27 (top_25 INTEGER, wins INTEGER)
SELECT AVG(top_25) FROM table_name_27 WHERE wins > 0
What is the highest position of club lietava-2 jonava, which has more than 12 points and more than 7 wins?
CREATE TABLE table_name_75 (position INTEGER, wins VARCHAR, points VARCHAR, club VARCHAR)
SELECT MAX(position) FROM table_name_75 WHERE points > 12 AND club = "lietava-2 jonava" AND wins > 7
Show all director names who have a movie in the year 1999 or 2000.
CREATE TABLE movie (director VARCHAR, YEAR VARCHAR)
SELECT director FROM movie WHERE YEAR = 1999 OR YEAR = 2000
What is the implementation when the netflow version is v5, v8, v9, ipfix?
CREATE TABLE table_1206114_2 (implementation VARCHAR, netflow_version VARCHAR)
SELECT implementation FROM table_1206114_2 WHERE netflow_version = "v5, v8, v9, IPFIX"
What is the lowest rank from Great Britain with a time of 2:10.33?
CREATE TABLE table_name_40 (rank INTEGER, nationality VARCHAR, time VARCHAR)
SELECT MIN(rank) FROM table_name_40 WHERE nationality = "great britain" AND time = "2:10.33"
Who are the Opponents in the final prior to 1998 in the Bucharest, Romania Tournament?
CREATE TABLE table_name_65 (opponents_in_the_final VARCHAR, date VARCHAR, tournament VARCHAR)
SELECT opponents_in_the_final FROM table_name_65 WHERE date < 1998 AND tournament = "bucharest, romania"
When was Fitzroy the home team?
CREATE TABLE table_name_94 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_94 WHERE home_team = "fitzroy"
Which Score has a Country of united states, and a Player of raymond floyd?
CREATE TABLE table_name_33 (score VARCHAR, country VARCHAR, player VARCHAR)
SELECT score FROM table_name_33 WHERE country = "united states" AND player = "raymond floyd"
On what Date was the match with partner Kira Nagy?
CREATE TABLE table_name_77 (date VARCHAR, partner VARCHAR)
SELECT date FROM table_name_77 WHERE partner = "kira nagy"
Show the names of people, and dates and venues of debates they are on the affirmative side.
CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE debate (Date VARCHAR, Venue VARCHAR, Debate_ID VARCHAR); CREATE TABLE debate_people (Debate_ID VARCHAR, Affirmative VARCHAR)
SELECT T3.Name, T2.Date, T2.Venue FROM debate_people AS T1 JOIN debate AS T2 ON T1.Debate_ID = T2.Debate_ID JOIN people AS T3 ON T1.Affirmative = T3.People_ID
What team played in game 39?
CREATE TABLE table_name_79 (team VARCHAR, game VARCHAR)
SELECT team FROM table_name_79 WHERE game = 39
When did the woman who died at 31 first contact Hitlers?
CREATE TABLE table_name_60 (first_contact_with_hitler VARCHAR, age_at_death VARCHAR)
SELECT first_contact_with_hitler FROM table_name_60 WHERE age_at_death = "31"
Name the engine with rounds of 11 and teams of 25
CREATE TABLE table_name_29 (engine VARCHAR, rounds VARCHAR, teams VARCHAR)
SELECT engine FROM table_name_29 WHERE rounds = "11" AND teams = "25"
If the reader is Syal, Meera Meera Syal, what was the release date?
CREATE TABLE table_20174050_7 (release_date VARCHAR, reader VARCHAR)
SELECT release_date FROM table_20174050_7 WHERE reader = "Syal, Meera Meera Syal"
What is the total for the state of new york and a swimsuit less than 9.394?
CREATE TABLE table_name_97 (interview INTEGER, state VARCHAR, swimsuit VARCHAR)
SELECT SUM(interview) FROM table_name_97 WHERE state = "new york" AND swimsuit < 9.394
What is the average rank that has cia world factbook as the source and a year prior to 2005?
CREATE TABLE table_name_29 (rank INTEGER, source VARCHAR, year VARCHAR)
SELECT AVG(rank) FROM table_name_29 WHERE source = "cia world factbook" AND year < 2005
What is the average attendance at week earlier than 6 on October 14, 2001?
CREATE TABLE table_name_22 (attendance INTEGER, week VARCHAR, date VARCHAR)
SELECT AVG(attendance) FROM table_name_22 WHERE week < 6 AND date = "october 14, 2001"
Who was in sixth place in series 7?
CREATE TABLE table_name_34 (sixth_place VARCHAR, series VARCHAR)
SELECT sixth_place FROM table_name_34 WHERE series = 7
Kecamatan Bogor Timur has more than 6 villages, what is the area in km²?
CREATE TABLE table_name_68 (area_in_km² INTEGER, original_name VARCHAR, number_of_settlements_and_villages VARCHAR)
SELECT SUM(area_in_km²) FROM table_name_68 WHERE original_name = "kecamatan bogor timur" AND number_of_settlements_and_villages > 6
What country does jocelyne bourassa play for?
CREATE TABLE table_name_73 (country VARCHAR, champion VARCHAR)
SELECT country FROM table_name_73 WHERE champion = "jocelyne bourassa"
What is the result when the score is 4-0?
CREATE TABLE table_name_82 (result VARCHAR, score VARCHAR)
SELECT result FROM table_name_82 WHERE score = "4-0"
What was the score when the tie no was 12?
CREATE TABLE table_name_72 (score VARCHAR, tie_no VARCHAR)
SELECT score FROM table_name_72 WHERE tie_no = "12"
What is the title of the 8th doctor published in January 2003?
CREATE TABLE table_name_74 (title VARCHAR, doctor VARCHAR, published VARCHAR)
SELECT title FROM table_name_74 WHERE doctor = "8th" AND published = "january 2003"
how many times is the constituency edinburgh northern and leith?
CREATE TABLE table_name_20 (swing_to_gain VARCHAR, constituency VARCHAR)
SELECT COUNT(swing_to_gain) FROM table_name_20 WHERE constituency = "edinburgh northern and leith"
What place did Târlea come in at the European Indoor Championships?
CREATE TABLE table_name_56 (position VARCHAR, competition VARCHAR)
SELECT position FROM table_name_56 WHERE competition = "european indoor championships"
Which formula had a driver of John Moore-Brabazon?
CREATE TABLE table_name_64 (formula VARCHAR, driver VARCHAR)
SELECT formula FROM table_name_64 WHERE driver = "john moore-brabazon"
Which engineers have never visited to maintain the assets? List the engineer first name and last name.
CREATE TABLE Engineer_Visits (first_name VARCHAR, last_name VARCHAR, engineer_id VARCHAR); CREATE TABLE Maintenance_Engineers (first_name VARCHAR, last_name VARCHAR, engineer_id VARCHAR)
SELECT first_name, last_name FROM Maintenance_Engineers WHERE NOT engineer_id IN (SELECT engineer_id FROM Engineer_Visits)
Which away team has a tie number of 3?
CREATE TABLE table_name_28 (away_team VARCHAR, tie_no VARCHAR)
SELECT away_team FROM table_name_28 WHERE tie_no = "3"
Show the hometowns shared by people older than 23 and younger than 20.
CREATE TABLE people (Hometown VARCHAR, Age INTEGER)
SELECT Hometown FROM people WHERE Age > 23 INTERSECT SELECT Hometown FROM people WHERE Age < 20
What is the HDTV status of the r-light television service?
CREATE TABLE table_name_12 (hdtv VARCHAR, television_service VARCHAR)
SELECT hdtv FROM table_name_12 WHERE television_service = "r-light"
What was the to par when the score was 69-69=138?
CREATE TABLE table_name_35 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_35 WHERE score = 69 - 69 = 138
Which To par has a Score of 70-73-80-68=291?
CREATE TABLE table_name_97 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_97 WHERE score = 70 - 73 - 80 - 68 = 291
What position did lap 296 come in?
CREATE TABLE table_name_41 (pos VARCHAR, laps VARCHAR)
SELECT pos FROM table_name_41 WHERE laps = 296
What is the Time of the Athlete with a Rank of 6?
CREATE TABLE table_name_55 (time VARCHAR, rank VARCHAR)
SELECT time FROM table_name_55 WHERE rank = 6
What largest against has the opposing team of fiji?
CREATE TABLE table_name_44 (against INTEGER, opposing_team VARCHAR)
SELECT MAX(against) FROM table_name_44 WHERE opposing_team = "fiji"
What was the year of previous participation for the school in the Kagoshima prefecture?
CREATE TABLE table_2518850_4 (year_of_previous_participation VARCHAR, prefecture VARCHAR)
SELECT year_of_previous_participation FROM table_2518850_4 WHERE prefecture = "Kagoshima"
In season 2007–08 who is the runner-up?
CREATE TABLE table_25058269_1 (runner_up VARCHAR, season VARCHAR)
SELECT runner_up FROM table_25058269_1 WHERE season = "2007–08"
What is the average roll for Fairfield school?
CREATE TABLE table_name_18 (roll INTEGER, name VARCHAR)
SELECT AVG(roll) FROM table_name_18 WHERE name = "fairfield school"
What are the album titles for albums containing both 'Reggae' and 'Rock' genre tracks?
CREATE TABLE Genre (GenreID VARCHAR, Name VARCHAR); CREATE TABLE Track (AlbumId VARCHAR, GenreID VARCHAR); CREATE TABLE Album (Title VARCHAR, AlbumId VARCHAR)
SELECT T1.Title FROM Album AS T1 JOIN Track AS T2 ON T1.AlbumId = T2.AlbumId JOIN Genre AS T3 ON T2.GenreID = T3.GenreID WHERE T3.Name = 'Reggae' INTERSECT SELECT T1.Title FROM Album AS T1 JOIN Track AS T2 ON T1.AlbumId = T2.AlbumId JOIN Genre AS T3 ON T2.GenreID = T3.GenreID WHERE T3.Name = 'Rock'
Which Halang has a Rera of ʒo²?
CREATE TABLE table_name_6 (halang VARCHAR, rera VARCHAR)
SELECT halang FROM table_name_6 WHERE rera = "ʒo²"
What is the Intermediate Sprints Classification Red Jersey that has a Green Jersey of Murilo Antonio Fischer, and Jose Joaquin Rojas Gil?
CREATE TABLE table_name_34 (intermediate_sprints_classification_red_jersey VARCHAR, mountains_classification_green_jersey VARCHAR, points_classification_navy_blue_jersey VARCHAR)
SELECT intermediate_sprints_classification_red_jersey FROM table_name_34 WHERE mountains_classification_green_jersey = "murilo antonio fischer" AND points_classification_navy_blue_jersey = "jose joaquin rojas gil"
What is the presentation of credentials date of raúl h. castro, who has a title of ambassador extraordinary and plenipotentiary?
CREATE TABLE table_name_7 (presentation_of_credentials VARCHAR, title VARCHAR, representative VARCHAR)
SELECT presentation_of_credentials FROM table_name_7 WHERE title = "ambassador extraordinary and plenipotentiary" AND representative = "raúl h. castro"
Which MLS Team's pick number was 31?
CREATE TABLE table_name_69 (mls_team VARCHAR, pick__number VARCHAR)
SELECT mls_team FROM table_name_69 WHERE pick__number = 31
What year was the 190 South Lasalle Street?
CREATE TABLE table_name_9 (year INTEGER, name VARCHAR)
SELECT MAX(year) FROM table_name_9 WHERE name = "190 south lasalle street"
How many population values are listed for the community with an area of 10.25 sq.km.?
CREATE TABLE table_171361_1 (population VARCHAR, area_km_2 VARCHAR)
SELECT COUNT(population) FROM table_171361_1 WHERE area_km_2 = "10.25"
What were the highest laps when the grid was larger than 19 and the time/retired was fuel?
CREATE TABLE table_name_52 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)
SELECT MAX(laps) FROM table_name_52 WHERE grid > 19 AND time_retired = "fuel"
What's the name of train number 15647/48?
CREATE TABLE table_12095519_1 (train_name VARCHAR, train_no VARCHAR)
SELECT train_name FROM table_12095519_1 WHERE train_no = "15647/48"
Which Height (cm) has a Position of d, and a Name of jeff hymanson?
CREATE TABLE table_name_12 (height__cm_ INTEGER, position VARCHAR, name VARCHAR)
SELECT MIN(height__cm_) FROM table_name_12 WHERE position = "d" AND name = "jeff hymanson"
What is the Console when Space Invaders is the Arcade?
CREATE TABLE table_name_59 (console VARCHAR, arcade VARCHAR)
SELECT console FROM table_name_59 WHERE arcade = "space invaders"