combined_text
stringlengths 106
1.05k
|
---|
###question:Which competition did the toronto city saints win?###answer:SELECT competition FROM table_25735_1 WHERE winner = "Toronto City Saints"###context:CREATE TABLE table_25735_1 (competition VARCHAR, winner VARCHAR) |
###question:What was the number of teams in the competition that wynnum manly seagulls won?###answer:SELECT MIN(teams) FROM table_25735_1 WHERE winner = "Wynnum Manly Seagulls"###context:CREATE TABLE table_25735_1 (teams INTEGER, winner VARCHAR) |
###question:How many cook island league competitions were there?###answer:SELECT COUNT(latest_year) FROM table_25735_1 WHERE competition = "Cook Island League"###context:CREATE TABLE table_25735_1 (latest_year VARCHAR, competition VARCHAR) |
###question:How many positions are shown for the 2010 season?###answer:SELECT COUNT(position) FROM table_25740774_1 WHERE season = 2010###context:CREATE TABLE table_25740774_1 (position VARCHAR, season VARCHAR) |
###question:What is the season with podiums more than 2.0?###answer:SELECT MAX(season) FROM table_25740774_1 WHERE podiums > 2.0###context:CREATE TABLE table_25740774_1 (season INTEGER, podiums INTEGER) |
###question:Which series is in position nc?###answer:SELECT series FROM table_25740774_1 WHERE position = "NC"###context:CREATE TABLE table_25740774_1 (series VARCHAR, position VARCHAR) |
###question:What are the f/laps for race 14?###answer:SELECT f_laps FROM table_25740774_1 WHERE races = 14###context:CREATE TABLE table_25740774_1 (f_laps VARCHAR, races VARCHAR) |
###question:How many flaps are there for the team march 3 racing (1-4) top speed racing team (5-12)?###answer:SELECT COUNT(f_laps) FROM table_25740774_1 WHERE team = "March 3 Racing (1-4) Top Speed Racing team (5-12)"###context:CREATE TABLE table_25740774_1 (f_laps VARCHAR, team VARCHAR) |
###question:If the player is Maake Kemoeatu, what is the int maximum?###answer:SELECT MAX(int) FROM table_25773915_11 WHERE player = "Maake Kemoeatu"###context:CREATE TABLE table_25773915_11 (int INTEGER, player VARCHAR) |
###question:What is the ydi minimum?###answer:SELECT MIN(ydl) FROM table_25773915_11###context:CREATE TABLE table_25773915_11 (ydl INTEGER) |
###question:What is the fumrec minimum?###answer:SELECT MIN(fumrec) FROM table_25773915_11###context:CREATE TABLE table_25773915_11 (fumrec INTEGER) |
###question:If the player is Reed Doughty, what isthe fumrec?###answer:SELECT fumrec FROM table_25773915_11 WHERE player = "Reed Doughty"###context:CREATE TABLE table_25773915_11 (fumrec VARCHAR, player VARCHAR) |
###question:What stadium(sO does san juan jabloteh play in?###answer:SELECT stadium FROM table_25794138_1 WHERE team = "San Juan Jabloteh"###context:CREATE TABLE table_25794138_1 (stadium VARCHAR, team VARCHAR) |
###question:Wh owas the captian of the north east stars?###answer:SELECT captain FROM table_25794138_1 WHERE team = "North East Stars"###context:CREATE TABLE table_25794138_1 (captain VARCHAR, team VARCHAR) |
###question:What was the maximum capacity of larry gomes stadium?###answer:SELECT MAX(capacity) FROM table_25794138_1 WHERE stadium = "Larry Gomes stadium"###context:CREATE TABLE table_25794138_1 (capacity INTEGER, stadium VARCHAR) |
###question:What is the lowest season #?###answer:SELECT MIN(season__number) FROM table_25800134_11###context:CREATE TABLE table_25800134_11 (season__number INTEGER) |
###question:Who directed series # 422?###answer:SELECT director FROM table_25800134_11 WHERE series__number = 422###context:CREATE TABLE table_25800134_11 (director VARCHAR, series__number VARCHAR) |
###question:How many directors were there for series # 431?###answer:SELECT COUNT(director) FROM table_25800134_11 WHERE series__number = 431###context:CREATE TABLE table_25800134_11 (director VARCHAR, series__number VARCHAR) |
###question:What episode number of the series aired on February 26, 1968?###answer:SELECT series__number FROM table_25800134_12 WHERE airdate = "February 26, 1968"###context:CREATE TABLE table_25800134_12 (series__number VARCHAR, airdate VARCHAR) |
###question:How many people directed the episode that aired on February 5, 1968?###answer:SELECT COUNT(director) FROM table_25800134_12 WHERE airdate = "February 5, 1968"###context:CREATE TABLE table_25800134_12 (director VARCHAR, airdate VARCHAR) |
###question:Who directed the episode that aired on September 25, 1967?###answer:SELECT director FROM table_25800134_12 WHERE airdate = "September 25, 1967"###context:CREATE TABLE table_25800134_12 (director VARCHAR, airdate VARCHAR) |
###question:Who directed the episode that aired on February 19, 1968?###answer:SELECT director FROM table_25800134_12 WHERE airdate = "February 19, 1968"###context:CREATE TABLE table_25800134_12 (director VARCHAR, airdate VARCHAR) |
###question:How many episode titles aired on September 25, 1967?###answer:SELECT COUNT(title) FROM table_25800134_12 WHERE airdate = "September 25, 1967"###context:CREATE TABLE table_25800134_12 (title VARCHAR, airdate VARCHAR) |
###question:name the most series number for season 22###answer:SELECT MAX(series__number) FROM table_25800134_18 WHERE season__number = 22###context:CREATE TABLE table_25800134_18 (series__number INTEGER, season__number VARCHAR) |
###question:What is the earliest stage where mountains classifications was awarded to Peter Stetina? ###answer:SELECT MIN(stage) FROM table_25802689_14 WHERE mountains_classification = "Peter Stetina"###context:CREATE TABLE table_25802689_14 (stage INTEGER, mountains_classification VARCHAR) |
###question:what is the title where the airdate is december 5, 1964?###answer:SELECT title FROM table_25800134_9 WHERE airdate = "December 5, 1964"###context:CREATE TABLE table_25800134_9 (title VARCHAR, airdate VARCHAR) |
###question:what is the number of series where the airdate is december 26, 1964?###answer:SELECT COUNT(series__number) FROM table_25800134_9 WHERE airdate = "December 26, 1964"###context:CREATE TABLE table_25800134_9 (series__number VARCHAR, airdate VARCHAR) |
###question:Who was the actor/actress with a first appearance is 3 june 2007?###answer:SELECT actor_actress FROM table_25831483_1 WHERE first_appearance = "3 June 2007"###context:CREATE TABLE table_25831483_1 (actor_actress VARCHAR, first_appearance VARCHAR) |
###question:Who was the actor/actress with a last appearance of 1 january 2010 and total is 20 and character is vanessa 'nessa' jenkins?###answer:SELECT actor_actress FROM table_25831483_1 WHERE last_appearance = "1 January 2010" AND total = 20 AND character = "Vanessa 'Nessa' Jenkins"###context:CREATE TABLE table_25831483_1 (actor_actress VARCHAR, character VARCHAR, last_appearance VARCHAR, total VARCHAR) |
###question:What is the highest total number?###answer:SELECT MAX(total) FROM table_25831483_1###context:CREATE TABLE table_25831483_1 (total INTEGER) |
###question:How many characters where actor/actress is larry lamb?###answer:SELECT COUNT(character) FROM table_25831483_1 WHERE actor_actress = "Larry Lamb"###context:CREATE TABLE table_25831483_1 (character VARCHAR, actor_actress VARCHAR) |
###question:What was the last appearance of actor/actress is pam ferris?###answer:SELECT last_appearance FROM table_25831483_1 WHERE actor_actress = "Pam Ferris"###context:CREATE TABLE table_25831483_1 (last_appearance VARCHAR, actor_actress VARCHAR) |
###question:How many total are there when actor/actress is pam ferris?###answer:SELECT total FROM table_25831483_1 WHERE actor_actress = "Pam Ferris"###context:CREATE TABLE table_25831483_1 (total VARCHAR, actor_actress VARCHAR) |
###question:What is the lowest GDP (ppp) per capita?###answer:SELECT MIN(gdp__ppp__per_capita) FROM table_25869317_1###context:CREATE TABLE table_25869317_1 (gdp__ppp__per_capita INTEGER) |
###question:Who directed the episode that had 12.88 million viewers?###answer:SELECT directed_by FROM table_25923164_1 WHERE us_viewers__million_ = "12.88"###context:CREATE TABLE table_25923164_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR) |
###question:What was the original air date of the episode written by amanda segel?###answer:SELECT original_air_date FROM table_25923164_1 WHERE written_by = "Amanda Segel"###context:CREATE TABLE table_25923164_1 (original_air_date VARCHAR, written_by VARCHAR) |
###question:What was the original air date of the episode directed by gloria muzio?###answer:SELECT original_air_date FROM table_25923164_1 WHERE directed_by = "Gloria Muzio"###context:CREATE TABLE table_25923164_1 (original_air_date VARCHAR, directed_by VARCHAR) |
###question:What was the original air date of the episode directed by frederick e. o. toye?###answer:SELECT original_air_date FROM table_25923164_1 WHERE directed_by = "Frederick E. O. Toye"###context:CREATE TABLE table_25923164_1 (original_air_date VARCHAR, directed_by VARCHAR) |
###question:What is every value of Top 10 when team is #10 Phil Parsons Racing and average finish is 22.9?###answer:SELECT top_10 FROM table_2597876_2 WHERE team_s_ = "#10 Phil Parsons Racing" AND avg_finish = "22.9"###context:CREATE TABLE table_2597876_2 (top_10 VARCHAR, team_s_ VARCHAR, avg_finish VARCHAR) |
###question:What is every year with average start of 27.2?###answer:SELECT year FROM table_2597876_2 WHERE avg_start = "27.2"###context:CREATE TABLE table_2597876_2 (year VARCHAR, avg_start VARCHAR) |
###question:How many values of top 10 for 5th position?###answer:SELECT COUNT(top_10) FROM table_2597876_2 WHERE position = "5th"###context:CREATE TABLE table_2597876_2 (top_10 VARCHAR, position VARCHAR) |
###question:What is every value for top 5 if average start is 21.9?###answer:SELECT top_5 FROM table_2597876_2 WHERE avg_start = "21.9"###context:CREATE TABLE table_2597876_2 (top_5 VARCHAR, avg_start VARCHAR) |
###question:How many values for winnings correspond to average start of 19.0?###answer:SELECT COUNT(winnings) FROM table_2597876_2 WHERE avg_start = "19.0"###context:CREATE TABLE table_2597876_2 (winnings VARCHAR, avg_start VARCHAR) |
###question:What is the name of the school in Lucas ? ###answer:SELECT location FROM table_25987797_1 WHERE school = "Lucas"###context:CREATE TABLE table_25987797_1 (location VARCHAR, school VARCHAR) |
###question:What was the pick number for Andrew Quarless? ###answer:SELECT MAX(pick__number) FROM table_26077092_7 WHERE player = "Andrew Quarless"###context:CREATE TABLE table_26077092_7 (pick__number INTEGER, player VARCHAR) |
###question:How many players are from Purdue? ###answer:SELECT COUNT(player) FROM table_26077092_7 WHERE college = "Purdue"###context:CREATE TABLE table_26077092_7 (player VARCHAR, college VARCHAR) |
###question:who are all the players when season mvp is less than 1.0 and second team is less than 1.0###answer:SELECT player FROM table_26130295_3 WHERE season_mvp < 1.0 AND second_team < 1.0###context:CREATE TABLE table_26130295_3 (player VARCHAR, season_mvp VARCHAR, second_team VARCHAR) |
###question:when number of selection is 2 and first team is 1 who are all the player###answer:SELECT player FROM table_26130295_3 WHERE first_team = 1 AND number_of_selections = 2###context:CREATE TABLE table_26130295_3 (player VARCHAR, first_team VARCHAR, number_of_selections VARCHAR) |
###question:what would be final four mvp maximum when first team is 1###answer:SELECT MAX(final_four_mvp) FROM table_26130295_3 WHERE first_team = 1###context:CREATE TABLE table_26130295_3 (final_four_mvp INTEGER, first_team VARCHAR) |
###question:when season mvp is larger than 1.0 what is the maximum number of selection###answer:SELECT MAX(number_of_selections) FROM table_26130295_3 WHERE season_mvp > 1.0###context:CREATE TABLE table_26130295_3 (number_of_selections INTEGER, season_mvp INTEGER) |
###question:who is first team when dimitris diamantidis play.###answer:SELECT COUNT(first_team) FROM table_26130295_3 WHERE player = "Dimitris Diamantidis"###context:CREATE TABLE table_26130295_3 (first_team VARCHAR, player VARCHAR) |
###question:What is the earliest term limit for the senator who resides in Coshocton? ###answer:SELECT MIN(term_limited) FROM table_26129220_2 WHERE residence = "Coshocton"###context:CREATE TABLE table_26129220_2 (term_limited INTEGER, residence VARCHAR) |
###question:What is the party for district 27? ###answer:SELECT party FROM table_26129220_2 WHERE district = 27###context:CREATE TABLE table_26129220_2 (party VARCHAR, district VARCHAR) |
###question:How many party classifications are there for the senator from Canton? ###answer:SELECT party FROM table_26129220_2 WHERE residence = "Canton"###context:CREATE TABLE table_26129220_2 (party VARCHAR, residence VARCHAR) |
###question:What is the party affiliation for Senator David Goodman? ###answer:SELECT party FROM table_26129220_2 WHERE senator = "David Goodman"###context:CREATE TABLE table_26129220_2 (party VARCHAR, senator VARCHAR) |
###question:What is the term limit for Senator Tom Niehaus? ###answer:SELECT MIN(term_limited) FROM table_26129220_2 WHERE senator = "Tom Niehaus"###context:CREATE TABLE table_26129220_2 (term_limited INTEGER, senator VARCHAR) |
###question:What is the party affiliation for senator mark Wagoner? ###answer:SELECT party FROM table_26129220_2 WHERE senator = "Mark Wagoner"###context:CREATE TABLE table_26129220_2 (party VARCHAR, senator VARCHAR) |
###question:If the residence is Chagrin falls, who is the representative?###answer:SELECT representative FROM table_26131768_4 WHERE residence = "Chagrin Falls"###context:CREATE TABLE table_26131768_4 (representative VARCHAR, residence VARCHAR) |
###question:If first elected on 2003 (appt.), when was the term limited?###answer:SELECT MIN(term_limited) FROM table_26131768_4 WHERE first_elected = "2003 (Appt.)"###context:CREATE TABLE table_26131768_4 (term_limited INTEGER, first_elected VARCHAR) |
###question:How many times was Scott Oelslager a representative?###answer:SELECT COUNT(residence) FROM table_26131768_4 WHERE representative = "Scott Oelslager"###context:CREATE TABLE table_26131768_4 (residence VARCHAR, representative VARCHAR) |
###question:In which district is the residence Dublin?###answer:SELECT district FROM table_26131768_4 WHERE residence = "Dublin"###context:CREATE TABLE table_26131768_4 (district VARCHAR, residence VARCHAR) |
###question:If the representative is Dave Hall, when was the term limited?###answer:SELECT term_limited FROM table_26131768_4 WHERE representative = "Dave Hall"###context:CREATE TABLE table_26131768_4 (term_limited VARCHAR, representative VARCHAR) |
###question:If the Representative is Barbara sears, what is the district number?###answer:SELECT MAX(district) FROM table_26131768_4 WHERE representative = "Barbara Sears"###context:CREATE TABLE table_26131768_4 (district INTEGER, representative VARCHAR) |
###question:What is the original airdate of the episode that had 8.23 million viewers?###answer:SELECT original_airdate FROM table_26139378_1 WHERE viewers__in_millions_ = "8.23"###context:CREATE TABLE table_26139378_1 (original_airdate VARCHAR, viewers__in_millions_ VARCHAR) |
###question:How many millions of viewers did Episode number 16 have?###answer:SELECT viewers__in_millions_ FROM table_26139378_1 WHERE episode__number = 16###context:CREATE TABLE table_26139378_1 (viewers__in_millions_ VARCHAR, episode__number VARCHAR) |
###question:Name the vessel type for beluga shipping###answer:SELECT vessel_type FROM table_26168687_5 WHERE vessel_operator = "Beluga Shipping"###context:CREATE TABLE table_26168687_5 (vessel_type VARCHAR, vessel_operator VARCHAR) |
###question:Name the vessel type for dof subsea###answer:SELECT vessel_type FROM table_26168687_5 WHERE vessel_operator = "DOF Subsea"###context:CREATE TABLE table_26168687_5 (vessel_type VARCHAR, vessel_operator VARCHAR) |
###question:Name the most number in season ###answer:SELECT MIN(no_in_season) FROM table_26168687_5###context:CREATE TABLE table_26168687_5 (no_in_season INTEGER) |
###question:Name the narraed by for beluga shipping###answer:SELECT narrated_by FROM table_26168687_5 WHERE vessel_operator = "Beluga Shipping"###context:CREATE TABLE table_26168687_5 (narrated_by VARCHAR, vessel_operator VARCHAR) |
###question:Name the number of season for beluga shipping###answer:SELECT COUNT(no_in_season) FROM table_26168687_5 WHERE vessel_operator = "Beluga Shipping"###context:CREATE TABLE table_26168687_5 (no_in_season VARCHAR, vessel_operator VARCHAR) |
###question:Name the least number in series for james quinn###answer:SELECT MIN(no_in_series) FROM table_2618102_1 WHERE directed_by = "James Quinn"###context:CREATE TABLE table_2618102_1 (no_in_series INTEGER, directed_by VARCHAR) |
###question:Name the least number in season for brad markowitz, william n. fordes & renΓ© balcer###answer:SELECT MIN(no_in_season) FROM table_2618102_1 WHERE written_by = "Brad Markowitz, William N. Fordes & RenΓ© Balcer"###context:CREATE TABLE table_2618102_1 (no_in_season INTEGER, written_by VARCHAR) |
###question:What institution is located in St. Peter? ###answer:SELECT institution FROM table_261913_1 WHERE location__all_in_minnesota_ = "St. Peter"###context:CREATE TABLE table_261913_1 (institution VARCHAR, location__all_in_minnesota_ VARCHAR) |
###question:What is the enrollment for Augsburg college? ###answer:SELECT MIN(enrollment) FROM table_261913_1 WHERE institution = "Augsburg College"###context:CREATE TABLE table_261913_1 (enrollment INTEGER, institution VARCHAR) |
###question:What was the earliest date an institution was founded that joined in 1977? ###answer:SELECT MIN(founded) FROM table_261913_1 WHERE joined = "1977"###context:CREATE TABLE table_261913_1 (founded INTEGER, joined VARCHAR) |
###question:How many different types are allocated to the institution in Bridgewater, Massachusetts? ###answer:SELECT COUNT(type) FROM table_261927_2 WHERE location = "Bridgewater, Massachusetts"###context:CREATE TABLE table_261927_2 (type VARCHAR, location VARCHAR) |
###question:What is the enrollment for the institution in Westfield, Massachusetts? ###answer:SELECT enrollment FROM table_261927_2 WHERE location = "Westfield, Massachusetts"###context:CREATE TABLE table_261927_2 (enrollment VARCHAR, location VARCHAR) |
###question:Which institutions primary conference is merged into the university of Massachusetts boston? ###answer:SELECT institution FROM table_261927_2 WHERE primary_conference = "Merged into the University of Massachusetts Boston"###context:CREATE TABLE table_261927_2 (institution VARCHAR, primary_conference VARCHAR) |
###question:What is the football conference for Henniker, New Hampshire>?###answer:SELECT football_conference FROM table_261927_2 WHERE location = "Henniker, New Hampshire"###context:CREATE TABLE table_261927_2 (football_conference VARCHAR, location VARCHAR) |
###question:What date did the institution that left in 2013 and that is nicknamed Corsairs, join? ###answer:SELECT joined FROM table_261927_2 WHERE left = "2013" AND nickname = "Corsairs"###context:CREATE TABLE table_261927_2 (joined VARCHAR, left VARCHAR, nickname VARCHAR) |
###question:Who wrote title number 38?###answer:SELECT written_by FROM table_26199484_1 WHERE no = 38###context:CREATE TABLE table_26199484_1 (written_by VARCHAR, no VARCHAR) |
###question:Which match was the final score 7β6 (7β0) , 6β7 (5β7) , 4β6, 6β2, 6β7 (5β7)?###answer:SELECT no FROM table_26202812_7 WHERE score_in_the_final = "7β6 (7β0) , 6β7 (5β7) , 4β6, 6β2, 6β7 (5β7)"###context:CREATE TABLE table_26202812_7 (no VARCHAR, score_in_the_final VARCHAR) |
###question:What is the lowest ends won when w is 8?###answer:SELECT MIN(Ends) AS won FROM table_26209210_2 WHERE w = 8###context:CREATE TABLE table_26209210_2 (Ends INTEGER, w VARCHAR) |
###question:If the qatari male is 1104, what is the grand total?###answer:SELECT MAX(grand_total) FROM table_26214389_3 WHERE qatari_male = 1104###context:CREATE TABLE table_26214389_3 (grand_total INTEGER, qatari_male VARCHAR) |
###question:If the grand total is 5814, what is the total non qatar?###answer:SELECT total_non_qatar FROM table_26214389_3 WHERE grand_total = 5814###context:CREATE TABLE table_26214389_3 (total_non_qatar VARCHAR, grand_total VARCHAR) |
###question:If the year is 2001, what are the non qatari female?###answer:SELECT Non AS qatari_female FROM table_26214389_3 WHERE year = 2001###context:CREATE TABLE table_26214389_3 (Non VARCHAR, year VARCHAR) |
###question:If the qatari female is 918, what is the total number of females?###answer:SELECT total_female FROM table_26214389_3 WHERE qatari_female = 918###context:CREATE TABLE table_26214389_3 (total_female VARCHAR, qatari_female VARCHAR) |
###question:How many outcomes occur for score in the final of 6β3, 6β4, 7β6 (13β11)?###answer:SELECT COUNT(outcome) FROM table_26202940_6 WHERE score_in_the_final = "6β3, 6β4, 7β6 (13β11)"###context:CREATE TABLE table_26202940_6 (outcome VARCHAR, score_in_the_final VARCHAR) |
###question:How many outcomes occur on the date of January 31, 2010?###answer:SELECT COUNT(outcome) FROM table_26202940_6 WHERE date = "January 31, 2010"###context:CREATE TABLE table_26202940_6 (outcome VARCHAR, date VARCHAR) |
###question:How many numbers correspond to the score in the final of 6β3, 6β4, 7β6 (13β11)?###answer:SELECT COUNT(no) FROM table_26202940_6 WHERE score_in_the_final = "6β3, 6β4, 7β6 (13β11)"###context:CREATE TABLE table_26202940_6 (no VARCHAR, score_in_the_final VARCHAR) |
###question:How many championships are there when there are 6 points###answer:SELECT series FROM table_26223231_1 WHERE points = "6"###context:CREATE TABLE table_26223231_1 (series VARCHAR, points VARCHAR) |
###question:When there are 2 wins, how many poles are?###answer:SELECT poles FROM table_26223231_1 WHERE wins = 2###context:CREATE TABLE table_26223231_1 (poles VARCHAR, wins VARCHAR) |
###question:What is the production code for episode #78?###answer:SELECT prod_code FROM table_2623498_5 WHERE episode__number = "78"###context:CREATE TABLE table_2623498_5 (prod_code VARCHAR, episode__number VARCHAR) |
###question:What is the number of titles written by Charleen Easton?###answer:SELECT COUNT(title) FROM table_2623498_5 WHERE written_by = "Charleen Easton"###context:CREATE TABLE table_2623498_5 (title VARCHAR, written_by VARCHAR) |
###question:What is the number of production codes for episode #73?###answer:SELECT COUNT(prod_code) FROM table_2623498_5 WHERE episode__number = "73"###context:CREATE TABLE table_2623498_5 (prod_code VARCHAR, episode__number VARCHAR) |
###question:where is Fisk University located? ###answer:SELECT location FROM table_262481_2 WHERE institution = "Fisk University"###context:CREATE TABLE table_262481_2 (location VARCHAR, institution VARCHAR) |
###question:What is the nickname of the institution that was founded in 1857? ###answer:SELECT nickname FROM table_262481_2 WHERE founded = 1857###context:CREATE TABLE table_262481_2 (nickname VARCHAR, founded VARCHAR) |
###question:What is the enrollment for the institution nicknamed the panthers that left in 2012? ###answer:SELECT enrollment FROM table_262481_2 WHERE left = "2012" AND nickname = "Panthers"###context:CREATE TABLE table_262481_2 (enrollment VARCHAR, left VARCHAR, nickname VARCHAR) |
###question:What is the institution whose current conference is gcac (naia)? ###answer:SELECT institution FROM table_262481_2 WHERE current_conference = "GCAC (NAIA)"###context:CREATE TABLE table_262481_2 (institution VARCHAR, current_conference VARCHAR) |
###question:How many original artists were there for the Group Performance?###answer:SELECT COUNT(original_artist) FROM table_26250176_1 WHERE theme = "Group Performance"###context:CREATE TABLE table_26250176_1 (original_artist VARCHAR, theme VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.