text
stringlengths
142
882
table: 1-10818465-1 columns: Model, RU, Max processors, Processor frequency, Max memory, Max disk capacity, GA Date Q: What is the lowest ru? A: SELECT MIN RU FROM 1-10818465-1
table: 1-10818465-1 columns: Model, RU, Max processors, Processor frequency, Max memory, Max disk capacity, GA Date Q: What ga date do the models with 1.0, 1.2, 1.4ghz processor frequencies have? A: SELECT GA Date FROM 1-10818465-1 WHERE Processor frequency = '1.0, 1.2, 1.4GHz'
table: 1-10818465-1 columns: Model, RU, Max processors, Processor frequency, Max memory, Max disk capacity, GA Date Q: What is the ga date of the t5120 model? A: SELECT GA Date FROM 1-10818465-1 WHERE Model = 'T5120'
table: 1-10815352-1 columns: League, Sport, Country, Season, Games, Average attendance, Total attendance Q: What is the sport of the La Liga league? A: SELECT Sport FROM 1-10815352-1 WHERE League = 'La Liga'
table: 1-10815352-1 columns: League, Sport, Country, Season, Games, Average attendance, Total attendance Q: What's the minimum total attendance of the Premier League association football? A: SELECT MIN Total attendance FROM 1-10815352-1 WHERE Sport = 'Association football' AND League = 'Premier League'
table: 1-10815352-1 columns: League, Sport, Country, Season, Games, Average attendance, Total attendance Q: What's the average attendance of the leagues in the season of 2013? A: SELECT MIN Average attendance FROM 1-10815352-1 WHERE Season = '2013'
table: 1-10815352-1 columns: League, Sport, Country, Season, Games, Average attendance, Total attendance Q: What's the total attendance of the leagues in season of 2010? A: SELECT COUNT Total attendance FROM 1-10815352-1 WHERE Season = '2010'
table: 1-10874596-1 columns: Year [e ] (Ceremony), Film title used in nomination, Original title, Director, Result Q: Who were the directors of the film submitted with the title Young Törless? A: SELECT Director FROM 1-10874596-1 WHERE Film title used in nomination = 'Young Törless'
table: 1-10874596-1 columns: Year [e ] (Ceremony), Film title used in nomination, Original title, Director, Result Q: What was the original title of the film submitted with the title A Woman in Flames? A: SELECT Original title FROM 1-10874596-1 WHERE Film title used in nomination = 'A Woman in Flames'
table: 1-10874596-1 columns: Year [e ] (Ceremony), Film title used in nomination, Original title, Director, Result Q: In what years was a film submitted with the title The Enigma of Kaspar Hauser? A: SELECT Year [e ] (Ceremony) FROM 1-10874596-1 WHERE Film title used in nomination = 'The Enigma of Kaspar Hauser'
table: 1-10874596-1 columns: Year [e ] (Ceremony), Film title used in nomination, Original title, Director, Result Q: Who were the directors of the film with the original title o.k.? A: SELECT Director FROM 1-10874596-1 WHERE Original title = 'o.k.'
table: 1-1087659-2 columns: Year, Division, League, Reg. Season, Playoffs, Avg. Attendance Q: What is the division for the division semifinals playoffs? A: SELECT Division FROM 1-1087659-2 WHERE Playoffs = 'Division Semifinals'
table: 1-10908676-7 columns: No. in series, No. in season, Title, Directed by, Written by, Original air date Q: What is the number in series of "say uncle"? A: SELECT No. in series FROM 1-10908676-7 WHERE Title = '"Say Uncle"'
table: 1-10908676-7 columns: No. in series, No. in season, Title, Directed by, Written by, Original air date Q: What is the title written by David Mamet? A: SELECT Title FROM 1-10908676-7 WHERE Written by = 'David Mamet'
table: 1-10942714-1 columns: Rank, English title, Chinese title, Average, Peak, Premiere, Finale, HK viewers Q: What was the finale for 潮爆大狀 A: SELECT Finale FROM 1-10942714-1 WHERE Chinese title = '潮爆大狀'
table: 1-10942714-1 columns: Rank, English title, Chinese title, Average, Peak, Premiere, Finale, HK viewers Q: What was the finale for 潮爆大狀 A: SELECT Finale FROM 1-10942714-1 WHERE Chinese title = '潮爆大狀'
table: 1-10942714-1 columns: Rank, English title, Chinese title, Average, Peak, Premiere, Finale, HK viewers Q: How many viewers were there for the premier with 34 A: SELECT HK viewers FROM 1-10942714-1 WHERE Premiere = 34
table: 1-10942714-1 columns: Rank, English title, Chinese title, Average, Peak, Premiere, Finale, HK viewers Q: How many are listed under 潮爆大狀 A: SELECT COUNT Peak FROM 1-10942714-1 WHERE Chinese title = '潮爆大狀'
table: 1-10953197-2 columns: No. in series, No. in season, Title, Director, Writer(s), Original air date, Production code Q: Who was the director of the episode with a production code of 2393059? A: SELECT Director FROM 1-10953197-2 WHERE Production code = '2393059'
table: 1-10953197-2 columns: No. in series, No. in season, Title, Director, Writer(s), Original air date, Production code Q: How many people wrote "Michael's Game"? A: SELECT COUNT Writer(s) FROM 1-10953197-2 WHERE Title = '"Michael's Game"'
table: 1-10953197-2 columns: No. in series, No. in season, Title, Director, Writer(s), Original air date, Production code Q: When did the episode title "Duet For One" air? A: SELECT Original air date FROM 1-10953197-2 WHERE Title = '"Duet for One"'
table: 1-10935548-1 columns: No. in series, No. in season, Title, Directed by, Written by, Original air date, Production code, U.S. viewers (millions) Q: Which episode had 16.38 million U.S. viewers? A: SELECT Title FROM 1-10935548-1 WHERE U.S. viewers (millions) = '16.38'
table: 1-10935548-1 columns: No. in series, No. in season, Title, Directed by, Written by, Original air date, Production code, U.S. viewers (millions) Q: What is the production code of the episode written by José Molina that aired on October 12, 2004? A: SELECT Production code FROM 1-10935548-1 WHERE Written by = 'José Molina' AND Original air date = 'October 12, 2004'
table: 1-10935548-1 columns: No. in series, No. in season, Title, Directed by, Written by, Original air date, Production code, U.S. viewers (millions) Q: What was the original air date of the episode "Quarry"? A: SELECT Original air date FROM 1-10935548-1 WHERE Title = '"Quarry"'
table: 1-10935548-1 columns: No. in series, No. in season, Title, Directed by, Written by, Original air date, Production code, U.S. viewers (millions) Q: Which episode was directed by Jean de Segonzac? A: SELECT Title FROM 1-10935548-1 WHERE Directed by = 'Jean de Segonzac'
table: 1-10953197-3 columns: No. in series, No. in season, Title, Director, Writer(s), Original air date, Production code Q: what are the original air dates with a production code of 2394087 A: SELECT Original air date FROM 1-10953197-3 WHERE Production code = '2394087'
table: 1-10953197-3 columns: No. in series, No. in season, Title, Director, Writer(s), Original air date, Production code Q: Who are the writers for the title "boxing sydney" A: SELECT Writer(s) FROM 1-10953197-3 WHERE Title = '"Boxing Sydney"'
table: 1-10953197-3 columns: No. in series, No. in season, Title, Director, Writer(s), Original air date, Production code Q: What are the production codes for the title "all about brooke" A: SELECT Production code FROM 1-10953197-3 WHERE Title = '"All About Brooke"'
table: 1-10953197-3 columns: No. in series, No. in season, Title, Director, Writer(s), Original air date, Production code Q: Who are the writer(s) for the production code 2394084 A: SELECT Writer(s) FROM 1-10953197-3 WHERE Production code = '2394084'
table: 1-10953197-4 columns: No. in series, No. in season, Title, Director, Writer(s), Original air date, Production code Q: What's the total number of episodes with the production code 2395113A? A: SELECT COUNT Title FROM 1-10953197-4 WHERE Production code = '2395113A'
table: 1-10953197-4 columns: No. in series, No. in season, Title, Director, Writer(s), Original air date, Production code Q: What's the number of the episode called "Melrose Unglued"? A: SELECT MAX No. in series FROM 1-10953197-4 WHERE Title = '"Melrose Unglued"'
table: 1-10953197-4 columns: No. in series, No. in season, Title, Director, Writer(s), Original air date, Production code Q: Who's the writer for the episode with a production code 2395114? A: SELECT Writer(s) FROM 1-10953197-4 WHERE Production code = '2395114'
table: 1-10953197-4 columns: No. in series, No. in season, Title, Director, Writer(s), Original air date, Production code Q: Who directed the episode titled "Full Metal Betsy"? A: SELECT Director FROM 1-10953197-4 WHERE Title = '"Full Metal Betsy"'
table: 1-10953197-4 columns: No. in series, No. in season, Title, Director, Writer(s), Original air date, Production code Q: What's the number of the episode with production code 2395118? A: SELECT No. in season FROM 1-10953197-4 WHERE Production code = '2395118'
table: 1-10953197-4 columns: No. in series, No. in season, Title, Director, Writer(s), Original air date, Production code Q: Who was the writer for the episode with production code 2395096? A: SELECT Writer(s) FROM 1-10953197-4 WHERE Production code = '2395096'
table: 1-10932739-2 columns: Planet, Planet Type, Semimajor Axis ( AU ), Orbital Period, Radial velocity (m/s), Detectable by: Q: What generation of spectrograph is most likely to detect a planet with a radial velocity of 0.089 m/s? A: SELECT Detectable by: FROM 1-10932739-2 WHERE Radial velocity (m/s) = '0.089'
table: 1-10932739-2 columns: Planet, Planet Type, Semimajor Axis ( AU ), Orbital Period, Radial velocity (m/s), Detectable by: Q: How long is the orbital period for the planet that has a semimajor axis of 5.20 au? A: SELECT Orbital Period FROM 1-10932739-2 WHERE Semimajor Axis ( AU ) = '5.20'
table: 1-10932739-2 columns: Planet, Planet Type, Semimajor Axis ( AU ), Orbital Period, Radial velocity (m/s), Detectable by: Q: What generation of spectrograph is Jupiter detected by? A: SELECT Detectable by: FROM 1-10932739-2 WHERE Planet = 'Jupiter'
table: 1-10932739-2 columns: Planet, Planet Type, Semimajor Axis ( AU ), Orbital Period, Radial velocity (m/s), Detectable by: Q: Which planet has an orbital period of 11.86 years? A: SELECT Planet FROM 1-10932739-2 WHERE Orbital Period = '11.86 years'
table: 1-10953197-7 columns: No. in series, No. in season, Title, Director, Writer(s), Original air date, Production code Q: who directed the production code 2398204 A: SELECT Director FROM 1-10953197-7 WHERE Production code = '2398204'
table: 1-10953197-7 columns: No. in series, No. in season, Title, Director, Writer(s), Original air date, Production code Q: when did "unpleasantville" air? A: SELECT Original air date FROM 1-10953197-7 WHERE Title = '"Unpleasantville"'
table: 1-10960039-1 columns: Pick #, CFL Team, Player, Position, College Q: What is player Alexis Bwenge's pick number? A: SELECT Pick # FROM 1-10960039-1 WHERE Player = 'Alexis Bwenge'
table: 1-10960039-1 columns: Pick #, CFL Team, Player, Position, College Q: What player is pick #2? A: SELECT Player FROM 1-10960039-1 WHERE Pick # = 2
table: 1-10960039-1 columns: Pick #, CFL Team, Player, Position, College Q: Which player's college is Saskatchewan? A: SELECT Player FROM 1-10960039-1 WHERE College = 'Saskatchewan'
table: 1-10960039-1 columns: Pick #, CFL Team, Player, Position, College Q: What is McMaster College's pick number? A: SELECT MIN Pick # FROM 1-10960039-1 WHERE College = 'McMaster'
table: 1-10953197-6 columns: No. in series, No. in season, Title, Director, Writer(s), Original air date, Production code Q: give the least number of times an episode was shown from 1997-1998 A: SELECT MIN No. in season FROM 1-10953197-6
table: 1-10953197-6 columns: No. in series, No. in season, Title, Director, Writer(s), Original air date, Production code Q: when was the episode named "the doctor is in... deep" first broadcast A: SELECT Original air date FROM 1-10953197-6 WHERE Title = '"The Doctor Is In... Deep"'
table: 1-10953197-6 columns: No. in series, No. in season, Title, Director, Writer(s), Original air date, Production code Q: how many times does the episode called "coop de grace" appear A: SELECT COUNT No. in series FROM 1-10953197-6 WHERE Title = '"Coop de Grace"'
table: 1-10953197-6 columns: No. in series, No. in season, Title, Director, Writer(s), Original air date, Production code Q: 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 A: SELECT MAX No. in season FROM 1-10953197-6 WHERE Director = 'Chip Chalmers' AND Production code = '2397162'
table: 1-10966926-2 columns: Round, Choice, Player name, Position, Height, Weight, College Q: Which player went to Michigan State? A: SELECT Player name FROM 1-10966926-2 WHERE College = 'Michigan State'
table: 1-10966926-2 columns: Round, Choice, Player name, Position, Height, Weight, College Q: Which player went to college in Oklahoma? A: SELECT Player name FROM 1-10966926-2 WHERE College = 'Oklahoma'
table: 1-10966926-2 columns: Round, Choice, Player name, Position, Height, Weight, College Q: Which position does Colt Brennan play? A: SELECT Position FROM 1-10966926-2 WHERE Player name = 'Colt Brennan'
table: 1-10966926-2 columns: Round, Choice, Player name, Position, Height, Weight, College Q: What is the height of the person that weighs 320 pounds? A: SELECT Height FROM 1-10966926-2 WHERE Weight = 320
table: 1-10975034-4 columns: Pick #, CFL Team, Player, Position, College Q: How many colleges have a DB position? A: SELECT COUNT College FROM 1-10975034-4 WHERE Position = 'DB'
table: 1-10975034-4 columns: Pick #, CFL Team, Player, Position, College Q: What is the maximum number of picks for the CFL team Calgary Stampeders? A: SELECT MAX Pick # FROM 1-10975034-4 WHERE CFL Team = 'Calgary Stampeders'
table: 1-10975034-4 columns: Pick #, CFL Team, Player, Position, College Q: How many CFL teams are from York college? A: SELECT COUNT CFL Team FROM 1-10975034-4 WHERE College = 'York'
table: 1-10975034-4 columns: Pick #, CFL Team, Player, Position, College Q: What CFL teams are part of Simon Fraser college? A: SELECT CFL Team FROM 1-10975034-4 WHERE College = 'Simon Fraser'
table: 1-10975034-4 columns: Pick #, CFL Team, Player, Position, College Q: Which players have a pick number of 27? A: SELECT Player FROM 1-10975034-4 WHERE Pick # = 27
table: 1-10960039-6 columns: Pick #, CFL Team, Player, Position, College Q: How many times were players named brett ralph were selected? A: SELECT COUNT Pick # FROM 1-10960039-6 WHERE Player = 'Brett Ralph'
table: 1-10960039-6 columns: Pick #, CFL Team, Player, Position, College Q: What schools did lenard semajuste play for? A: SELECT College FROM 1-10960039-6 WHERE Player = 'Lenard Semajuste'
table: 1-10960039-6 columns: Pick #, CFL Team, Player, Position, College Q: What is the highest selection number for the saskatchewan roughriders team? A: SELECT MAX Pick # FROM 1-10960039-6 WHERE CFL Team = 'Saskatchewan Roughriders'
table: 1-10960039-6 columns: Pick #, CFL Team, Player, Position, College Q: How many fb players were drafted? A: SELECT COUNT Pick # FROM 1-10960039-6 WHERE Position = 'FB'
table: 1-10960039-6 columns: Pick #, CFL Team, Player, Position, College Q: How many players played for adams state school? A: SELECT COUNT Player FROM 1-10960039-6 WHERE College = 'Adams State'
table: 1-10960039-6 columns: Pick #, CFL Team, Player, Position, College Q: What teams drafted players that played for northwood school? A: SELECT CFL Team FROM 1-10960039-6 WHERE College = 'Northwood'
table: 1-10975034-5 columns: Pick #, CFL Team, Player, Position, College Q: What college did Craig Zimmer go to? A: SELECT College FROM 1-10975034-5 WHERE Player = 'Craig Zimmer'
table: 1-10975034-5 columns: Pick #, CFL Team, Player, Position, College Q: What is the pick number of regina? A: SELECT Pick # FROM 1-10975034-5 WHERE College = 'Regina'
table: 1-10975034-5 columns: Pick #, CFL Team, Player, Position, College Q: What is the player who is lb and cfl team is saskatchewan roughriders? A: SELECT Player FROM 1-10975034-5 WHERE Position = 'LB' AND CFL Team = 'Saskatchewan Roughriders'
table: 1-10975034-5 columns: Pick #, CFL Team, Player, Position, College Q: What is the cfl team that has a position of ol? A: SELECT CFL Team FROM 1-10975034-5 WHERE Position = 'OL'
table: 1-10975034-5 columns: Pick #, CFL Team, Player, Position, College Q: What is the number of position where the pick number is 43? A: SELECT COUNT Position FROM 1-10975034-5 WHERE Pick # = 43
table: 1-10975034-5 columns: Pick #, CFL Team, Player, Position, College Q: What is the cfl team with ryan folk? A: SELECT CFL Team FROM 1-10975034-5 WHERE Player = 'Ryan Folk'
table: 1-10979230-5 columns: Romaji title, Japanese title, Release date, Reference, Oricon Q: What release date is when kids-270 is a reference? A: SELECT Release date FROM 1-10979230-5 WHERE Reference = 'KIDS-270'
table: 1-10979230-5 columns: Romaji title, Japanese title, Release date, Reference, Oricon Q: what is the title where romaji is titles da.i.su.ki A: SELECT Japanese title FROM 1-10979230-5 WHERE Romaji title = 'Da.i.su.ki'
table: 1-10979230-5 columns: Romaji title, Japanese title, Release date, Reference, Oricon Q: what are the title in japanese where the reference is kids-430? A: SELECT Japanese title FROM 1-10979230-5 WHERE Reference = 'KIDS-430'
table: 1-10979230-5 columns: Romaji title, Japanese title, Release date, Reference, Oricon Q: who is the reference when romaji title is heartbreak sniper? A: SELECT Reference FROM 1-10979230-5 WHERE Romaji title = 'Heartbreak Sniper'
table: 1-10979230-4 columns: Romaji title, Japanese title, Release date, Reference, Oricon Q: What rank is 愛のバカ on the Japanese singles chart? A: SELECT COUNT Oricon FROM 1-10979230-4 WHERE Japanese title = '愛のバカ'
table: 1-10979230-4 columns: Romaji title, Japanese title, Release date, Reference, Oricon Q: How many songs have mi-chemin as their Japanese name and romanji name? A: SELECT COUNT Romaji title FROM 1-10979230-4 WHERE Japanese title = 'Mi-Chemin'
table: 1-1099080-1 columns: Condition, Prothrombin time, Partial thromboplastin time, Bleeding time, Platelet count Q: What was the partial thromboplastin time for factor x deficiency as seen in amyloid purpura A: SELECT Partial thromboplastin time FROM 1-1099080-1 WHERE Condition = 'Factor X deficiency as seen in amyloid purpura'
table: 1-1099080-1 columns: Condition, Prothrombin time, Partial thromboplastin time, Bleeding time, Platelet count Q: How many conditions have an unaffected prothrombin time and a prolonged bleeding time A: SELECT COUNT Condition FROM 1-1099080-1 WHERE Prothrombin time = 'Unaffected' AND Bleeding time = 'Prolonged'
table: 1-1099080-1 columns: Condition, Prothrombin time, Partial thromboplastin time, Bleeding time, Platelet count Q: What was the bleeding time for the factor x deficiency as seen in amyloid purpura A: SELECT Bleeding time FROM 1-1099080-1 WHERE Condition = 'Factor X deficiency as seen in amyloid purpura'
table: 1-1099080-1 columns: Condition, Prothrombin time, Partial thromboplastin time, Bleeding time, Platelet count Q: What conditions had both prolonged bleeding times and prolonged partial thromboplastin times A: SELECT Condition FROM 1-1099080-1 WHERE Partial thromboplastin time = 'Prolonged' AND Bleeding time = 'Prolonged'
table: 1-1099080-1 columns: Condition, Prothrombin time, Partial thromboplastin time, Bleeding time, Platelet count Q: What was the bleeding time for factor xii deficiency A: SELECT Bleeding time FROM 1-1099080-1 WHERE Condition = 'Factor XII deficiency'
table: 1-1099080-1 columns: Condition, Prothrombin time, Partial thromboplastin time, Bleeding time, Platelet count Q: What were the bleeding times when both the platelet count was unaffected and the partial thromboplastin time was unaffected A: SELECT Bleeding time FROM 1-1099080-1 WHERE Partial thromboplastin time = 'Unaffected' AND Platelet count = 'Unaffected'
table: 1-11019212-1 columns: Location, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday Q: what's the tuesday time with location being millhopper A: SELECT Tuesday FROM 1-11019212-1 WHERE Location = 'Millhopper'
table: 1-11019212-1 columns: Location, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday Q: what's the wednesday time with monday being 10:00-8:00 A: SELECT Wednesday FROM 1-11019212-1 WHERE Monday = '10:00-8:00'
table: 1-11019212-1 columns: Location, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday Q: what's the thursday time with location being hawthorne A: SELECT Thursday FROM 1-11019212-1 WHERE Location = 'Hawthorne'
table: 1-11019212-1 columns: Location, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday Q: what's the saturday time with wednesday being 10:00-5:00 A: SELECT Saturday FROM 1-11019212-1 WHERE Wednesday = '10:00-5:00'
table: 1-11019212-1 columns: Location, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday Q: what's the thursday time with sunday being 1:00-5:00 and tuesday being 1:00-7:00 A: SELECT Thursday FROM 1-11019212-1 WHERE Sunday = '1:00-5:00' AND Tuesday = '1:00-7:00'
table: 1-11019212-1 columns: Location, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday Q: what's the monday time with tuesday being 9:00-6:00 A: SELECT Monday FROM 1-11019212-1 WHERE Tuesday = '9:00-6:00'
table: 1-11056278-3 columns: Rnd, Race Name, Pole position, Fastest lap, Winning driver, Winning team, Report Q: What are all the reports where Paul Tracy had the fastest lap? A: SELECT Report FROM 1-11056278-3 WHERE Fastest lap = 'Paul Tracy'
table: 1-11056278-3 columns: Rnd, Race Name, Pole position, Fastest lap, Winning driver, Winning team, Report Q: Who drove the fastest lap at the Tenneco Automotive Grand Prix of Detroit? A: SELECT Fastest lap FROM 1-11056278-3 WHERE Race Name = 'Tenneco Automotive Grand Prix of Detroit'
table: 1-11056278-3 columns: Rnd, Race Name, Pole position, Fastest lap, Winning driver, Winning team, Report Q: Who had the fastest lap in the races won by Max Papis? A: SELECT Fastest lap FROM 1-11056278-3 WHERE Winning driver = 'Max Papis'
table: 1-11056278-3 columns: Rnd, Race Name, Pole position, Fastest lap, Winning driver, Winning team, Report Q: In Round 6, how many winning drivers were there? A: SELECT COUNT Winning driver FROM 1-11056278-3 WHERE Rnd = 6
table: 1-1104312-5 columns: English name, Original name, Area in km², Population at 2010 Census, Number of settlements and villages Q: What are the original names of the districts where the population in the 2010 census was 210450? A: SELECT Original name FROM 1-1104312-5 WHERE Population at 2010 Census = 210450
table: 1-1104312-5 columns: English name, Original name, Area in km², Population at 2010 Census, Number of settlements and villages Q: What is the original name of the district with the current English name of South Bogor? A: SELECT Original name FROM 1-1104312-5 WHERE English name = 'South Bogor'
table: 1-1104312-5 columns: English name, Original name, Area in km², Population at 2010 Census, Number of settlements and villages Q: What is the listed population from the 2010 census of West Bogor? A: SELECT MIN Population at 2010 Census FROM 1-1104312-5 WHERE English name = 'West Bogor'
table: 1-1104312-5 columns: English name, Original name, Area in km², Population at 2010 Census, Number of settlements and villages Q: How many districts have an area of 17.72 KM2? A: SELECT COUNT English name FROM 1-1104312-5 WHERE Area in km² = '17.72'
table: 1-1104312-5 columns: English name, Original name, Area in km², Population at 2010 Census, Number of settlements and villages Q: What is the area in km2 for the district whose original name was Kecamatan Bogor Timur? A: SELECT Area in km² FROM 1-1104312-5 WHERE Original name = 'Kecamatan Bogor Timur'
table: 1-11066073-1 columns: Pilot car No., Colour, Serial No., Engine No., Registration No. Q: What is the number of colour with the regisration number of mg-509? A: SELECT COUNT Colour FROM 1-11066073-1 WHERE Registration No. = 'MG-509'
table: 1-11058032-1 columns: No. in series, No. in season, Title, Directed by, Written by, Original air date, U.S. viewers (millions) Q: What is the title of the episode directed by Mark Tinker? A: SELECT Title FROM 1-11058032-1 WHERE Directed by = 'Mark Tinker'
table: 1-11058032-1 columns: No. in series, No. in season, Title, Directed by, Written by, Original air date, U.S. viewers (millions) Q: What episode in the season was directed by Jeff Melman? A: SELECT MIN No. in season FROM 1-11058032-1 WHERE Directed by = 'Jeff Melman'