answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT to_par FROM table_name_72 WHERE player = "bill collins"
What is the to par that has bill collins as the player?
CREATE TABLE table_name_72 (to_par VARCHAR, player VARCHAR)
SELECT Venue FROM debate ORDER BY Num_of_Audience
List the venues of debates in ascending order of the number of audience.
CREATE TABLE debate (Venue VARCHAR, Num_of_Audience VARCHAR)
SELECT years_in_orlando FROM table_name_75 WHERE player = "stanley roberts"
What years did Orlando have stanley roberts on the team?
CREATE TABLE table_name_75 (years_in_orlando VARCHAR, player VARCHAR)
SELECT elevator FROM table_name_25 WHERE elevated = "1378, september 18" AND order = "cardinal-priest" AND elector = "poncello orsini"
What's the Elevator that has Elevated: 1378, September 18, an Order of Cardinal-Priest, and an Elector of Poncello Orsini?
CREATE TABLE table_name_25 (elevator VARCHAR, elector VARCHAR, elevated VARCHAR, order VARCHAR)
SELECT COUNT(DISTINCT Continent) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = "Chinese"
What is the number of distinct continents where Chinese is spoken?
CREATE TABLE country (Code VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR, Language VARCHAR)
SELECT score FROM table_name_92 WHERE visitor = "st. louis"
What was the score when St. Louis was the visiting team?
CREATE TABLE table_name_92 (score VARCHAR, visitor VARCHAR)
SELECT born FROM table_name_63 WHERE current_club = "elfsborg"
Where was the player whose Current Club Elfsborg born?
CREATE TABLE table_name_63 (born VARCHAR, current_club VARCHAR)
SELECT venue FROM table_name_2 WHERE competition = "friendly match" AND date = "2 june 1992"
In what stadium was the friendly match on 2 June 1992 played in?
CREATE TABLE table_name_2 (venue VARCHAR, competition VARCHAR, date VARCHAR)
SELECT COUNT(california__san_francisco_) FROM table_16105186_2 WHERE vehicle = "Ford Focus Electric"
How many Ford Focus electric vehicle emission test scores were recorded in California?
CREATE TABLE table_16105186_2 (california__san_francisco_ VARCHAR, vehicle VARCHAR)
SELECT SUM(car__number) FROM table_name_62 WHERE laps < 369 AND make = "dodge" AND points > 49
What is the car number that has less than 369 laps for a Dodge with more than 49 points?
CREATE TABLE table_name_62 (car__number INTEGER, points VARCHAR, laps VARCHAR, make VARCHAR)
SELECT away_team FROM table_name_46 WHERE tie_no = "1"
WHAT IS THE AWAY TEAM WITH A TIE NUMBER 1?
CREATE TABLE table_name_46 (away_team VARCHAR, tie_no VARCHAR)
SELECT greek_national_account FROM table_27146868_1 WHERE 1997 = "6.1"
What is the greek national account when 1997 is 6.1?
CREATE TABLE table_27146868_1 (greek_national_account VARCHAR)
SELECT T2.balance, T3.balance, T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid ORDER BY T2.balance + T3.balance DESC
Find the name, checking balance and savings balance of all accounts in the bank sorted by their total checking and savings balance in descending order.
CREATE TABLE checking (balance VARCHAR, custid VARCHAR); CREATE TABLE savings (balance VARCHAR, custid VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR)
SELECT MAX(Serial) AS number FROM table_29002641_1 WHERE scrapped = "Feb 1994"
Name the most serial number for feb 1994
CREATE TABLE table_29002641_1 (Serial INTEGER, scrapped VARCHAR)
SELECT away_team AS score FROM table_name_47 WHERE venue = "princes park"
What is the away team score of the game that was played at princes park?
CREATE TABLE table_name_47 (away_team VARCHAR, venue VARCHAR)
SELECT title FROM table_name_90 WHERE notes = "8 episodes"
Which title had Notes of 8 episodes?
CREATE TABLE table_name_90 (title VARCHAR, notes VARCHAR)
SELECT SUM(erp_w) FROM table_name_56 WHERE class = "d" AND frequency_mhz = 98.7
Name the sum of ERP W for class of d and frequency mhz of 98.7
CREATE TABLE table_name_56 (erp_w INTEGER, class VARCHAR, frequency_mhz VARCHAR)
SELECT location FROM table_name_50 WHERE aircraft = "an-12b"
What is the location for the an-12b aircraft?
CREATE TABLE table_name_50 (location VARCHAR, aircraft VARCHAR)
SELECT round FROM table_name_4 WHERE pick > 231 AND draft > 1988 AND player = "adam cracknell"
Which Round was Player Adam Cracknell Picked after 231 in a Draft year after 1988?
CREATE TABLE table_name_4 (round VARCHAR, player VARCHAR, pick VARCHAR, draft VARCHAR)
SELECT fossil_record FROM table_name_33 WHERE discovery___publication_of_name = "1994/2003"
Tell me the fossil record for name of 1994/2003
CREATE TABLE table_name_33 (fossil_record VARCHAR, discovery___publication_of_name VARCHAR)
SELECT date FROM table_name_49 WHERE record = "21–14–3"
What was the date of the game when the Devils had a record of 21–14–3?
CREATE TABLE table_name_49 (date VARCHAR, record VARCHAR)
SELECT AVG(erp_w) FROM table_name_59 WHERE call_sign = "k248bj" AND frequency_mhz > 97.5
What is the ERP W for the station whose call sign is K248BJ and whose frequency MHz is higher than 97.5?
CREATE TABLE table_name_59 (erp_w INTEGER, call_sign VARCHAR, frequency_mhz VARCHAR)
SELECT scoring_average FROM table_18198579_6 WHERE best_finish = "T35"
Name the scoring average for best finsih being t35
CREATE TABLE table_18198579_6 (scoring_average VARCHAR, best_finish VARCHAR)
SELECT MIN(gold) FROM table_name_54 WHERE nation = "tanzania" AND bronze < 0
Name the fewest gold for tanzania with bronze less than 0
CREATE TABLE table_name_54 (gold INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT T2.City FROM CUSTOMER AS T1 JOIN EMPLOYEE AS T2 ON T1.SupportRepId = T2.EmployeeId WHERE T1.PostalCode = "70174"
What city does the employee who helps the customer with postal code 70174 live in?
CREATE TABLE EMPLOYEE (City VARCHAR, EmployeeId VARCHAR); CREATE TABLE CUSTOMER (SupportRepId VARCHAR, PostalCode VARCHAR)
SELECT class_aAA FROM table_name_50 WHERE school_year = "1989-90"
what AAA class has a school year of 1989-90?
CREATE TABLE table_name_50 (class_aAA VARCHAR, school_year VARCHAR)
SELECT round FROM table_name_92 WHERE date = "march 22"
What was the round number for March 22?
CREATE TABLE table_name_92 (round VARCHAR, date VARCHAR)
SELECT engine FROM table_name_30 WHERE tyres = "g" AND driver = "elio de angelis"
What engine has g tyres and is driven by elio de angelis?
CREATE TABLE table_name_30 (engine VARCHAR, tyres VARCHAR, driver VARCHAR)
SELECT COUNT(language_s_) FROM table_16254861_1 WHERE year__ceremony_ = "2001 (74th)"
How many languages for the 2001 (74th) awards?
CREATE TABLE table_16254861_1 (language_s_ VARCHAR, year__ceremony_ VARCHAR)
SELECT AVG(weight) FROM Player
What is the average weight of all players?
CREATE TABLE Player (weight INTEGER)
SELECT AVG(week) FROM table_name_41 WHERE date = "november 29, 1970" AND attendance < 31 OFFSET 427
Who was the opponent on the date of November 29, 1970 and the attendance was less than 31,427?
CREATE TABLE table_name_41 (week INTEGER, date VARCHAR, attendance VARCHAR)
SELECT COUNT(title) FROM table_15824796_3 WHERE original_air_date = "February 13, 1954"
How many episodes aired on february 13, 1954?
CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR)
SELECT COUNT(no) FROM table_23391714_1 WHERE chassis_engine = "Lola T92/00/ Buick"
How many drivers used lola t92/00/ buick for their chassis/engine?
CREATE TABLE table_23391714_1 (no VARCHAR, chassis_engine VARCHAR)
SELECT home FROM table_name_49 WHERE time = "18:00" AND geust = "servette fc (chl)"
What is Home, when Time is 18:00, and when Geust is Servette FC (CHL)?
CREATE TABLE table_name_49 (home VARCHAR, time VARCHAR, geust VARCHAR)
SELECT COUNT(race_winner) FROM table_15187794_1 WHERE no = 12
How many people won in No. 12
CREATE TABLE table_15187794_1 (race_winner VARCHAR, no VARCHAR)
SELECT AVG(rank) FROM table_name_43 WHERE studio_s_ = "dharma productions" AND year < 2013
Tell me the average rank for dharma productions before 2013
CREATE TABLE table_name_43 (rank INTEGER, studio_s_ VARCHAR, year VARCHAR)
SELECT SUM(to_par) FROM table_name_26 WHERE score = 71 - 74 - 71 - 72 = 288
Name the sum To par for score of 71-74-71-72=288
CREATE TABLE table_name_26 (to_par INTEGER, score VARCHAR)
SELECT MAX(floors) FROM table_name_96 WHERE location = "stockholm" AND rank = "15"
What is the highest amount of floors in Stockholm with a rank of 15?
CREATE TABLE table_name_96 (floors INTEGER, location VARCHAR, rank VARCHAR)
SELECT hadeda_ibis FROM table_20042805_2 WHERE ostrich = "Dark Chanting Goshawk"
What is the Hadeda Ibis when the Ostrich is Dark Chanting Goshawk?
CREATE TABLE table_20042805_2 (hadeda_ibis VARCHAR, ostrich VARCHAR)
SELECT attendance FROM table_name_47 WHERE result = "l 26–16"
Which Attendance has a Result of l 26–16?
CREATE TABLE table_name_47 (attendance VARCHAR, result VARCHAR)
SELECT score FROM table_name_99 WHERE home = "atlanta"
What was the score of the game when the home was Atlanta?
CREATE TABLE table_name_99 (score VARCHAR, home VARCHAR)
SELECT MIN(lost) FROM table_name_23 WHERE points_1 = "53" AND goals_for > 73
What is the fewest losses for teams with points of 53 and more than 73 goals for?
CREATE TABLE table_name_23 (lost INTEGER, points_1 VARCHAR, goals_for VARCHAR)
SELECT location_attendance FROM table_23248940_9 WHERE game = 55
Where was game number 55 played?
CREATE TABLE table_23248940_9 (location_attendance VARCHAR, game VARCHAR)
SELECT fcc_info FROM table_name_67 WHERE call_sign = "kpcc"
Name the FCC info for call sign of kpcc
CREATE TABLE table_name_67 (fcc_info VARCHAR, call_sign VARCHAR)
SELECT T1.student_details FROM students AS T1 JOIN student_course_registrations AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id ORDER BY COUNT(*) DESC LIMIT 1
What is detail of the student who registered the most number of courses?
CREATE TABLE students (student_details VARCHAR, student_id VARCHAR); CREATE TABLE student_course_registrations (student_id VARCHAR)
SELECT AVG(finish) FROM table_name_19 WHERE start < 11 AND engine = "honda" AND year < 2003
What was the finish associated with under 11 starts, a honda engine, before 2003?
CREATE TABLE table_name_19 (finish INTEGER, year VARCHAR, start VARCHAR, engine VARCHAR)
SELECT MIN(groundwater_discharge__million_m_3__) FROM table_26609958_1 WHERE hydrographic_basin = "Cabarita River"
When cabarita river is the hydrographic basin what is the lowest groundwater discharge (million m 3)?
CREATE TABLE table_26609958_1 (groundwater_discharge__million_m_3__ INTEGER, hydrographic_basin VARCHAR)
SELECT high_rebounds FROM table_17382360_9 WHERE score = "W 140-108"
Who had the high rebounds in the game with a final score of w 140-108?
CREATE TABLE table_17382360_9 (high_rebounds VARCHAR, score VARCHAR)
SELECT COUNT(DISTINCT complaint_type_code) FROM complaints
How many distinct complaint type codes are there in the database?
CREATE TABLE complaints (complaint_type_code VARCHAR)
SELECT SUM(a_score) FROM table_name_1 WHERE b_score > 9.15 AND position = "2nd"
What is the A score when the B score is more than 9.15 and the gymnast was in the 2nd position?
CREATE TABLE table_name_1 (a_score INTEGER, b_score VARCHAR, position VARCHAR)
SELECT thickness FROM table_name_35 WHERE year_of_issue < 1983
Which Thickness has a Year of Issue smaller than 1983?
CREATE TABLE table_name_35 (thickness VARCHAR, year_of_issue INTEGER)
SELECT name, email FROM user_profiles WHERE followers > 1000
Find the name and email of the users who have more than 1000 followers.
CREATE TABLE user_profiles (name VARCHAR, email VARCHAR, followers INTEGER)
SELECT T2.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid WHERE T1.name LIKE '%ee%'
What is the checking balance of the account whose owner’s name contains the substring ‘ee’?
CREATE TABLE checking (balance VARCHAR, custid VARCHAR); CREATE TABLE accounts (custid VARCHAR, name VARCHAR)
SELECT MAX(founded) FROM table_1183842_1 WHERE enrollment = 3584
If the enrollment is 3584, what's the largest founded?
CREATE TABLE table_1183842_1 (founded INTEGER, enrollment VARCHAR)
SELECT MAX(year) FROM table_name_50 WHERE program_title = "taboo" AND score < 96.125
What was the latest year placement for Taboo with a score smaller than 96.125?
CREATE TABLE table_name_50 (year INTEGER, program_title VARCHAR, score VARCHAR)
SELECT game FROM table_name_71 WHERE developer_s_ = "rockstar games"
What is the game of developer Rockstar Games?
CREATE TABLE table_name_71 (game VARCHAR, developer_s_ VARCHAR)
SELECT MIN(crowd) FROM table_name_96 WHERE venue = "princes park"
What is the smallest Crowd number for the Venue named Princes Park?
CREATE TABLE table_name_96 (crowd INTEGER, venue VARCHAR)
SELECT points_classification FROM table_name_54 WHERE stage = "15"
Which points classification was used in stage 15?
CREATE TABLE table_name_54 (points_classification VARCHAR, stage VARCHAR)
SELECT MAX(season) FROM table_name_63 WHERE super_g = 19
What is the highest Season, when Super G is 19?
CREATE TABLE table_name_63 (season INTEGER, super_g VARCHAR)
SELECT state FROM table_name_55 WHERE location = "39.1178°n 106.4454°w"
Which state is the location of 39.1178°n 106.4454°w in?
CREATE TABLE table_name_55 (state VARCHAR, location VARCHAR)
SELECT MAX(place) FROM table_name_70 WHERE time = "1:19.02.8"
What is the highest rank of a rider whose time was 1:19.02.8?
CREATE TABLE table_name_70 (place INTEGER, time VARCHAR)
SELECT length_weight_of_missile FROM table_21012786_2 WHERE diameter_of_torsion_spring = "38.4cm"
When the torsion spring diameter is 38.4cm what would be the length or weight of the missile
CREATE TABLE table_21012786_2 (length_weight_of_missile VARCHAR, diameter_of_torsion_spring VARCHAR)
SELECT venue FROM table_name_71 WHERE club = "spartak st. petersburg"
What Venue has Spartak St. Petersburg Club?
CREATE TABLE table_name_71 (venue VARCHAR, club VARCHAR)
SELECT place FROM table_name_71 WHERE to_par = "–1" AND score = 71 - 68 - 76 = 215
What is the Place that has a To standard of –1, and a Score of 71-68-76=215?
CREATE TABLE table_name_71 (place VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = "English" INTERSECT SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = "French"
What are the names of nations speak both English and French?
CREATE TABLE country (Name VARCHAR, Code VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR, Language VARCHAR)
SELECT name FROM table_name_33 WHERE pos = "centre"
What is the name when the position is centre?
CREATE TABLE table_name_33 (name VARCHAR, pos VARCHAR)
SELECT MIN(premiere) FROM table_name_7 WHERE average = 35 AND rank > 1
What is the premiere rating associated with an average of 35 ranked above 1?
CREATE TABLE table_name_7 (premiere INTEGER, average VARCHAR, rank VARCHAR)
SELECT directed_by FROM table_27218002_1 WHERE originalairdate = "12 July 2010"
Name who directed the air date of 12 july 2010
CREATE TABLE table_27218002_1 (directed_by VARCHAR, originalairdate VARCHAR)
SELECT AVG(wins) FROM table_name_55 WHERE team = "runcorn highfield" AND draws > 0
What is the average number of wins for Runcorn Highfield with more than 0 draws?
CREATE TABLE table_name_55 (wins INTEGER, team VARCHAR, draws VARCHAR)
SELECT country FROM table_name_66 WHERE place = "4"
What country has a place of 4?
CREATE TABLE table_name_66 (country VARCHAR, place VARCHAR)
SELECT no9 FROM table_name_85 WHERE no6 = "paulo"
Who is the no. 9 team that has a no. 6 player of paulo?
CREATE TABLE table_name_85 (no9 VARCHAR, no6 VARCHAR)
SELECT method FROM table_name_38 WHERE opponent = "alessio sakara"
Which method was used when Alessio Sakara was the opponent?
CREATE TABLE table_name_38 (method VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_15 WHERE motogp_winner = "casey stoner" AND grand_prix = "valencian grand prix"
Name the date for motogp winner of casey stoner and grand prix of valencian grand prix
CREATE TABLE table_name_15 (date VARCHAR, motogp_winner VARCHAR, grand_prix VARCHAR)
SELECT site FROM table_name_40 WHERE date = "march 17, 2006" AND winning_team = "iowa state"
Which Site has a Date of march 17, 2006 and an iowa state Winning team?
CREATE TABLE table_name_40 (site VARCHAR, date VARCHAR, winning_team VARCHAR)
SELECT score FROM table_name_14 WHERE attendance = 303
What is Score, when Attendance is "303"?
CREATE TABLE table_name_14 (score VARCHAR, attendance VARCHAR)
SELECT year_8_1st_quad FROM table_name_5 WHERE year_9_2nd_quad = "stm" AND year_9_1st_quad = "som" AND year_8_3rd_quad = "sta"
For the Crew with Year 9 2nd Quads of STM, Year 9 1st Quads of SOM, and a Year 8 3rd Quads of STA what was the Year 8 1st Quads?
CREATE TABLE table_name_5 (year_8_1st_quad VARCHAR, year_8_3rd_quad VARCHAR, year_9_2nd_quad VARCHAR, year_9_1st_quad VARCHAR)
SELECT MIN(rank) FROM table_name_20 WHERE name = "sun yang"
What is sun yang's lowest rank?
CREATE TABLE table_name_20 (rank INTEGER, name VARCHAR)
SELECT club FROM table_name_34 WHERE venue = "pepsi arena"
Venue of Pepsi arena involved what club?
CREATE TABLE table_name_34 (club VARCHAR, venue VARCHAR)
SELECT broadcast_date FROM table_name_46 WHERE viewers__in_millions_ = "7.0"
What is the broadcast date with 7.0 million viewers?
CREATE TABLE table_name_46 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR)
SELECT venue FROM table_name_88 WHERE date = "23 january 2009"
Name the venue for 23 january 2009
CREATE TABLE table_name_88 (venue VARCHAR, date VARCHAR)
SELECT report FROM table_name_5 WHERE race = "belgian grand prix"
What was the report in the Belgian Grand Prix?
CREATE TABLE table_name_5 (report VARCHAR, race VARCHAR)
SELECT SUM(year_left) FROM table_name_13 WHERE location = "howe"
How much Year Left has a Location of howe?
CREATE TABLE table_name_13 (year_left INTEGER, location VARCHAR)
SELECT AVG(laps) FROM table_name_15 WHERE time = "+39.476" AND grid > 11
Which Laps have a Time of +39.476, and a Grid larger than 11?
CREATE TABLE table_name_15 (laps INTEGER, time VARCHAR, grid VARCHAR)
SELECT english_title FROM table_name_30 WHERE director = "ang lee"
What is the English title with a Director named ang lee?
CREATE TABLE table_name_30 (english_title VARCHAR, director VARCHAR)
SELECT position FROM table_name_90 WHERE laps = 156
What is Position, when Laps is 156?
CREATE TABLE table_name_90 (position VARCHAR, laps VARCHAR)
SELECT fcc_info FROM table_name_51 WHERE call_sign = "k208eq"
Name the FCC info for call sign of k208eq
CREATE TABLE table_name_51 (fcc_info VARCHAR, call_sign VARCHAR)
SELECT airport FROM table_name_30 WHERE city = "new york"
What is the Airport for New York City?
CREATE TABLE table_name_30 (airport VARCHAR, city VARCHAR)
SELECT award FROM table_name_57 WHERE category = "outstanding revival of a musical"
Which Award is the winner for Outstanding Revival of a Musical given?
CREATE TABLE table_name_57 (award VARCHAR, category VARCHAR)
SELECT COUNT(wins) FROM table_name_90 WHERE position > 6 AND conceded < 19
What is the number of wins when position was larger than 6, and conceded was smaller than 19?
CREATE TABLE table_name_90 (wins VARCHAR, position VARCHAR, conceded VARCHAR)
SELECT MAX(season) FROM table_2140071_5
What is the last season?
CREATE TABLE table_2140071_5 (season INTEGER)
SELECT result FROM table_name_26 WHERE party = "republican" AND first_elected < 1856
Which Result has a Party of republican, and a First elected smaller than 1856?
CREATE TABLE table_name_26 (result VARCHAR, party VARCHAR, first_elected VARCHAR)
SELECT status FROM table_name_24 WHERE newspaper_magazine = "al-thawra"
What is Status, when Newspaper/Magazine is Al-Thawra?
CREATE TABLE table_name_24 (status VARCHAR, newspaper_magazine VARCHAR)
SELECT result FROM table_19508635_1 WHERE theme = "1980s"
Name the result for 1980s
CREATE TABLE table_19508635_1 (result VARCHAR, theme VARCHAR)
SELECT team FROM table_24231638_3 WHERE replaced_by = "Miroslav Đukić"
What is the team that the replaced by is miroslav đukić?
CREATE TABLE table_24231638_3 (team VARCHAR, replaced_by VARCHAR)
SELECT away_team AS score FROM table_name_7 WHERE venue = "princes park"
Which Away team score has a Venue of princes park?
CREATE TABLE table_name_7 (away_team VARCHAR, venue VARCHAR)
SELECT MIN(first_elected) FROM table_1341897_6 WHERE district = "Arkansas 3"
When was James William Trimble first elected in the Arkansas 3 district?
CREATE TABLE table_1341897_6 (first_elected INTEGER, district VARCHAR)
SELECT power_kw FROM table_24673888_1 WHERE location__transmitter_site_ = "Borongan"
What is the power in KW of the transmitter situated in Borongan?
CREATE TABLE table_24673888_1 (power_kw VARCHAR, location__transmitter_site_ VARCHAR)
SELECT type FROM table_name_1 WHERE location = "amherst, ma"
Which type of institution is in Amherst, MA?
CREATE TABLE table_name_1 (type VARCHAR, location VARCHAR)
SELECT place_of_birth FROM table_name_31 WHERE took_office > 1982 AND district < 43 AND committee = "health and government operations"
Where was the place of birth for the delegate who took office after 1982, delegates a district smaller than 43 and belongs to a Health and Government operations committee?
CREATE TABLE table_name_31 (place_of_birth VARCHAR, committee VARCHAR, took_office VARCHAR, district VARCHAR)
SELECT turing_complete FROM table_13636_1 WHERE numeral_system = "Decimal"
what's the turing complete with numeral system being decimal
CREATE TABLE table_13636_1 (turing_complete VARCHAR, numeral_system VARCHAR)