instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: What is every institution with the nickname of Quakers?
The relevant table was constructed using the following SQL : CREATE TABLE table_261954_1 (institution VARCHAR, nickname VARCHAR)
SELECT institution FROM table_261954_1 WHERE nickname = "Quakers"
Write a SQL query that answers the following question: What is the least value of joined?
The relevant table was constructed using the following SQL : CREATE TABLE table_261954_1 (joined INTEGER)
SELECT MIN(joined) FROM table_261954_1
Write a SQL query that answers the following question: What is every institution with the nickname of Wildcats?
The relevant table was constructed using the following SQL : CREATE TABLE table_261954_1 (institution VARCHAR, nickname VARCHAR)
SELECT institution FROM table_261954_1 WHERE nickname = "WildCats"
Write a SQL query that answers the following question: What is the title of the episode with production code 2alf03?
The relevant table was constructed using the following SQL : CREATE TABLE table_26199130_1 (title VARCHAR, production_code VARCHAR)
SELECT title FROM table_26199130_1 WHERE production_code = "2ALF03"
Write a SQL query that answers the following question: What was the rank (week) for episode number 34?
The relevant table was constructed using the following SQL : CREATE TABLE table_26199130_1 (rank__week_ VARCHAR, no VARCHAR)
SELECT rank__week_ FROM table_26199130_1 WHERE no = 34
Write a SQL query that answers the following question: What numbered episode had 11.96 million US viewers?
The relevant table was constructed using the following SQL : CREATE TABLE table_26199130_1 (no INTEGER, us_viewers__million_ VARCHAR)
SELECT MAX(no) FROM table_26199130_1 WHERE us_viewers__million_ = "11.96"
Write a SQL query that answers the following question: What was the ranking of episode #19?
The relevant table was constructed using the following SQL : CREATE TABLE table_26200084_1 (rank__week_ VARCHAR, _number VARCHAR)
SELECT rank__week_ FROM table_26200084_1 WHERE _number = 19
Write a SQL query that answers the following question: What was the production code of the episode ranked 28?
The relevant table was constructed using the following SQL : CREATE TABLE table_26200084_1 (production_code VARCHAR, rank__week_ VARCHAR)
SELECT production_code FROM table_26200084_1 WHERE rank__week_ = "28"
Write a SQL query that answers the following question: What was the title of the episode directed by David Mamet?
The relevant table was constructed using the following SQL : CREATE TABLE table_26200084_1 (title VARCHAR, directed_by VARCHAR)
SELECT title FROM table_26200084_1 WHERE directed_by = "David Mamet"
Write a SQL query that answers the following question: What is the production code for the episode that had 18.07 million viewers?
The relevant table was constructed using the following SQL : CREATE TABLE table_26198709_1 (production_code VARCHAR, us_viewers__million_ VARCHAR)
SELECT production_code FROM table_26198709_1 WHERE us_viewers__million_ = "18.07"
Write a SQL query that answers the following question: What is the weeks rank for the episode with the production code 1alf05?
The relevant table was constructed using the following SQL : CREATE TABLE table_26198709_1 (rank__week_ INTEGER, production_code VARCHAR)
SELECT MAX(rank__week_) FROM table_26198709_1 WHERE production_code = "1ALF05"
Write a SQL query that answers the following question: How many air dates does the episode with 15.50 million viewers have?
The relevant table was constructed using the following SQL : CREATE TABLE table_26198709_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)
SELECT COUNT(original_air_date) FROM table_26198709_1 WHERE us_viewers__million_ = "15.50"
Write a SQL query that answers the following question: Who wrote the episode with 18.07 million viewers?
The relevant table was constructed using the following SQL : CREATE TABLE table_26198709_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT written_by FROM table_26198709_1 WHERE us_viewers__million_ = "18.07"
Write a SQL query that answers the following question: How many points were scored against the Toronto Rebels?
The relevant table was constructed using the following SQL : CREATE TABLE table_26200568_16 (points_against INTEGER, club VARCHAR)
SELECT MAX(points_against) FROM table_26200568_16 WHERE club = "Toronto Rebels"
Write a SQL query that answers the following question: How many points did the Toronto Downtown Dingos score?
The relevant table was constructed using the following SQL : CREATE TABLE table_26200568_16 (points_for INTEGER, club VARCHAR)
SELECT MIN(points_for) FROM table_26200568_16 WHERE club = "Toronto Downtown Dingos"
Write a SQL query that answers the following question: How many losses does Toronto Downtown Dingos have?
The relevant table was constructed using the following SQL : CREATE TABLE table_26200568_16 (losses VARCHAR, club VARCHAR)
SELECT losses FROM table_26200568_16 WHERE club = "Toronto Downtown Dingos"
Write a SQL query that answers the following question: What is the percentage listed for the team who scored 63 points?
The relevant table was constructed using the following SQL : CREATE TABLE table_26200568_16 (percentage VARCHAR, points_for VARCHAR)
SELECT percentage FROM table_26200568_16 WHERE points_for = 63
Write a SQL query that answers the following question: How many losses does Central Blues have?
The relevant table was constructed using the following SQL : CREATE TABLE table_26200568_16 (losses INTEGER, club VARCHAR)
SELECT MAX(losses) FROM table_26200568_16 WHERE club = "Central Blues"
Write a SQL query that answers the following question: If the calculated activity (CI) is 4.96×10 −11, what is the specimen weight/size?
The relevant table was constructed using the following SQL : CREATE TABLE table_26211058_1 (specimen_weight_size VARCHAR, calculated_activity___ci__ VARCHAR)
SELECT specimen_weight_size FROM table_26211058_1 WHERE calculated_activity___ci__ = "4.96×10 −11"
Write a SQL query that answers the following question: If the specimen weight/size is 1000 g / 8.79 cm, what is the calculated activity?
The relevant table was constructed using the following SQL : CREATE TABLE table_26211058_1 (calculated_activity___bq__ VARCHAR, specimen_weight_size VARCHAR)
SELECT COUNT(calculated_activity___bq__) FROM table_26211058_1 WHERE specimen_weight_size = "1000 g / 8.79 cm"
Write a SQL query that answers the following question: If the new points were 5760, what is the RK?
The relevant table was constructed using the following SQL : CREATE TABLE table_26218783_6 (rk VARCHAR, new_points VARCHAR)
SELECT rk FROM table_26218783_6 WHERE new_points = 5760
Write a SQL query that answers the following question: How many times is player Stanislas Wawrinka on the list?
The relevant table was constructed using the following SQL : CREATE TABLE table_26218783_6 (points VARCHAR, player VARCHAR)
SELECT COUNT(points) AS defending FROM table_26218783_6 WHERE player = "Stanislas Wawrinka"
Write a SQL query that answers the following question: how many time was points 6675?
The relevant table was constructed using the following SQL : CREATE TABLE table_26218783_7 (points VARCHAR)
SELECT COUNT(points) AS won FROM table_26218783_7 WHERE points = 6675
Write a SQL query that answers the following question: What is the lowest points won from player victoria azarenka?
The relevant table was constructed using the following SQL : CREATE TABLE table_26218783_7 (points INTEGER, player VARCHAR)
SELECT MIN(points) AS won FROM table_26218783_7 WHERE player = "Victoria Azarenka"
Write a SQL query that answers the following question: What is the status when sd is 15?
The relevant table was constructed using the following SQL : CREATE TABLE table_26218783_7 (status VARCHAR, sd VARCHAR)
SELECT status FROM table_26218783_7 WHERE sd = 15
Write a SQL query that answers the following question: What is the highest sd when the status is second round lost to iveta benešová?
The relevant table was constructed using the following SQL : CREATE TABLE table_26218783_7 (sd INTEGER, status VARCHAR)
SELECT MAX(sd) FROM table_26218783_7 WHERE status = "Second round lost to Iveta Benešová"
Write a SQL query that answers the following question: How many clubs were founded in the westfalenstadion stadium?
The relevant table was constructed using the following SQL : CREATE TABLE table_26218124_1 (founded VARCHAR, stadium VARCHAR)
SELECT COUNT(founded) FROM table_26218124_1 WHERE stadium = "Westfalenstadion"
Write a SQL query that answers the following question: Which club was originally named hapoel katamon jerusalem f.c.?
The relevant table was constructed using the following SQL : CREATE TABLE table_26218124_1 (original_club VARCHAR, name VARCHAR)
SELECT original_club FROM table_26218124_1 WHERE name = "Hapoel Katamon Jerusalem F.C."
Write a SQL query that answers the following question: How many clubs were founded in belo horizonte?
The relevant table was constructed using the following SQL : CREATE TABLE table_26218124_1 (founded VARCHAR, city VARCHAR)
SELECT COUNT(founded) FROM table_26218124_1 WHERE city = "Belo Horizonte"
Write a SQL query that answers the following question: Which club was originally named the newcastle falcons?
The relevant table was constructed using the following SQL : CREATE TABLE table_26218124_1 (original_club VARCHAR, name VARCHAR)
SELECT original_club FROM table_26218124_1 WHERE name = "Newcastle Falcons"
Write a SQL query that answers the following question: What is the minimum number of f/laps?
The relevant table was constructed using the following SQL : CREATE TABLE table_26222468_1 (f_laps INTEGER)
SELECT MIN(f_laps) FROM table_26222468_1
Write a SQL query that answers the following question: How many seasons have points totals of N/A?
The relevant table was constructed using the following SQL : CREATE TABLE table_26222468_1 (season VARCHAR, points VARCHAR)
SELECT COUNT(season) FROM table_26222468_1 WHERE points = "N/A"
Write a SQL query that answers the following question: What is the maximum number of wins?
The relevant table was constructed using the following SQL : CREATE TABLE table_26222468_1 (wins INTEGER)
SELECT MAX(wins) FROM table_26222468_1
Write a SQL query that answers the following question: How many different starts had an average finish of 17.9?
The relevant table was constructed using the following SQL : CREATE TABLE table_2622469_1 (starts VARCHAR, avg_finish VARCHAR)
SELECT COUNT(starts) FROM table_2622469_1 WHERE avg_finish = "17.9"
Write a SQL query that answers the following question: What were the wins of 1983?
The relevant table was constructed using the following SQL : CREATE TABLE table_2622469_1 (wins VARCHAR, year VARCHAR)
SELECT wins FROM table_2622469_1 WHERE year = 1983
Write a SQL query that answers the following question: Which episodes in season 3 were written by Mark Drop?
The relevant table was constructed using the following SQL : CREATE TABLE table_2623498_4 (Season VARCHAR, written_by VARCHAR)
SELECT Season AS episode__number FROM table_2623498_4 WHERE written_by = "Mark Drop"
Write a SQL query that answers the following question: what is the number where the player was jimmy demaret
The relevant table was constructed using the following SQL : CREATE TABLE table_262383_1 (runner_s__up VARCHAR)
SELECT 54 AS _holes FROM table_262383_1 WHERE runner_s__up = "Jimmy Demaret"
Write a SQL query that answers the following question: what is the space where the next one was mike turnesa
The relevant table was constructed using the following SQL : CREATE TABLE table_262383_1 (margin VARCHAR, runner_s__up VARCHAR)
SELECT margin FROM table_262383_1 WHERE runner_s__up = "Mike Turnesa"
Write a SQL query that answers the following question: what is the space where the next winner is skee riegel
The relevant table was constructed using the following SQL : CREATE TABLE table_262383_1 (margin VARCHAR, runner_s__up VARCHAR)
SELECT margin FROM table_262383_1 WHERE runner_s__up = "Skee Riegel"
Write a SQL query that answers the following question: what is the old English name of Saturday?
The relevant table was constructed using the following SQL : CREATE TABLE table_2624098_1 (old_english_day_name VARCHAR, modern_english_day_name VARCHAR)
SELECT old_english_day_name FROM table_2624098_1 WHERE modern_english_day_name = "Saturday"
Write a SQL query that answers the following question: how mant different day names in old English were coined from the Latin day name "dies iovis"?
The relevant table was constructed using the following SQL : CREATE TABLE table_2624098_1 (old_english_day_name VARCHAR, glossed_from_latin_day_name VARCHAR)
SELECT COUNT(old_english_day_name) FROM table_2624098_1 WHERE glossed_from_latin_day_name = "Dies Iovis"
Write a SQL query that answers the following question: how many different meanings does Wednesday have?
The relevant table was constructed using the following SQL : CREATE TABLE table_2624098_1 (english_day_name_meaning VARCHAR, modern_english_day_name VARCHAR)
SELECT COUNT(english_day_name_meaning) FROM table_2624098_1 WHERE modern_english_day_name = "Wednesday"
Write a SQL query that answers the following question: what is the English meaning of the old English name "sæturnesdæg"?
The relevant table was constructed using the following SQL : CREATE TABLE table_2624098_1 (english_day_name_meaning VARCHAR, old_english_day_name VARCHAR)
SELECT english_day_name_meaning FROM table_2624098_1 WHERE old_english_day_name = "Sæturnesdæg"
Write a SQL query that answers the following question: what is the meaning of the latin day name "dies saturni"?
The relevant table was constructed using the following SQL : CREATE TABLE table_2624098_1 (latin_day_name_meaning VARCHAR, glossed_from_latin_day_name VARCHAR)
SELECT latin_day_name_meaning FROM table_2624098_1 WHERE glossed_from_latin_day_name = "Dies Saturni"
Write a SQL query that answers the following question: Which opponents conference has the result L, 62-10?
The relevant table was constructed using the following SQL : CREATE TABLE table_26240481_1 (opponents_conference VARCHAR, result VARCHAR)
SELECT opponents_conference FROM table_26240481_1 WHERE result = "L, 62-10"
Write a SQL query that answers the following question: Who was the opponents head coach with the result L, 56-6?
The relevant table was constructed using the following SQL : CREATE TABLE table_26240481_1 (opponents_head_coach VARCHAR, result VARCHAR)
SELECT opponents_head_coach FROM table_26240481_1 WHERE result = "L, 56-6"
Write a SQL query that answers the following question: Who is Charleston Southerns head coach where the result is L, 56-6?-
The relevant table was constructed using the following SQL : CREATE TABLE table_26240481_1 (charleston_southerns_head_coach VARCHAR, result VARCHAR)
SELECT charleston_southerns_head_coach FROM table_26240481_1 WHERE result = "L, 56-6"
Write a SQL query that answers the following question: Who played FBS where the result was L, 62-3?
The relevant table was constructed using the following SQL : CREATE TABLE table_26240481_1 (fbs_opponent VARCHAR, result VARCHAR)
SELECT fbs_opponent FROM table_26240481_1 WHERE result = "L, 62-3"
Write a SQL query that answers the following question: When was alfred university founded?
The relevant table was constructed using the following SQL : CREATE TABLE table_262476_3 (founded INTEGER, institution VARCHAR)
SELECT MAX(founded) FROM table_262476_3 WHERE institution = "Alfred University"
Write a SQL query that answers the following question: Name where bethany college is
The relevant table was constructed using the following SQL : CREATE TABLE table_262476_1 (location VARCHAR, institution VARCHAR)
SELECT location FROM table_262476_1 WHERE institution = "Bethany College"
Write a SQL query that answers the following question: Name the location for golden tornadoes
The relevant table was constructed using the following SQL : CREATE TABLE table_262476_1 (location VARCHAR, nickname VARCHAR)
SELECT location FROM table_262476_1 WHERE nickname = "Golden Tornadoes"
Write a SQL query that answers the following question: Name the number of locations for geneva college
The relevant table was constructed using the following SQL : CREATE TABLE table_262476_1 (location VARCHAR, institution VARCHAR)
SELECT COUNT(location) FROM table_262476_1 WHERE institution = "Geneva College"
Write a SQL query that answers the following question: Name the enrollment for tomcats
The relevant table was constructed using the following SQL : CREATE TABLE table_262476_1 (enrollment VARCHAR, nickname VARCHAR)
SELECT enrollment FROM table_262476_1 WHERE nickname = "Tomcats"
Write a SQL query that answers the following question: How many season 4 appearances are there by Mrs. Jennifer Knight?
The relevant table was constructed using the following SQL : CREATE TABLE table_26240046_1 (season_4 INTEGER, character VARCHAR)
SELECT MIN(season_4) FROM table_26240046_1 WHERE character = "Mrs. Jennifer Knight"
Write a SQL query that answers the following question: How many season 3 appearances by Morgan the Dog?
The relevant table was constructed using the following SQL : CREATE TABLE table_26240046_1 (season_3 INTEGER, played_by VARCHAR)
SELECT MAX(season_3) FROM table_26240046_1 WHERE played_by = "Morgan the Dog"
Write a SQL query that answers the following question: What episode was the first appearance of the character who appears 7 times in season 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_26240046_1 (first_appearance VARCHAR, season_4 VARCHAR)
SELECT first_appearance FROM table_26240046_1 WHERE season_4 = 7
Write a SQL query that answers the following question: How many season 3 appearances by the character played by Stefan Van Ray?
The relevant table was constructed using the following SQL : CREATE TABLE table_26240046_1 (season_3 INTEGER, played_by VARCHAR)
SELECT MIN(season_3) FROM table_26240046_1 WHERE played_by = "Stefan van Ray"
Write a SQL query that answers the following question: What is the first appearance of the character played by Obdul Reid?
The relevant table was constructed using the following SQL : CREATE TABLE table_26240046_1 (first_appearance VARCHAR, played_by VARCHAR)
SELECT first_appearance FROM table_26240046_1 WHERE played_by = "Obdul Reid"
Write a SQL query that answers the following question: What was the primary conference when joining the cslf for the institution that was founded in 1894
The relevant table was constructed using the following SQL : CREATE TABLE table_262501_1 (primary_conference_when_joining_the_csfl VARCHAR, founded VARCHAR)
SELECT primary_conference_when_joining_the_csfl FROM table_262501_1 WHERE founded = 1894
Write a SQL query that answers the following question: what was the primary conference when joining the csfl for the institution that joined in 2004-05?
The relevant table was constructed using the following SQL : CREATE TABLE table_262501_1 (primary_conference_when_joining_the_csfl VARCHAR, joined VARCHAR)
SELECT primary_conference_when_joining_the_csfl FROM table_262501_1 WHERE joined = "2004-05"
Write a SQL query that answers the following question: How may results had the theme inspirational?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250151_1 (result VARCHAR, theme VARCHAR)
SELECT COUNT(result) FROM table_26250151_1 WHERE theme = "Inspirational"
Write a SQL query that answers the following question: Which episode had Lavern Baker?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250151_1 (episode VARCHAR, original_recording_artist VARCHAR)
SELECT episode FROM table_26250151_1 WHERE original_recording_artist = "LaVern Baker"
Write a SQL query that answers the following question: What was the order # or Erma Franklin?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250151_1 (order__number VARCHAR, original_recording_artist VARCHAR)
SELECT order__number FROM table_26250151_1 WHERE original_recording_artist = "Erma Franklin"
Write a SQL query that answers the following question: What is the theme for the original artist Alicia Keys?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250145_1 (theme VARCHAR, original_artist VARCHAR)
SELECT theme FROM table_26250145_1 WHERE original_artist = "Alicia Keys"
Write a SQL query that answers the following question: How many times is the original artist Alicia keys?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250145_1 (result VARCHAR, original_artist VARCHAR)
SELECT COUNT(result) FROM table_26250145_1 WHERE original_artist = "Alicia Keys"
Write a SQL query that answers the following question: What is the order # for the original artist sarah mclachlan?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250145_1 (order__number VARCHAR, original_artist VARCHAR)
SELECT order__number FROM table_26250145_1 WHERE original_artist = "Sarah McLachlan"
Write a SQL query that answers the following question: WHat is the them for the order #2?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250145_1 (theme VARCHAR, order__number VARCHAR)
SELECT theme FROM table_26250145_1 WHERE order__number = "2"
Write a SQL query that answers the following question: When pointers are the nickname what is the type?
The relevant table was constructed using the following SQL : CREATE TABLE table_262495_1 (type VARCHAR, nickname VARCHAR)
SELECT type FROM table_262495_1 WHERE nickname = "Pointers"
Write a SQL query that answers the following question: When falcons are the nickname what is the type?
The relevant table was constructed using the following SQL : CREATE TABLE table_262495_1 (type VARCHAR, nickname VARCHAR)
SELECT type FROM table_262495_1 WHERE nickname = "Falcons"
Write a SQL query that answers the following question: When 9386 is the undergraduate enrollment what is the nickname?
The relevant table was constructed using the following SQL : CREATE TABLE table_262495_1 (nickname VARCHAR, undergraduate_enrollment VARCHAR)
SELECT nickname FROM table_262495_1 WHERE undergraduate_enrollment = 9386
Write a SQL query that answers the following question: What was the choice of song where the original artist was Stevie Wonder?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250189_1 (song_choice VARCHAR, original_artist VARCHAR)
SELECT song_choice FROM table_26250189_1 WHERE original_artist = "Stevie Wonder"
Write a SQL query that answers the following question: What was Katie's order number when the theme was The Rolling Stones?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250189_1 (order__number VARCHAR, theme VARCHAR)
SELECT order__number FROM table_26250189_1 WHERE theme = "The Rolling Stones"
Write a SQL query that answers the following question: Who was the original artist of the chosen song when the theme was The Rolling Stones?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250189_1 (original_artist VARCHAR, theme VARCHAR)
SELECT original_artist FROM table_26250189_1 WHERE theme = "The Rolling Stones"
Write a SQL query that answers the following question: Who was the original artist of the First solo theme?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250155_1 (original_artist VARCHAR, theme VARCHAR)
SELECT original_artist FROM table_26250155_1 WHERE theme = "First Solo"
Write a SQL query that answers the following question: What is the number of song choices where the original artist was Bright Eyes?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250155_1 (song_choice VARCHAR, original_artist VARCHAR)
SELECT COUNT(song_choice) FROM table_26250155_1 WHERE original_artist = "Bright Eyes"
Write a SQL query that answers the following question: Who was the original artist of the group performance theme?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250155_1 (original_artist VARCHAR, theme VARCHAR)
SELECT original_artist FROM table_26250155_1 WHERE theme = "Group Performance"
Write a SQL query that answers the following question: What is the order number of the Billboard Hot 100 Hits theme and the original artist was Sixpence None the Richer?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250155_1 (order__number VARCHAR, theme VARCHAR, original_artist VARCHAR)
SELECT order__number FROM table_26250155_1 WHERE theme = "Billboard Hot 100 Hits" AND original_artist = "Sixpence None the Richer"
Write a SQL query that answers the following question: What was the number of weeks that had a Billboard Hot 100 Hits theme, an order number of 3, and an original artist of Sixpence None the Richer?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250155_1 (week__number VARCHAR, original_artist VARCHAR, theme VARCHAR, order__number VARCHAR)
SELECT COUNT(week__number) FROM table_26250155_1 WHERE theme = "Billboard Hot 100 Hits" AND order__number = "3" AND original_artist = "Sixpence None the Richer"
Write a SQL query that answers the following question: How many joined the Warriors?
The relevant table was constructed using the following SQL : CREATE TABLE table_262508_1 (joined VARCHAR, nickname VARCHAR)
SELECT COUNT(joined) FROM table_262508_1 WHERE nickname = "Warriors"
Write a SQL query that answers the following question: How many joined when the enrollment was 1150 in Sioux City, Iowa?
The relevant table was constructed using the following SQL : CREATE TABLE table_262508_1 (joined VARCHAR, enrollment VARCHAR, location VARCHAR)
SELECT joined FROM table_262508_1 WHERE enrollment = 1150 AND location = "Sioux City, Iowa"
Write a SQL query that answers the following question: What is Briar Cliff University's nickname?
The relevant table was constructed using the following SQL : CREATE TABLE table_262508_1 (nickname VARCHAR, institution VARCHAR)
SELECT nickname FROM table_262508_1 WHERE institution = "Briar Cliff University"
Write a SQL query that answers the following question: What is the nickname of the institution from Concordia University, Nebraska?
The relevant table was constructed using the following SQL : CREATE TABLE table_262508_1 (nickname VARCHAR, institution VARCHAR)
SELECT nickname FROM table_262508_1 WHERE institution = "Concordia University, Nebraska"
Write a SQL query that answers the following question: Where the week # is Top 12, what is the result?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250253_1 (result VARCHAR, week__number VARCHAR)
SELECT result FROM table_26250253_1 WHERE week__number = "Top 12"
Write a SQL query that answers the following question: How many results are there with the theme Group Round?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250253_1 (result VARCHAR, theme VARCHAR)
SELECT COUNT(result) FROM table_26250253_1 WHERE theme = "Group Round"
Write a SQL query that answers the following question: How many themes are there where the order # is 9?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250253_1 (theme VARCHAR, order__number VARCHAR)
SELECT COUNT(theme) FROM table_26250253_1 WHERE order__number = "9"
Write a SQL query that answers the following question: The order # is what for the week # Top 10?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250253_1 (order__number VARCHAR, week__number VARCHAR)
SELECT order__number FROM table_26250253_1 WHERE week__number = "Top 10"
Write a SQL query that answers the following question: The original artist The Temptations has what week #?
The relevant table was constructed using the following SQL : CREATE TABLE table_26250253_1 (week__number VARCHAR, original_artist VARCHAR)
SELECT week__number FROM table_26250253_1 WHERE original_artist = "The Temptations"
Write a SQL query that answers the following question: Name the total number of founded for public and 780 enrollment
The relevant table was constructed using the following SQL : CREATE TABLE table_262505_1 (founded VARCHAR, type VARCHAR, enrollment VARCHAR)
SELECT COUNT(founded) FROM table_262505_1 WHERE type = "Public" AND enrollment = "780"
Write a SQL query that answers the following question: Name the founded for school closed in 2005
The relevant table was constructed using the following SQL : CREATE TABLE table_262505_1 (founded VARCHAR, current_conference VARCHAR)
SELECT founded FROM table_262505_1 WHERE current_conference = "school closed in 2005"
Write a SQL query that answers the following question: what is the nickname that joined 1902 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_262527_1 (nickname VARCHAR, joined VARCHAR)
SELECT nickname FROM table_262527_1 WHERE joined = "1902 1"
Write a SQL query that answers the following question: what type of institution is ottawa university?
The relevant table was constructed using the following SQL : CREATE TABLE table_262527_1 (type VARCHAR, institution VARCHAR)
SELECT type FROM table_262527_1 WHERE institution = "Ottawa University"
Write a SQL query that answers the following question: what is the total number of nicknames for southwestern college?
The relevant table was constructed using the following SQL : CREATE TABLE table_262527_1 (nickname VARCHAR, institution VARCHAR)
SELECT COUNT(nickname) FROM table_262527_1 WHERE institution = "Southwestern College"
Write a SQL query that answers the following question: what type was joined in 1902 5?
The relevant table was constructed using the following SQL : CREATE TABLE table_262527_1 (type VARCHAR, joined VARCHAR)
SELECT type FROM table_262527_1 WHERE joined = "1902 5"
Write a SQL query that answers the following question: what is the institution located in north newton, kansas?
The relevant table was constructed using the following SQL : CREATE TABLE table_262527_1 (institution VARCHAR, location VARCHAR)
SELECT institution FROM table_262527_1 WHERE location = "North Newton, Kansas"
Write a SQL query that answers the following question: Name the place that was founded in 1920
The relevant table was constructed using the following SQL : CREATE TABLE table_262560_1 (institution VARCHAR, founded VARCHAR)
SELECT institution FROM table_262560_1 WHERE founded = 1920
Write a SQL query that answers the following question: Name the type that joined 2007
The relevant table was constructed using the following SQL : CREATE TABLE table_262560_1 (type VARCHAR, joined VARCHAR)
SELECT type FROM table_262560_1 WHERE joined = 2007
Write a SQL query that answers the following question: how many series had 6.55 u.s. viewers (million) and were directed by pete michels
The relevant table was constructed using the following SQL : CREATE TABLE table_26259391_1 (no_in_series VARCHAR, us_viewers__million_ VARCHAR, directed_by VARCHAR)
SELECT COUNT(no_in_series) FROM table_26259391_1 WHERE us_viewers__million_ = "6.55" AND directed_by = "Pete Michels"
Write a SQL query that answers the following question: how many series have production code 8acx05
The relevant table was constructed using the following SQL : CREATE TABLE table_26259391_1 (no_in_series VARCHAR, production_code VARCHAR)
SELECT no_in_series FROM table_26259391_1 WHERE production_code = "8ACX05"
Write a SQL query that answers the following question: how many u.s. viewers (million) have seen a production written by chris sheridan & danny smith
The relevant table was constructed using the following SQL : CREATE TABLE table_26259391_1 (us_viewers__million_ VARCHAR, written_by VARCHAR)
SELECT COUNT(us_viewers__million_) FROM table_26259391_1 WHERE written_by = "Chris Sheridan & Danny Smith"
Write a SQL query that answers the following question: which production codes were written by andrew goldberg
The relevant table was constructed using the following SQL : CREATE TABLE table_26259391_1 (production_code VARCHAR, written_by VARCHAR)
SELECT production_code FROM table_26259391_1 WHERE written_by = "Andrew Goldberg"