question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What are the slovenian names of the villages that had 65.9% of slovenes in 1951?
CREATE TABLE table_10797463_1 (village__slovenian_ VARCHAR, percent_of_slovenes_1951 VARCHAR)
{ "SQL_Query": "SELECT village__slovenian_ FROM table_10797463_1 WHERE percent_of_slovenes_1951 = \"65.9%\"" }
What are the slovenian names of the villages that had 16.7% of slovenes in 1991?
CREATE TABLE table_10797463_1 (village__slovenian_ VARCHAR, percent_of_slovenes_1991 VARCHAR)
{ "SQL_Query": "SELECT village__slovenian_ FROM table_10797463_1 WHERE percent_of_slovenes_1991 = \"16.7%\"" }
How many villages had 21.7% of slovenes in 1991?
CREATE TABLE table_10797463_1 (village__german_ VARCHAR, percent_of_slovenes_1991 VARCHAR)
{ "SQL_Query": "SELECT COUNT(village__german_) FROM table_10797463_1 WHERE percent_of_slovenes_1991 = \"21.7%\"" }
what percent of slovenes did the village called čahorče in slovenian have in 1991?
CREATE TABLE table_10797463_1 (percent_of_slovenes_1991 VARCHAR, village__slovenian_ VARCHAR)
{ "SQL_Query": "SELECT percent_of_slovenes_1991 FROM table_10797463_1 WHERE village__slovenian_ = \"Čahorče\"" }
What is the slovenian name for the village that in german is known as st.margarethen?
CREATE TABLE table_10797463_1 (village__slovenian_ VARCHAR, village__german_ VARCHAR)
{ "SQL_Query": "SELECT village__slovenian_ FROM table_10797463_1 WHERE village__german_ = \"St.Margarethen\"" }
For games on December 20, how many points did the scoring leaders get?
CREATE TABLE table_10812293_4 (high_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_10812293_4 WHERE date = \"December 20\"" }
Who was the scoring leader and how many points did he get in games on December 23?
CREATE TABLE table_10812293_4 (high_points VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_points FROM table_10812293_4 WHERE date = \"December 23\"" }
What is the pick # for the position de?
CREATE TABLE table_10812938_3 (pick__number VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT pick__number FROM table_10812938_3 WHERE position = \"DE\"" }
Which player went to college at Saint Mary's?
CREATE TABLE table_10812938_3 (player VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT player FROM table_10812938_3 WHERE college = \"Saint Mary's\"" }
What is the position for the player with cfl team Winnipeg blue bombers?
CREATE TABLE table_10812938_3 (position VARCHAR, cfl_team VARCHAR)
{ "SQL_Query": "SELECT position FROM table_10812938_3 WHERE cfl_team = \"Winnipeg Blue Bombers\"" }
Which player went to college at Laval?
CREATE TABLE table_10812938_3 (player VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT player FROM table_10812938_3 WHERE college = \"Laval\"" }
What was the college for the player with the cfl team of Edmonton Eskimos (via calgary)?
CREATE TABLE table_10812938_3 (college VARCHAR, cfl_team VARCHAR)
{ "SQL_Query": "SELECT college FROM table_10812938_3 WHERE cfl_team = \"Edmonton Eskimos (via Calgary)\"" }
What's the team of the player from St. Francis Xavier College?
CREATE TABLE table_10812938_5 (cfl_team VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT cfl_team FROM table_10812938_5 WHERE college = \"St. Francis Xavier\"" }
What player is on the Montreal Alouettes CFl team?
CREATE TABLE table_10812938_5 (player VARCHAR, cfl_team VARCHAR)
{ "SQL_Query": "SELECT player FROM table_10812938_5 WHERE cfl_team = \"Montreal Alouettes\"" }
What's the pick number of the player from Toronto Argonauts?
CREATE TABLE table_10812938_5 (pick__number INTEGER, cfl_team VARCHAR)
{ "SQL_Query": "SELECT MIN(pick__number) FROM table_10812938_5 WHERE cfl_team = \"Toronto Argonauts\"" }
What's the pick number of the player whose position is CB?
CREATE TABLE table_10812938_5 (pick__number VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT pick__number FROM table_10812938_5 WHERE position = \"CB\"" }
What's the pick number of the player from New Mexico?
CREATE TABLE table_10812938_5 (pick__number INTEGER, college VARCHAR)
{ "SQL_Query": "SELECT MAX(pick__number) FROM table_10812938_5 WHERE college = \"New Mexico\"" }
What player went to Ohio State College?
CREATE TABLE table_10812938_5 (player VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT player FROM table_10812938_5 WHERE college = \"Ohio State\"" }
What is the minimum introduced value for the Departmental region?
CREATE TABLE table_1081459_1 (introduced INTEGER, region VARCHAR)
{ "SQL_Query": "SELECT MIN(introduced) FROM table_1081459_1 WHERE region = \"Departmental\"" }
What is the smallest introduced value?
CREATE TABLE table_1081459_1 (introduced INTEGER)
{ "SQL_Query": "SELECT MIN(introduced) FROM table_1081459_1" }
Which CFL Teams drafted an OL in 2006?
CREATE TABLE table_10812938_4 (cfl_team VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT cfl_team FROM table_10812938_4 WHERE position = \"OL\"" }
Which college is aligned to the Saskatchewan Roughriders?
CREATE TABLE table_10812938_4 (college VARCHAR, cfl_team VARCHAR)
{ "SQL_Query": "SELECT college FROM table_10812938_4 WHERE cfl_team = \"Saskatchewan Roughriders\"" }
What Position did the Hamilton Tiger-Cats (via Ottawa) pick in the 2006 Draft.
CREATE TABLE table_10812938_4 (position VARCHAR, cfl_team VARCHAR)
{ "SQL_Query": "SELECT position FROM table_10812938_4 WHERE cfl_team = \"Hamilton Tiger-Cats (via Ottawa)\"" }
What is the earliest pick listed in the table.
CREATE TABLE table_10812938_4 (pick__number INTEGER)
{ "SQL_Query": "SELECT MIN(pick__number) FROM table_10812938_4" }
What episode number had production code e4423?
CREATE TABLE table_10842344_1 (no_in_season INTEGER, production_code VARCHAR)
{ "SQL_Query": "SELECT MAX(no_in_season) FROM table_10842344_1 WHERE production_code = \"E4423\"" }
What's the latest episode in a season where the U.S. viewers totaled 14.37 million?
CREATE TABLE table_10842344_1 (no_in_season INTEGER, us_viewers__millions_ VARCHAR)
{ "SQL_Query": "SELECT MAX(no_in_season) FROM table_10842344_1 WHERE us_viewers__millions_ = \"14.37\"" }
What is the season finale for season 4?
CREATE TABLE table_10819266_8 (season VARCHAR)
{ "SQL_Query": "SELECT season AS finale FROM table_10819266_8 WHERE season = 4" }
How many season premiers have a rank of #21?
CREATE TABLE table_10819266_8 (season VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT season AS premiere FROM table_10819266_8 WHERE rank = \"#21\"" }
What max processor has a maximum memory of 256 gb?
CREATE TABLE table_10818465_1 (max_processors VARCHAR, max_memory VARCHAR)
{ "SQL_Query": "SELECT max_processors FROM table_10818465_1 WHERE max_memory = \"256 GB\"" }
What is the max memory of the t5120 model?
CREATE TABLE table_10818465_1 (max_memory VARCHAR, model VARCHAR)
{ "SQL_Query": "SELECT max_memory FROM table_10818465_1 WHERE model = \"T5120\"" }
What is the lowest ru?
CREATE TABLE table_10818465_1 (ru INTEGER)
{ "SQL_Query": "SELECT MIN(ru) FROM table_10818465_1" }
What ga date do the models with 1.0, 1.2, 1.4ghz processor frequencies have?
CREATE TABLE table_10818465_1 (ga_date VARCHAR, processor_frequency VARCHAR)
{ "SQL_Query": "SELECT ga_date FROM table_10818465_1 WHERE processor_frequency = \"1.0, 1.2, 1.4GHz\"" }
What is the ga date of the t5120 model?
CREATE TABLE table_10818465_1 (ga_date VARCHAR, model VARCHAR)
{ "SQL_Query": "SELECT ga_date FROM table_10818465_1 WHERE model = \"T5120\"" }
What is the sport of the La Liga league?
CREATE TABLE table_10815352_1 (sport VARCHAR, league VARCHAR)
{ "SQL_Query": "SELECT sport FROM table_10815352_1 WHERE league = \"La Liga\"" }
What's the minimum total attendance of the Premier League association football?
CREATE TABLE table_10815352_1 (total_attendance INTEGER, sport VARCHAR, league VARCHAR)
{ "SQL_Query": "SELECT MIN(total_attendance) FROM table_10815352_1 WHERE sport = \"Association football\" AND league = \"Premier league\"" }
What's the average attendance of the leagues in the season of 2013?
CREATE TABLE table_10815352_1 (average_attendance INTEGER, season VARCHAR)
{ "SQL_Query": "SELECT MIN(average_attendance) FROM table_10815352_1 WHERE season = \"2013\"" }
What's the total attendance of the leagues in season of 2010?
CREATE TABLE table_10815352_1 (total_attendance VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT COUNT(total_attendance) FROM table_10815352_1 WHERE season = \"2010\"" }
Who were the directors of the film submitted with the title Young Törless?
CREATE TABLE table_10874596_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)
{ "SQL_Query": "SELECT director FROM table_10874596_1 WHERE film_title_used_in_nomination = \"Young Törless\"" }
What was the original title of the film submitted with the title A Woman in Flames?
CREATE TABLE table_10874596_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
{ "SQL_Query": "SELECT original_title FROM table_10874596_1 WHERE film_title_used_in_nomination = \"A Woman in Flames\"" }
In what years was a film submitted with the title The Enigma of Kaspar Hauser?
CREATE TABLE table_10874596_1 (year_ VARCHAR, e_ VARCHAR, film_title_used_in_nomination VARCHAR)
{ "SQL_Query": "SELECT year_[e_] AS __ceremony_ FROM table_10874596_1 WHERE film_title_used_in_nomination = \"The Enigma of Kaspar Hauser\"" }
Who were the directors of the film with the original title o.k.?
CREATE TABLE table_10874596_1 (director VARCHAR, original_title VARCHAR)
{ "SQL_Query": "SELECT director FROM table_10874596_1 WHERE original_title = \"o.k.\"" }
What is the division for the division semifinals playoffs?
CREATE TABLE table_1087659_2 (division VARCHAR, playoffs VARCHAR)
{ "SQL_Query": "SELECT division FROM table_1087659_2 WHERE playoffs = \"division Semifinals\"" }
What is the title written by David Mamet?
CREATE TABLE table_10908676_7 (title VARCHAR, written_by VARCHAR)
{ "SQL_Query": "SELECT title FROM table_10908676_7 WHERE written_by = \"David Mamet\"" }
What was the finale for 潮爆大狀
CREATE TABLE table_10942714_1 (finale VARCHAR, chinese_title VARCHAR)
{ "SQL_Query": "SELECT finale FROM table_10942714_1 WHERE chinese_title = \"潮爆大狀\"" }
How many viewers were there for the premier with 34
CREATE TABLE table_10942714_1 (hk_viewers VARCHAR, premiere VARCHAR)
{ "SQL_Query": "SELECT hk_viewers FROM table_10942714_1 WHERE premiere = 34" }
How many are listed under 潮爆大狀
CREATE TABLE table_10942714_1 (peak VARCHAR, chinese_title VARCHAR)
{ "SQL_Query": "SELECT COUNT(peak) FROM table_10942714_1 WHERE chinese_title = \"潮爆大狀\"" }
Who was the director of the episode with a production code of 2393059?
CREATE TABLE table_10953197_2 (director VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT director FROM table_10953197_2 WHERE production_code = \"2393059\"" }
Which episode had 16.38 million U.S. viewers?
CREATE TABLE table_10935548_1 (title VARCHAR, us_viewers__millions_ VARCHAR)
{ "SQL_Query": "SELECT title FROM table_10935548_1 WHERE us_viewers__millions_ = \"16.38\"" }
What is the production code of the episode written by José Molina that aired on October 12, 2004?
CREATE TABLE table_10935548_1 (production_code VARCHAR, written_by VARCHAR, original_air_date VARCHAR)
{ "SQL_Query": "SELECT production_code FROM table_10935548_1 WHERE written_by = \"José Molina\" AND original_air_date = \"October 12, 2004\"" }
Which episode was directed by Jean de Segonzac?
CREATE TABLE table_10935548_1 (title VARCHAR, directed_by VARCHAR)
{ "SQL_Query": "SELECT title FROM table_10935548_1 WHERE directed_by = \"Jean de Segonzac\"" }
what are the original air dates with a production code of 2394087
CREATE TABLE table_10953197_3 (original_air_date VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT original_air_date FROM table_10953197_3 WHERE production_code = \"2394087\"" }
Who are the writer(s) for the production code 2394084
CREATE TABLE table_10953197_3 (writer_s_ VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT writer_s_ FROM table_10953197_3 WHERE production_code = \"2394084\"" }
What's the total number of episodes with the production code 2395113A?
CREATE TABLE table_10953197_4 (title VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT COUNT(title) FROM table_10953197_4 WHERE production_code = \"2395113A\"" }
Who's the writer for the episode with a production code 2395114?
CREATE TABLE table_10953197_4 (writer_s_ VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT writer_s_ FROM table_10953197_4 WHERE production_code = \"2395114\"" }
What's the number of the episode with production code 2395118?
CREATE TABLE table_10953197_4 (no_in_season VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT no_in_season FROM table_10953197_4 WHERE production_code = \"2395118\"" }
Who was the writer for the episode with production code 2395096?
CREATE TABLE table_10953197_4 (writer_s_ VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT writer_s_ FROM table_10953197_4 WHERE production_code = \"2395096\"" }
How long is the orbital period for the planet that has a semimajor axis of 5.20 au?
CREATE TABLE table_10932739_2 (orbital_period VARCHAR, semimajor_axis___au__ VARCHAR)
{ "SQL_Query": "SELECT orbital_period FROM table_10932739_2 WHERE semimajor_axis___au__ = \"5.20\"" }
Which planet has an orbital period of 11.86 years?
CREATE TABLE table_10932739_2 (planet VARCHAR, orbital_period VARCHAR)
{ "SQL_Query": "SELECT planet FROM table_10932739_2 WHERE orbital_period = \"11.86 years\"" }
who directed the production code 2398204
CREATE TABLE table_10953197_7 (director VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT director FROM table_10953197_7 WHERE production_code = \"2398204\"" }
What is player Alexis Bwenge's pick number?
CREATE TABLE table_10960039_1 (pick__number VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT pick__number FROM table_10960039_1 WHERE player = \"Alexis Bwenge\"" }
What player is pick #2?
CREATE TABLE table_10960039_1 (player VARCHAR, pick__number VARCHAR)
{ "SQL_Query": "SELECT player FROM table_10960039_1 WHERE pick__number = 2" }
Which player's college is Saskatchewan?
CREATE TABLE table_10960039_1 (player VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT player FROM table_10960039_1 WHERE college = \"Saskatchewan\"" }
What is McMaster College's pick number?
CREATE TABLE table_10960039_1 (pick__number INTEGER, college VARCHAR)
{ "SQL_Query": "SELECT MIN(pick__number) FROM table_10960039_1 WHERE college = \"McMaster\"" }
give the least number of times an episode was shown from 1997-1998
CREATE TABLE table_10953197_6 (no_in_season INTEGER)
{ "SQL_Query": "SELECT MIN(no_in_season) FROM table_10953197_6" }
what is season 6 sum of both the number of times processing ID 2397162 was assigned and the number of times chip chalmers managed an episode
CREATE TABLE table_10953197_6 (no_in_season INTEGER, director VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT MAX(no_in_season) FROM table_10953197_6 WHERE director = \"Chip Chalmers\" AND production_code = \"2397162\"" }
Which player went to Michigan State?
CREATE TABLE table_10966926_2 (player_name VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT player_name FROM table_10966926_2 WHERE college = \"Michigan State\"" }
Which player went to college in Oklahoma?
CREATE TABLE table_10966926_2 (player_name VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT player_name FROM table_10966926_2 WHERE college = \"Oklahoma\"" }
Which position does Colt Brennan play?
CREATE TABLE table_10966926_2 (position VARCHAR, player_name VARCHAR)
{ "SQL_Query": "SELECT position FROM table_10966926_2 WHERE player_name = \"Colt Brennan\"" }
What is the height of the person that weighs 320 pounds?
CREATE TABLE table_10966926_2 (height VARCHAR, weight VARCHAR)
{ "SQL_Query": "SELECT height FROM table_10966926_2 WHERE weight = 320" }
How many colleges have a DB position?
CREATE TABLE table_10975034_4 (college VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT COUNT(college) FROM table_10975034_4 WHERE position = \"DB\"" }
What is the maximum number of picks for the CFL team Calgary Stampeders?
CREATE TABLE table_10975034_4 (pick__number INTEGER, cfl_team VARCHAR)
{ "SQL_Query": "SELECT MAX(pick__number) FROM table_10975034_4 WHERE cfl_team = \"Calgary Stampeders\"" }
How many CFL teams are from York college?
CREATE TABLE table_10975034_4 (cfl_team VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT COUNT(cfl_team) FROM table_10975034_4 WHERE college = \"York\"" }
What CFL teams are part of Simon Fraser college?
CREATE TABLE table_10975034_4 (cfl_team VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT cfl_team FROM table_10975034_4 WHERE college = \"Simon Fraser\"" }
Which players have a pick number of 27?
CREATE TABLE table_10975034_4 (player VARCHAR, pick__number VARCHAR)
{ "SQL_Query": "SELECT player FROM table_10975034_4 WHERE pick__number = 27" }
How many times were players named brett ralph were selected?
CREATE TABLE table_10960039_6 (pick__number VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT COUNT(pick__number) FROM table_10960039_6 WHERE player = \"Brett Ralph\"" }
What schools did lenard semajuste play for?
CREATE TABLE table_10960039_6 (college VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT college FROM table_10960039_6 WHERE player = \"Lenard Semajuste\"" }
What is the highest selection number for the saskatchewan roughriders team?
CREATE TABLE table_10960039_6 (pick__number INTEGER, cfl_team VARCHAR)
{ "SQL_Query": "SELECT MAX(pick__number) FROM table_10960039_6 WHERE cfl_team = \"Saskatchewan Roughriders\"" }
How many fb players were drafted?
CREATE TABLE table_10960039_6 (pick__number VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT COUNT(pick__number) FROM table_10960039_6 WHERE position = \"FB\"" }
How many players played for adams state school?
CREATE TABLE table_10960039_6 (player VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT COUNT(player) FROM table_10960039_6 WHERE college = \"Adams State\"" }
What teams drafted players that played for northwood school?
CREATE TABLE table_10960039_6 (cfl_team VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT cfl_team FROM table_10960039_6 WHERE college = \"Northwood\"" }
What college did Craig Zimmer go to?
CREATE TABLE table_10975034_5 (college VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT college FROM table_10975034_5 WHERE player = \"Craig Zimmer\"" }
What is the pick number of regina?
CREATE TABLE table_10975034_5 (pick__number VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT pick__number FROM table_10975034_5 WHERE college = \"Regina\"" }
What is the player who is lb and cfl team is saskatchewan roughriders?
CREATE TABLE table_10975034_5 (player VARCHAR, position VARCHAR, cfl_team VARCHAR)
{ "SQL_Query": "SELECT player FROM table_10975034_5 WHERE position = \"LB\" AND cfl_team = \"Saskatchewan Roughriders\"" }
What is the cfl team that has a position of ol?
CREATE TABLE table_10975034_5 (cfl_team VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT cfl_team FROM table_10975034_5 WHERE position = \"OL\"" }
What is the number of position where the pick number is 43?
CREATE TABLE table_10975034_5 (position VARCHAR, pick__number VARCHAR)
{ "SQL_Query": "SELECT COUNT(position) FROM table_10975034_5 WHERE pick__number = 43" }
What is the cfl team with ryan folk?
CREATE TABLE table_10975034_5 (cfl_team VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT cfl_team FROM table_10975034_5 WHERE player = \"Ryan Folk\"" }
What release date is when kids-270 is a reference?
CREATE TABLE table_10979230_5 (release_date VARCHAR, reference VARCHAR)
{ "SQL_Query": "SELECT release_date FROM table_10979230_5 WHERE reference = \"KIDS-270\"" }
what is the title where romaji is titles da.i.su.ki
CREATE TABLE table_10979230_5 (japanese_title VARCHAR, romaji_title VARCHAR)
{ "SQL_Query": "SELECT japanese_title FROM table_10979230_5 WHERE romaji_title = \"Da.i.su.ki\"" }
what are the title in japanese where the reference is kids-430?
CREATE TABLE table_10979230_5 (japanese_title VARCHAR, reference VARCHAR)
{ "SQL_Query": "SELECT japanese_title FROM table_10979230_5 WHERE reference = \"KIDS-430\"" }
who is the reference when romaji title is heartbreak sniper?
CREATE TABLE table_10979230_5 (reference VARCHAR, romaji_title VARCHAR)
{ "SQL_Query": "SELECT reference FROM table_10979230_5 WHERE romaji_title = \"Heartbreak Sniper\"" }
What rank is 愛のバカ on the Japanese singles chart?
CREATE TABLE table_10979230_4 (oricon VARCHAR, japanese_title VARCHAR)
{ "SQL_Query": "SELECT COUNT(oricon) FROM table_10979230_4 WHERE japanese_title = \"愛のバカ\"" }
How many songs have mi-chemin as their Japanese name and romanji name?
CREATE TABLE table_10979230_4 (romaji_title VARCHAR, japanese_title VARCHAR)
{ "SQL_Query": "SELECT COUNT(romaji_title) FROM table_10979230_4 WHERE japanese_title = \"Mi-Chemin\"" }
What was the partial thromboplastin time for factor x deficiency as seen in amyloid purpura
CREATE TABLE table_1099080_1 (partial_thromboplastin_time VARCHAR, condition VARCHAR)
{ "SQL_Query": "SELECT partial_thromboplastin_time FROM table_1099080_1 WHERE condition = \"Factor X deficiency as seen in amyloid purpura\"" }
How many conditions have an unaffected prothrombin time and a prolonged bleeding time
CREATE TABLE table_1099080_1 (condition VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR)
{ "SQL_Query": "SELECT COUNT(condition) FROM table_1099080_1 WHERE prothrombin_time = \"Unaffected\" AND bleeding_time = \"Prolonged\"" }
What was the bleeding time for the factor x deficiency as seen in amyloid purpura
CREATE TABLE table_1099080_1 (bleeding_time VARCHAR, condition VARCHAR)
{ "SQL_Query": "SELECT bleeding_time FROM table_1099080_1 WHERE condition = \"Factor X deficiency as seen in amyloid purpura\"" }
What conditions had both prolonged bleeding times and prolonged partial thromboplastin times
CREATE TABLE table_1099080_1 (condition VARCHAR, partial_thromboplastin_time VARCHAR, bleeding_time VARCHAR)
{ "SQL_Query": "SELECT condition FROM table_1099080_1 WHERE partial_thromboplastin_time = \"Prolonged\" AND bleeding_time = \"Prolonged\"" }
What was the bleeding time for factor xii deficiency
CREATE TABLE table_1099080_1 (bleeding_time VARCHAR, condition VARCHAR)
{ "SQL_Query": "SELECT bleeding_time FROM table_1099080_1 WHERE condition = \"Factor XII deficiency\"" }
What were the bleeding times when both the platelet count was unaffected and the partial thromboplastin time was unaffected
CREATE TABLE table_1099080_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR)
{ "SQL_Query": "SELECT bleeding_time FROM table_1099080_1 WHERE partial_thromboplastin_time = \"Unaffected\" AND platelet_count = \"Unaffected\"" }
what's the tuesday time with location being millhopper
CREATE TABLE table_11019212_1 (tuesday VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT tuesday FROM table_11019212_1 WHERE location = \"Millhopper\"" }
what's the wednesday time with monday being 10:00-8:00
CREATE TABLE table_11019212_1 (wednesday VARCHAR, monday VARCHAR)
{ "SQL_Query": "SELECT wednesday FROM table_11019212_1 WHERE monday = \"10:00-8:00\"" }