answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT institution FROM table_28211213_2 WHERE location = "Indianapolis, Indiana"
|
CREATE TABLE table_28211213_2 (institution VARCHAR, location VARCHAR)
|
When indianapolis, indiana is the location what is the institution?
|
SELECT team_nickname FROM table_28211213_2 WHERE affiliation = "Private/ Nonsectarian"
|
CREATE TABLE table_28211213_2 (team_nickname VARCHAR, affiliation VARCHAR)
|
When private/ nonsectarian is the the affiliation what is the team nickname?
|
SELECT team_nickname FROM table_28211213_2 WHERE enrollment = 4512
|
CREATE TABLE table_28211213_2 (team_nickname VARCHAR, enrollment VARCHAR)
|
4512 is the enrollment what is the team nickname?
|
SELECT championship FROM table_2820584_3 WHERE partner = "Allan Stone"
|
CREATE TABLE table_2820584_3 (championship VARCHAR, partner VARCHAR)
|
What championship was played with Allan Stone as a partner?
|
SELECT COUNT(partner) FROM table_2820584_3 WHERE year = 1973
|
CREATE TABLE table_2820584_3 (partner VARCHAR, year VARCHAR)
|
How many different partners played in the finale in 1973?
|
SELECT score_in_the_final FROM table_2820584_3 WHERE partner = "Fred McNair"
|
CREATE TABLE table_2820584_3 (score_in_the_final VARCHAR, partner VARCHAR)
|
What was the score in the final played with Fred McNair as partner?
|
SELECT original_air_date FROM table_28210383_1 WHERE prod_code = "2ACX12"
|
CREATE TABLE table_28210383_1 (original_air_date VARCHAR, prod_code VARCHAR)
|
What was the orginal air date for episodes with production code 2acx12?
|
SELECT written_by FROM table_28210383_1 WHERE prod_code = "2ACX12"
|
CREATE TABLE table_28210383_1 (written_by VARCHAR, prod_code VARCHAR)
|
Who wrote the episode with production code 2acx12?
|
SELECT no__episode__number_ FROM table_28210383_1 WHERE directed_by = "Greg Colton" AND written_by = "Patrick Meighan"
|
CREATE TABLE table_28210383_1 (no__episode__number_ VARCHAR, directed_by VARCHAR, written_by VARCHAR)
|
What numbered episode was directed by greg colton and written by patrick meighan?
|
SELECT directed_by FROM table_28210383_1 WHERE _number__season__number_ = "1 ( 2 )"
|
CREATE TABLE table_28210383_1 (directed_by VARCHAR, _number__season__number_ VARCHAR)
|
Who directed # (season #) is 1 ( 2 )?
|
SELECT mens_doubles FROM table_28211988_1 WHERE mens_singles = "Ma Wenge"
|
CREATE TABLE table_28211988_1 (mens_doubles VARCHAR, mens_singles VARCHAR)
|
Who is everyone on the men's doubles when men's singles is Ma Wenge?
|
SELECT mens_doubles FROM table_28211988_1 WHERE mens_singles = "Jean-Michel Saive"
|
CREATE TABLE table_28211988_1 (mens_doubles VARCHAR, mens_singles VARCHAR)
|
Who are all men's doubles when men's singles is Jean-Michel Saive?
|
SELECT host FROM table_28211988_1 WHERE mens_singles = "Ma Wenge"
|
CREATE TABLE table_28211988_1 (host VARCHAR, mens_singles VARCHAR)
|
Who are all hosts when men's singles is Ma Wenge?
|
SELECT COUNT(womens_singles) FROM table_28211988_1 WHERE season = "2000/01"
|
CREATE TABLE table_28211988_1 (womens_singles VARCHAR, season VARCHAR)
|
How many people are women's singles in the season of 2000/01?
|
SELECT mens_doubles FROM table_28211988_4 WHERE season = "1963/64"
|
CREATE TABLE table_28211988_4 (mens_doubles VARCHAR, season VARCHAR)
|
Name the winners of the mens doubles in the season of 1963/64.
|
SELECT directed_by FROM table_28212888_2 WHERE no_in_series = 116
|
CREATE TABLE table_28212888_2 (directed_by VARCHAR, no_in_series VARCHAR)
|
Who was the director of the episode with series number 116?
|
SELECT title FROM table_28212888_2 WHERE us_viewers__millions_ = "12.85"
|
CREATE TABLE table_28212888_2 (title VARCHAR, us_viewers__millions_ VARCHAR)
|
What's the title of the episode seen by 12.85 millions of people in the US?
|
SELECT COUNT(no_in_series) FROM table_28215780_4 WHERE us_viewers__millions_ = "11.86"
|
CREATE TABLE table_28215780_4 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR)
|
How many episodes had 11.86 million US viewers?
|
SELECT title FROM table_28215780_4 WHERE written_by = "Aron Eli Coleite"
|
CREATE TABLE table_28215780_4 (title VARCHAR, written_by VARCHAR)
|
What is the title(s) of episodes written by aron eli coleite?
|
SELECT original_air_date FROM table_28215780_4 WHERE written_by = "Aron Eli Coleite"
|
CREATE TABLE table_28215780_4 (original_air_date VARCHAR, written_by VARCHAR)
|
What are the original air date(s) for episodes written by aron eli coleite?
|
SELECT COUNT(producer__s_) FROM table_28232443_1 WHERE song__s_ = "Calling Out to Marlboro"
|
CREATE TABLE table_28232443_1 (producer__s_ VARCHAR, song__s_ VARCHAR)
|
how many producers are responsible for the song 'calling out to marlboro?
|
SELECT MIN(year) FROM table_28232443_1 WHERE artist = "Kid Creole and the Coconuts"
|
CREATE TABLE table_28232443_1 (year INTEGER, artist VARCHAR)
|
what was the first year that kid creole and the coconuts recorded with I Too Have Seen The Woods / Sire Records?
|
SELECT COUNT(seasons) FROM table_2822193_1 WHERE series = "Formula Holden"
|
CREATE TABLE table_2822193_1 (seasons VARCHAR, series VARCHAR)
|
How many seasons are there with Formula Holden?
|
SELECT MAX(poles) FROM table_2822193_1 WHERE races = 2
|
CREATE TABLE table_2822193_1 (poles INTEGER, races VARCHAR)
|
How many poles are there with 2 races?
|
SELECT MAX(point_finishes__non_podium_) FROM table_2822193_1 WHERE series = "V8Supercar"
|
CREATE TABLE table_2822193_1 (point_finishes__non_podium_ INTEGER, series VARCHAR)
|
What's the most amount of point finishes for v8supercar?
|
SELECT COUNT(high_rebounds) FROM table_28220778_21 WHERE game = 14
|
CREATE TABLE table_28220778_21 (high_rebounds VARCHAR, game VARCHAR)
|
How many people had high rebounds in game 14?
|
SELECT score FROM table_28220778_21 WHERE date = "January 2"
|
CREATE TABLE table_28220778_21 (score VARCHAR, date VARCHAR)
|
What is every score when the date is January 2?
|
SELECT MAX(enrollment) FROM table_28243691_1 WHERE institution = "University of North Texas"
|
CREATE TABLE table_28243691_1 (enrollment INTEGER, institution VARCHAR)
|
What was the highest number of students in attendance for the university of north texas?
|
SELECT team_nickname FROM table_28243691_1 WHERE institution = "Texas Tech University"
|
CREATE TABLE table_28243691_1 (team_nickname VARCHAR, institution VARCHAR)
|
What is the mascot for texas tech university?
|
SELECT enrollment FROM table_28243691_1 WHERE affiliation = "Private/ Disciples of Christ"
|
CREATE TABLE table_28243691_1 (enrollment VARCHAR, affiliation VARCHAR)
|
What is the total enrollment for private/ disciples of christ?
|
SELECT COUNT(team_nickname) FROM table_28243691_1 WHERE location = "College Station, Texas"
|
CREATE TABLE table_28243691_1 (team_nickname VARCHAR, location VARCHAR)
|
How many mascotts are there for college station, texas
|
SELECT MAX(enrollment) FROM table_28243691_1 WHERE founded = 1923
|
CREATE TABLE table_28243691_1 (enrollment INTEGER, founded VARCHAR)
|
List the highest number of students in attendance for the institution that started in 1923.
|
SELECT COUNT(next_in_line) FROM table_28241890_2 WHERE heir = "Archduke Karl"
|
CREATE TABLE table_28241890_2 (next_in_line VARCHAR, heir VARCHAR)
|
How many next in lines had heirs of Archduke Karl?
|
SELECT club_name FROM table_28243323_1 WHERE writer_composer = "Larry Spokes"
|
CREATE TABLE table_28243323_1 (club_name VARCHAR, writer_composer VARCHAR)
|
Name the team that has a song writer named larry spokes.
|
SELECT COUNT(name_of_team_song) FROM table_28243323_1 WHERE writer_composer = "Harry Angus"
|
CREATE TABLE table_28243323_1 (name_of_team_song VARCHAR, writer_composer VARCHAR)
|
How man teams have a writer named harry angus?
|
SELECT name_of_team_song FROM table_28243323_1 WHERE writer_composer = "Quentin Eyers and Les Kaczmarek"
|
CREATE TABLE table_28243323_1 (name_of_team_song VARCHAR, writer_composer VARCHAR)
|
Name the team anthem that was written by quentin eyers and les kaczmarek.
|
SELECT COUNT(basis_for_team_song) FROM table_28243323_1 WHERE club_name = "Fremantle"
|
CREATE TABLE table_28243323_1 (basis_for_team_song VARCHAR, club_name VARCHAR)
|
How many team songs does fremantle have?
|
SELECT basis_for_team_song FROM table_28243323_1 WHERE writer_composer = "Ken Walther"
|
CREATE TABLE table_28243323_1 (basis_for_team_song VARCHAR, writer_composer VARCHAR)
|
What is the name of the team song written by ken walther?
|
SELECT COUNT(founded) FROM table_28243691_2 WHERE team_nickname = "Comets"
|
CREATE TABLE table_28243691_2 (founded VARCHAR, team_nickname VARCHAR)
|
In how many different years was the team nicknamed Comets founded?
|
SELECT team_nickname FROM table_28243691_2 WHERE enrollment = 40747
|
CREATE TABLE table_28243691_2 (team_nickname VARCHAR, enrollment VARCHAR)
|
What's the nickname of the team with enrollment of 40747?
|
SELECT institution FROM table_28243691_2 WHERE location = "Huntsville, Texas"
|
CREATE TABLE table_28243691_2 (institution VARCHAR, location VARCHAR)
|
What school is located in Huntsville, Texas?
|
SELECT enrollment FROM table_28243691_2 WHERE team_nickname = "Comets"
|
CREATE TABLE table_28243691_2 (enrollment VARCHAR, team_nickname VARCHAR)
|
How many students are enrolled in the team nicknamed Comets?
|
SELECT COUNT(tenant) FROM table_28281704_1 WHERE country = "Russia" AND stadium = "Saransk stadium"
|
CREATE TABLE table_28281704_1 (tenant VARCHAR, country VARCHAR, stadium VARCHAR)
|
Name the number of tenants for russia at the saransk stadium
|
SELECT country FROM table_28281704_1 WHERE stadium = "Lusail National stadium"
|
CREATE TABLE table_28281704_1 (country VARCHAR, stadium VARCHAR)
|
Name the country for lusail national stadium
|
SELECT city FROM table_28281704_1 WHERE stadium = "Los Angeles stadium"
|
CREATE TABLE table_28281704_1 (city VARCHAR, stadium VARCHAR)
|
Name the city for los angeles stadium
|
SELECT stadium FROM table_28281704_1 WHERE city = "Nizhny Novgorod"
|
CREATE TABLE table_28281704_1 (stadium VARCHAR, city VARCHAR)
|
Name the stadium for nizhny novgorod
|
SELECT COUNT(country) FROM table_28281704_1 WHERE city = "Athens"
|
CREATE TABLE table_28281704_1 (country VARCHAR, city VARCHAR)
|
Name the country for athens
|
SELECT date_aired FROM table_28283535_4 WHERE episode = "1.13"
|
CREATE TABLE table_28283535_4 (date_aired VARCHAR, episode VARCHAR)
|
When did the episode 1.13 air for the first time?
|
SELECT weekly_rank FROM table_28283535_4 WHERE episode = "1.03"
|
CREATE TABLE table_28283535_4 (weekly_rank VARCHAR, episode VARCHAR)
|
What's the weekly rank of episode 1.03?
|
SELECT rating FROM table_28283535_4 WHERE episode = "1.04"
|
CREATE TABLE table_28283535_4 (rating VARCHAR, episode VARCHAR)
|
What is the rating of episode 1.04?
|
SELECT COUNT(cap_s_) FROM table_28286776_12 WHERE club_s_ = "Burnley"
|
CREATE TABLE table_28286776_12 (cap_s_ VARCHAR, club_s_ VARCHAR)
|
How many items are listed under caps when burnley is the club team?
|
SELECT club_s_ FROM table_28286776_12 WHERE goal_s_ = 10
|
CREATE TABLE table_28286776_12 (club_s_ VARCHAR, goal_s_ VARCHAR)
|
What club did the championship player come from who had 10 goals?
|
SELECT MIN(goal_s_) FROM table_28286776_12 WHERE club_s_ = "Ipswich Town"
|
CREATE TABLE table_28286776_12 (goal_s_ INTEGER, club_s_ VARCHAR)
|
How many goals did the player from Ipswich town score?
|
SELECT player FROM table_28286776_50 WHERE cap_s_ = 16
|
CREATE TABLE table_28286776_50 (player VARCHAR, cap_s_ VARCHAR)
|
When 16 is the cap who is the player?
|
SELECT club_s_ FROM table_28286776_50 WHERE international_debut = "2010 v Australia"
|
CREATE TABLE table_28286776_50 (club_s_ VARCHAR, international_debut VARCHAR)
|
When 2010 v australia is the interantional debut what is the club?
|
SELECT club_s_ FROM table_28286776_50 WHERE player = "Winston Reid Category:Articles with hCards"
|
CREATE TABLE table_28286776_50 (club_s_ VARCHAR, player VARCHAR)
|
When winston reid category:articles with hcards is the player what is the club?
|
SELECT COUNT(cap_s_) FROM table_28286776_50 WHERE goal_s_ = 1 AND player = "Tommy Smith Category:Articles with hCards"
|
CREATE TABLE table_28286776_50 (cap_s_ VARCHAR, goal_s_ VARCHAR, player VARCHAR)
|
When tommy smith category:articles with hcards is the player and 1 is the goal how many cap(s) are there?
|
SELECT international_debut FROM table_28286776_50 WHERE player = "Rory Fallon Category:Articles with hCards"
|
CREATE TABLE table_28286776_50 (international_debut VARCHAR, player VARCHAR)
|
When rory fallon category:articles with hcards is the player when is the international debut?
|
SELECT title FROM table_2828803_1 WHERE written_by = "Nick Thiel"
|
CREATE TABLE table_2828803_1 (title VARCHAR, written_by VARCHAR)
|
What is th title of the episode written by Nick Thiel?
|
SELECT us_viewers__millions_ FROM table_2828803_1 WHERE production_code = "2T7004"
|
CREATE TABLE table_2828803_1 (us_viewers__millions_ VARCHAR, production_code VARCHAR)
|
How many million u.s. viewers watched the episode with a production code of 2t7004?
|
SELECT title FROM table_2828803_1 WHERE directed_by = "Dennis Smith"
|
CREATE TABLE table_2828803_1 (title VARCHAR, directed_by VARCHAR)
|
What is the name of the episode that was directed by Dennis Smith?
|
SELECT COUNT(site) FROM table_28298589_2 WHERE time = "3:30pm" AND visiting_team = "Coastal Carolina"
|
CREATE TABLE table_28298589_2 (site VARCHAR, time VARCHAR, visiting_team VARCHAR)
|
How many site entries are there at 3:30pm and the visiting team is coastal carolina?
|
SELECT result FROM table_28298589_2 WHERE visiting_team = "Syracuse"
|
CREATE TABLE table_28298589_2 (result VARCHAR, visiting_team VARCHAR)
|
What is the result when the visiting team is syracuse?
|
SELECT MAX(stage) FROM table_28298471_14 WHERE winner = "Svein Tuft"
|
CREATE TABLE table_28298471_14 (stage INTEGER, winner VARCHAR)
|
When svein tuft is the winner what is the highest stage?
|
SELECT COUNT(stage) FROM table_28298471_14 WHERE winner = "Svein Tuft"
|
CREATE TABLE table_28298471_14 (stage VARCHAR, winner VARCHAR)
|
when svein tuft is the winner how many stages are there?
|
SELECT team_classification FROM table_28298471_14 WHERE winner = "Hayden Roulston"
|
CREATE TABLE table_28298471_14 (team_classification VARCHAR, winner VARCHAR)
|
when hayden roulston is the winner what is the team classification?
|
SELECT stage FROM table_28298471_14 WHERE mountains_classification = "Michael Reihs"
|
CREATE TABLE table_28298471_14 (stage VARCHAR, mountains_classification VARCHAR)
|
When michael reihs is the mountains classification what is the stage?
|
SELECT team_classification FROM table_28298471_14 WHERE points_classification = "Michael Van Stayen"
|
CREATE TABLE table_28298471_14 (team_classification VARCHAR, points_classification VARCHAR)
|
When michael van stayen is the points classification what is the team classification?
|
SELECT stage FROM table_28298471_14 WHERE winner = "Hayden Roulston"
|
CREATE TABLE table_28298471_14 (stage VARCHAR, winner VARCHAR)
|
When hayden roulston is the winner what is the stage?
|
SELECT date FROM table_28298589_4 WHERE visiting_team = "Texas Southern"
|
CREATE TABLE table_28298589_4 (date VARCHAR, visiting_team VARCHAR)
|
What date was the game where Texas Southern was the visiting team?
|
SELECT COUNT(broadcast) FROM table_28298589_4 WHERE home_team = "Connecticut"
|
CREATE TABLE table_28298589_4 (broadcast VARCHAR, home_team VARCHAR)
|
How many Connecticut home games were broadcast?
|
SELECT site FROM table_28298589_4 WHERE home_team = "Pittsburgh"
|
CREATE TABLE table_28298589_4 (site VARCHAR, home_team VARCHAR)
|
In what facility was Pittsburgh's home game played?
|
SELECT result FROM table_28298589_4 WHERE home_team = "Washington"
|
CREATE TABLE table_28298589_4 (result VARCHAR, home_team VARCHAR)
|
What was the final score of Washington's home game?
|
SELECT location FROM table_283203_1 WHERE capacity = "10,517 5,006"
|
CREATE TABLE table_283203_1 (location VARCHAR, capacity VARCHAR)
|
Where is the team that has a stadium capable of a capacity of 10,517 5,006 located?
|
SELECT home_venue FROM table_283203_1 WHERE founded = 1993
|
CREATE TABLE table_283203_1 (home_venue VARCHAR, founded VARCHAR)
|
Where is the home venue of the team founded in 1993?
|
SELECT years_active FROM table_283203_1 WHERE home_venue = "North Shore Events Centre Vector Arena"
|
CREATE TABLE table_283203_1 (years_active VARCHAR, home_venue VARCHAR)
|
How long has the team who owns North Shore Events Centre Vector Arena been active?
|
SELECT capacity FROM table_283203_1 WHERE club = "New Zealand Breakers"
|
CREATE TABLE table_283203_1 (capacity VARCHAR, club VARCHAR)
|
What is the capacity for the Home Venue of the New Zealand Breakers club?
|
SELECT MIN(no_in_season) FROM table_28334498_3 WHERE directed_by = "Jeff Melman" AND us_viewers__millions_ = "1.21"
|
CREATE TABLE table_28334498_3 (no_in_season INTEGER, directed_by VARCHAR, us_viewers__millions_ VARCHAR)
|
How many episodes were directed by Jeff Melman and 1.21million viewers?
|
SELECT original_air_date FROM table_28334498_3 WHERE us_viewers__millions_ = "1.01"
|
CREATE TABLE table_28334498_3 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
|
What air date had 1.01 million U.S. viewers?
|
SELECT aircraft_type FROM table_28342423_1 WHERE geschwader_base = "Furstenau/Vorden"
|
CREATE TABLE table_28342423_1 (aircraft_type VARCHAR, geschwader_base VARCHAR)
|
Name the aircraft type for furstenau/vorden
|
SELECT parent_unit FROM table_28342423_1 WHERE commanding_officer = "Ludwig Franzisket"
|
CREATE TABLE table_28342423_1 (parent_unit VARCHAR, commanding_officer VARCHAR)
|
Name the parent unit for ludwig franzisket
|
SELECT aircraft_type FROM table_28342423_1 WHERE parent_unit = "Jagdgeschwader 6"
|
CREATE TABLE table_28342423_1 (aircraft_type VARCHAR, parent_unit VARCHAR)
|
Name the aircraft type for jagdgeschwader 6
|
SELECT aircraft_type FROM table_28342423_1 WHERE parent_unit = "Jagdgeschwader 26"
|
CREATE TABLE table_28342423_1 (aircraft_type VARCHAR, parent_unit VARCHAR)
|
Name the aircraft type for jagdgeschwader 26
|
SELECT parent_unit FROM table_28342423_1 WHERE commanding_officer = "Josef Priller"
|
CREATE TABLE table_28342423_1 (parent_unit VARCHAR, commanding_officer VARCHAR)
|
Name the parent unit for josef priller
|
SELECT production_code FROM table_28348757_3 WHERE _number = 8
|
CREATE TABLE table_28348757_3 (production_code VARCHAR, _number VARCHAR)
|
Name the production code for number 8
|
SELECT MIN(no) FROM table_28348757_3 WHERE production_code = "XLE02007"
|
CREATE TABLE table_28348757_3 (no INTEGER, production_code VARCHAR)
|
Name the least number for xle02007
|
SELECT written_by FROM table_28348757_6 WHERE production_code = "XLE05012"
|
CREATE TABLE table_28348757_6 (written_by VARCHAR, production_code VARCHAR)
|
Who wrote the episode with the code xle05012?
|
SELECT _number FROM table_28348757_6 WHERE us_viewers__million_ = "0.79"
|
CREATE TABLE table_28348757_6 (_number VARCHAR, us_viewers__million_ VARCHAR)
|
what are the numbers of episodes that had 0.79 million US views?
|
SELECT female_saber FROM table_28372291_1 WHERE average_fencers_rank = "3.5"
|
CREATE TABLE table_28372291_1 (female_saber VARCHAR, average_fencers_rank VARCHAR)
|
What female fenced with a saber on the team that had an average fencer rank of 3.5?
|
SELECT team FROM table_28372291_1 WHERE average_fencers_rank = "1.33"
|
CREATE TABLE table_28372291_1 (team VARCHAR, average_fencers_rank VARCHAR)
|
What team had an average fencer rank of 1.33?
|
SELECT corporate_name FROM table_28367242_1 WHERE incorporation_date__city_ = "October 15, 1955"
|
CREATE TABLE table_28367242_1 (corporate_name VARCHAR, incorporation_date__city_ VARCHAR)
|
What is the name of the corporation that incorporated on october 15, 1955?
|
SELECT area__km²_ FROM table_28367242_1 WHERE corporate_name = "Powell River, The Corporation of the City of"
|
CREATE TABLE table_28367242_1 (area__km²_ VARCHAR, corporate_name VARCHAR)
|
What is the area of the corporation named the powell river, the corporation of the city of?
|
SELECT COUNT(area__km²_) FROM table_28367242_1 WHERE name = "Armstrong"
|
CREATE TABLE table_28367242_1 (area__km²_ VARCHAR, name VARCHAR)
|
How many Area's are there for Armstrong?
|
SELECT name FROM table_28367242_1 WHERE incorporation_date__city_ = "July 16, 1860"
|
CREATE TABLE table_28367242_1 (name VARCHAR, incorporation_date__city_ VARCHAR)
|
What is the name of the city which incorporated on july 16, 1860?
|
SELECT corporate_name FROM table_28367242_1 WHERE area__km²_ = "15.63"
|
CREATE TABLE table_28367242_1 (corporate_name VARCHAR, area__km²_ VARCHAR)
|
What is the name of the corporation with an area of 15.63 km?
|
SELECT COUNT(area__km²_) FROM table_28367242_1 WHERE corporate_name = "Fort St. John, City of"
|
CREATE TABLE table_28367242_1 (area__km²_ VARCHAR, corporate_name VARCHAR)
|
How many areas are there for the corporation named fort st. john, city of?
|
SELECT emma_bunton FROM table_28352386_1 WHERE total = "22"
|
CREATE TABLE table_28352386_1 (emma_bunton VARCHAR, total VARCHAR)
|
What was Emma Bunton's score for the performance with a total score of 22?
|
SELECT total FROM table_28352386_1 WHERE guest_judge = "10"
|
CREATE TABLE table_28352386_1 (total VARCHAR, guest_judge VARCHAR)
|
What was the total score when the guest judge gave a score of 10?
|
SELECT COUNT(no) FROM table_28358487_3 WHERE production_code = 101
|
CREATE TABLE table_28358487_3 (no VARCHAR, production_code VARCHAR)
|
what is the number of the episode in the season whose production code is 101?
|
SELECT conference FROM table_28365816_2 WHERE tournament_winner = "North Carolina"
|
CREATE TABLE table_28365816_2 (conference VARCHAR, tournament_winner VARCHAR)
|
During what conference is North Carolina listed as the tournament winner?
|
Subsets and Splits
SQL Console for knowrohit07/know_sql
Finds questions in the dataset that contain the word 'god', providing a basic filtered view without much analytical insight.