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