question
stringlengths 12
244
| sql
stringlengths 22
468
|
---|---|
where title is beginning callanetics , what is the total of format ? | SELECT COUNT Format FROM table WHERE Title = Beginning Callanetics |
where catalog number is 81258 , what are all the studio ? | SELECT Studio FROM table WHERE Catalog Number = 81258 |
where title is am/pm callanetics , what are all the copyright information? | SELECT Copyright Information FROM table WHERE Title = AM/PM Callanetics |
What was the GF attendance at the location of Sydney Football Stadium, Sydney (6)? | SELECT COUNT GF Attendance FROM table WHERE Location = Sydney Football Stadium, Sydney (6) |
Which losing team had a score of 24-12? | SELECT LosingTeam FROM table WHERE Score = 24-12 |
What was the losing team in the 1993 season? | SELECT LosingTeam FROM table WHERE Season = 1993 |
What was the compression ration when the engine was Wasp Jr. T1B2? | SELECT Compression ratio FROM table WHERE Engine = Wasp Jr. T1B2 |
What is the compression ration when the continuous power is hp (kw) at 2,200 RPM and the octane rating is 80/87? | SELECT Compression ratio FROM table WHERE Power, continuous = hp (kW) at 2,200 RPM AND Octane rating = 80/87 |
What is the compression ratio when the continuous power is hp (KW) at 2,200 RPM and the critical altitude is at sea level? | SELECT COUNT Compression ratio FROM table WHERE Power, continuous = hp (kW) at 2,200 RPM AND Critical altitude This is the highest altitude at which the engine can achieve its full continuous power rating. Above this altitude, power falls off with height as with a naturally aspirated engine . See Supercharger#Altitude effects for details. = sea level |
When the engine is Wasp Jr. T1B2, what is the number needed for takeoff power? | SELECT COUNT Power, takeoff FROM table WHERE Engine = Wasp Jr. T1B2 |
When critical altitude is sea level, what is the compression ration for a supercharger gear ratio of 7:1? | SELECT Compression ratio FROM table WHERE Critical altitude This is the highest altitude at which the engine can achieve its full continuous power rating. Above this altitude, power falls off with height as with a naturally aspirated engine . See Supercharger#Altitude effects for details. = sea level AND Supercharger gear ratio = 7:1 |
How many episodes aired on october 27, 2008 | SELECT COUNT Episode FROM table WHERE Air Date = October 27, 2008 |
The episode "chapter five: dressed to kill" had a weekly ranking of what? | SELECT Weekly Rank for Living FROM table WHERE Episode = "Chapter Five: Dressed to Kill" |
what is the most # that aired on september 29, 2008? | SELECT MAX # FROM table WHERE Air Date = September 29, 2008 |
How many seasons did the canterbury bulldogs (8) win? | SELECT COUNT Season FROM table WHERE WinningTeam = Canterbury Bulldogs (8) |
How many teams lost at the sydney football stadium, sydney (11)? | SELECT COUNT LosingTeam FROM table WHERE Location = Sydney Football Stadium, Sydney (11) |
What was the date that the st. george-illawarra dragons lost? | SELECT Grand FinalDate FROM table WHERE LosingTeam = St. George-Illawarra Dragons |
Brett kimmorley, who was chosen for the clive churchill medal belonged to what team? | SELECT WinningTeam FROM table WHERE Clive Churchill Medal = Brett Kimmorley |
What time slots have a 6.3 rating | SELECT Time slot (EST) FROM table WHERE Rating = 6.3 |
What time slot is the episode "the way we weren't" in | SELECT Time slot (EST) FROM table WHERE Episode = "The Way We Weren't" |
What time slot is the episode "who's your daddy" in | SELECT Time slot (EST) FROM table WHERE Episode = "Who's Your Daddy" |
Which air date had an 11 share | SELECT Air Date FROM table WHERE Share = 11 |
Which air date had the 18-49 rating/share of 3.3/9 | SELECT Air Date FROM table WHERE 18-49 (Rating/Share) = 3.3/9 |
Which characters had their first experience in the episode "consequences"? | SELECT Character FROM table WHERE First appearance = "Consequences" |
What episode had the last appearances of the late wife of mac taylor? | SELECT Last appearance FROM table WHERE Relationship = Late wife of Mac Taylor |
Which characters were portrayed by reed garrett? | SELECT Portrayed by FROM table WHERE Character = Reed Garrett |
How many characters were portrayed by the informant of don flack? | SELECT COUNT Portrayed by FROM table WHERE Relationship = Informant of Don Flack |
What episode was the last appearance of the character, rikki sandoval? | SELECT Last appearance FROM table WHERE Character = Rikki Sandoval |
On which episode did actress Sela Ward make her last appearance? | SELECT Last appearance FROM table WHERE Portrayed by = Sela Ward |
Which actors first appeared in "Zoo York"? | SELECT Portrayed by FROM table WHERE First appearance = "Zoo York" |
How many episodes did actress Vanessa Ferlito appear in? | SELECT Episodes FROM table WHERE Portrayed by = Vanessa Ferlito |
Which actors first appeared in episode "Blink" 1, 2, 3? | SELECT Portrayed by FROM table WHERE First appearance = "Blink" 1, 2, 3 |
What was the duration of Robert Joy's portrayal? | SELECT COUNT Duration FROM table WHERE Portrayed by = Robert Joy |
Which episode did actor A. J. Buckley last appear in? | SELECT Last appearance FROM table WHERE Portrayed by = A. J. Buckley |
What is the least top division titles? | SELECT MIN Top division titles FROM table |
What is the least number of seasons in top division? | SELECT MIN Number of seasons in top division FROM table |
How many viewers (millions) were there for rank (week) 20? | SELECT COUNT Viewers (millions) FROM table WHERE Rank (week) = 20 |
What is the rank (timeslot) with the episode name "dangerous liaisons"? | SELECT Rank (timeslot) FROM table WHERE Episode = "Dangerous Liaisons" |
What is the lowest rank (night) for having viewers (millions) 5.25? | SELECT MIN Rank (night) FROM table WHERE Viewers (millions) = 5.25 |
How many times was the episode named "conference call"? | SELECT COUNT # FROM table WHERE Episode = "Conference Call" |
How many times was the rank (night) 11? | SELECT COUNT Viewers (millions) FROM table WHERE Rank (night) = 11 |
WHAT WAS THE AMOUNT OF CARBON DIOXIDE EMISSIONS IN 2006 IN THE COUNTRY WHOSE CO2 EMISSIONS (TONS PER PERSON) REACHED 1.4 IN 2OO7? | SELECT Carbon dioxide emissions per year (10 6 Tons) (2006) FROM table WHERE Carbon dioxide emissions per year (Tons per person) (2007) = 1.4 |
HOW MANY TONS OF CO2 EMISSIONS DID RUSSIA PRODUCE IN 2006? | SELECT MAX Carbon dioxide emissions per year (10 6 Tons) (2006) FROM table WHERE Country = Russia |
WHAT PERCENTAGE OF GLOBAL TOTAL EMISSIONS DID INDIA PRODUCE? | SELECT Percentage of global total FROM table WHERE Country = India |
HOW MUCH IS THE PERCENTAGE OF GLOBAL TOTAL EMISSIONS IN THE COUNTRY THAT PRODUCED 4.9 TONS PER PERSON IN 2007? | SELECT Percentage of global total FROM table WHERE Carbon dioxide emissions per year (Tons per person) (2007) = 4.9 |
WHAT WAS THE AVERAGE EMISSION PER KM 2 IN INDIA? | SELECT MAX Avg. emission per km 2 of its land (tons) FROM table WHERE Country = India |
What is the rank number that aired october 26, 2007? | SELECT Rank (#) FROM table WHERE Air Date = October 26, 2007 |
What is the number of rank with the viewership of 5.96 million? | SELECT COUNT Rank (#) FROM table WHERE Viewers (m) = 5.96 |
What is the viewership on november 9, 2007? | SELECT Viewers (m) FROM table WHERE Air Date = November 9, 2007 |
How many platinum points were awarded when 6 gold points were awarded? | SELECT MAX Points awarded (Platinum) FROM table WHERE Points awarded (Gold) = 6 |
What was the range of finishing position for 15 awarded platinum points? | SELECT Finishing position FROM table WHERE Points awarded (Platinum) = 15 |
How many platinum points were awarded for 5th place? | SELECT MAX Points awarded (Platinum) FROM table WHERE Finishing position = 5th |
How many platinum points were awarded when 70 silver points were awarded? | SELECT Points awarded (Platinum) FROM table WHERE Points awarded (Silver) = 70 |
How many platinum points were awarded when 9 gold points were awarded? | SELECT Points awarded (Platinum) FROM table WHERE Points awarded (Gold) = 9 |
How did the episode rank that had 2.65 million viewers? | SELECT Rank (#) FROM table WHERE Viewers (m) = 2.65 |
What was the share for the first episode that ranked 85? | SELECT MIN Share FROM table WHERE Rank (#) = 85 |
Which timeslot did episode no. 15 hold? | SELECT Timeslot FROM table WHERE No. = 15 |
What was the timeslot for the episode that aired on May 12, 2009? | SELECT Timeslot FROM table WHERE Air Date = May 12, 2009 |
What's the 18-49 (rating/share) of the episode that originally aired on May 5, 2009? | SELECT 18–49 (Rating/Share) FROM table WHERE Air Date = May 5, 2009 |
What's the total number of episodes whose original airings were viewed by 1.82 million viewers? | SELECT COUNT Air Date FROM table WHERE Viewers (m) = 1.82 |
What's the rating of the episode originally aired on May 5, 2009? | SELECT Rating FROM table WHERE Air Date = May 5, 2009 |
What episode was seen by 2.05 million viewers? | SELECT Episode FROM table WHERE Viewers (m) = 2.05 |
what's the extroverted, relationship-oriented where extroverted, task-oriented is director | SELECT Extroverted, Relationship-Oriented FROM table WHERE Extroverted, Task-Oriented = Director |
what's the extroverted, relationship-oriented where moderate is introverted sanguine | SELECT Extroverted, Relationship-Oriented FROM table WHERE Moderate = Introverted Sanguine |
what's the founder where moderate is ether | SELECT Founder FROM table WHERE Moderate = ether |
what's the extroverted, relationship-oriented where date is c. 1928 | SELECT Extroverted, Relationship-Oriented FROM table WHERE Date = c. 1928 |
who is the founder where date is c. 1900 | SELECT Founder FROM table WHERE Date = c. 1900 |
what's the people-task orientation scale where extroverted, relationship-oriented is team type | SELECT People-task orientation scale FROM table WHERE Extroverted, Relationship-Oriented = Team Type |
What is the batting team where the runs are 276? | SELECT Batting team FROM table WHERE Runs = 276 |
Name the batting team at Durham | SELECT Batting team FROM table WHERE Fielding team = Durham |
What is the batting team with the batting partnets of thilina kandamby and rangana herath? | SELECT Batting team FROM table WHERE Batting partners = Thilina Kandamby and Rangana Herath |
What is the fielding team with 155 runs? | SELECT Fielding team FROM table WHERE Runs = 155 |
What is the batting partners with runs of 226? | SELECT Batting partners FROM table WHERE Runs = 226 |
What is the nationality of David Bairstow? | SELECT Nationality FROM table WHERE Player = David Bairstow |
What are the players whose rank is 2? | SELECT Player FROM table WHERE Rank = 2 |
How many stumpings has Paul Nixon in his career? | SELECT Stumpings FROM table WHERE Player = Paul Nixon |
Where is Adam Gilchrist from? | SELECT Nationality FROM table WHERE Player = Adam Gilchrist |
What are the title that have 19.48 million u.s. viewers? | SELECT Title FROM table WHERE U.S. viewers (million) = 19.48 |
Which titles have 18.73 u.s. viewers. | SELECT Title FROM table WHERE U.S. viewers (million) = 18.73 |
Who wrote all the shows with 18.73 u.s. viewers? | SELECT Written by FROM table WHERE U.S. viewers (million) = 18.73 |
What is the rank where the area is Los Angeles? | SELECT Rank ( WJC ) FROM table WHERE Metro area = Los Angeles |
What is the number of jews where the rank is 1? | SELECT COUNT Number of Jews (WJC) FROM table WHERE Rank (ARDA) = 1 |
What is the number of jews asarb where the metro area is philadelphia? | SELECT Number of Jews (ASARB) FROM table WHERE Metro area = Philadelphia |
what are all the open 1st viii with u15 6th iv being bgs | SELECT Open 1st VIII FROM table WHERE U15 6th IV = BGS |
what are all the u16 2nd viii with u15 3rd iv being bbc | SELECT U16 2nd VIII FROM table WHERE U15 3rd IV = BBC |
what are all the open 1st viii with u15 4th iv being gt | SELECT Open 1st VIII FROM table WHERE U15 4th IV = GT |
how many crew had u15 3rd iv being bgs and u15 1st iv being acgs and open 1st viii being acgs | SELECT COUNT Crew FROM table WHERE U15 3rd IV = BGS AND U15 1st IV = ACGS AND Open 1st VIII = ACGS |
what are all the u15 3rd iv with u15 4th iv being bbc | SELECT U15 3rd IV FROM table WHERE U15 4th IV = BBC |
how many open 2nd viii had u15 3rd iv being gt | SELECT COUNT Open 2nd VIII FROM table WHERE U15 3rd IV = GT |
How many schools have an enrollment of 850? | SELECT COUNT Founded FROM table WHERE Enrolment = 850 |
What is the location of the school named Brisbane Girls' Grammar School? | SELECT Location FROM table WHERE School = Brisbane Girls' Grammar School |
How many schools are located in South Brisbane? | SELECT COUNT School FROM table WHERE Location = South Brisbane |
When was SPLC founded? | SELECT MIN Founded FROM table WHERE Abbreviation = SPLC |
What is the enrollment of STM which has been in competition since 1990? | SELECT COUNT Enrolment FROM table WHERE In competition since = 1990 AND Abbreviation = STM |
What number is the Monaco Grand Prix? | SELECT Rd. FROM table WHERE Grand Prix = Monaco Grand Prix |
Who is in the pole position for the French Grand Prix? | SELECT Pole Position FROM table WHERE Grand Prix = French Grand Prix |
What are the numbers for the raceways that are constructed by Ferrari, with Michael Schumacher holding the fastest lap and pole position? | SELECT Rd. FROM table WHERE Fastest Lap = Michael Schumacher AND Constructor = Ferrari AND Pole Position = Michael Schumacher |
How many on the list are called the Austrian Grand Prix? | SELECT COUNT Rd. FROM table WHERE Grand Prix = Austrian Grand Prix |
What number is the Canadian Grand Prix on the list? | SELECT Rd. FROM table WHERE Grand Prix = Canadian Grand Prix |
What is the rd for the canadian grand prix? | SELECT Rd. FROM table WHERE Grand Prix = Canadian Grand Prix |
Subsets and Splits