instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: Which Attendance has a Result of l 29–23?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (attendance VARCHAR, result VARCHAR)
SELECT attendance FROM table_name_54 WHERE result = "l 29–23"
Write a SQL query that answers the following question: When has a Week of 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_89 WHERE week = 1
Write a SQL query that answers the following question: Which Week has an Opponent of at seattle seahawks?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (week VARCHAR, opponent VARCHAR)
SELECT week FROM table_name_11 WHERE opponent = "at seattle seahawks"
Write a SQL query that answers the following question: Name the Result on october 15, 1995?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_71 WHERE date = "october 15, 1995"
Write a SQL query that answers the following question: Which Opponent has a Week larger than 2 on november 19, 1995?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_81 (opponent VARCHAR, week VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_81 WHERE week > 2 AND date = "november 19, 1995"
Write a SQL query that answers the following question: What is the recorded conference that was a Wac Conference?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_73 (record__conf_ VARCHAR, conference VARCHAR)
SELECT record__conf_ FROM table_name_73 WHERE conference = "wac"
Write a SQL query that answers the following question: What conference has the Wichita State school?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_26 (conference VARCHAR, school VARCHAR)
SELECT conference FROM table_name_26 WHERE school = "wichita state"
Write a SQL query that answers the following question: What is the rank for Burghley?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_72 (rank VARCHAR, place VARCHAR)
SELECT rank FROM table_name_72 WHERE place = "burghley"
Write a SQL query that answers the following question: What horse was at the Badminton Horse Trials?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (horse VARCHAR, competition VARCHAR)
SELECT horse FROM table_name_54 WHERE competition = "badminton horse trials"
Write a SQL query that answers the following question: What was Des Dickson's lowest rank for matches smaller than 285 and less than 219 goals?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (rank INTEGER, goals VARCHAR, matches VARCHAR, name VARCHAR)
SELECT MIN(rank) FROM table_name_89 WHERE matches < 285 AND name = "des dickson" AND goals < 219
Write a SQL query that answers the following question: How many goals on average had 644 matches and a rank bigger than 3?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_94 (goals INTEGER, matches VARCHAR, rank VARCHAR)
SELECT AVG(goals) FROM table_name_94 WHERE matches = 644 AND rank > 3
Write a SQL query that answers the following question: How many ranks had 205 matches?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (rank VARCHAR, matches VARCHAR)
SELECT COUNT(rank) FROM table_name_54 WHERE matches = 205
Write a SQL query that answers the following question: What was Jimmy Jones' rank when the matches were smaller than 285?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_4 (rank INTEGER, name VARCHAR, matches VARCHAR)
SELECT MAX(rank) FROM table_name_4 WHERE name = "jimmy jones" AND matches < 285
Write a SQL query that answers the following question: Which date had the Hornets as the home team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_53 (date VARCHAR, home VARCHAR)
SELECT date FROM table_name_53 WHERE home = "hornets"
Write a SQL query that answers the following question: What is the To par score corresponding to the winning score of 64-69-67-66=266?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (to_par VARCHAR, winning_score VARCHAR)
SELECT to_par FROM table_name_88 WHERE winning_score = 64 - 69 - 67 - 66 = 266
Write a SQL query that answers the following question: What was the To par score for the tournament with a margin of victory of 1 stroke?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_44 (to_par VARCHAR, margin_of_victory VARCHAR)
SELECT to_par FROM table_name_44 WHERE margin_of_victory = "1 stroke"
Write a SQL query that answers the following question: What was the winning score for the tournament with a margin of victory of 7 strokes?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (winning_score VARCHAR, margin_of_victory VARCHAR)
SELECT winning_score FROM table_name_6 WHERE margin_of_victory = "7 strokes"
Write a SQL query that answers the following question: What day in December was the game that resulted in a record of 6-3-1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (december INTEGER, record VARCHAR)
SELECT SUM(december) FROM table_name_64 WHERE record = "6-3-1"
Write a SQL query that answers the following question: How many were in attendance against the Oakland Raiders after week 7?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (attendance INTEGER, opponent VARCHAR, week VARCHAR)
SELECT SUM(attendance) FROM table_name_25 WHERE opponent = "oakland raiders" AND week > 7
Write a SQL query that answers the following question: What is the average attendance for the New York Jets?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (attendance INTEGER, opponent VARCHAR)
SELECT AVG(attendance) FROM table_name_98 WHERE opponent = "new york jets"
Write a SQL query that answers the following question: On what week were there 26,243 in attendance on September 21, 1969?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_51 (week VARCHAR, date VARCHAR, attendance VARCHAR)
SELECT COUNT(week) FROM table_name_51 WHERE date = "september 21, 1969" AND attendance < 26 OFFSET 243
Write a SQL query that answers the following question: Who was the opponent at Pasir Gudang, Malaysia with a match larger than 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_18 (opponent_team VARCHAR, match VARCHAR, location VARCHAR)
SELECT opponent_team FROM table_name_18 WHERE match > 2 AND location = "pasir gudang, malaysia"
Write a SQL query that answers the following question: Who was the opponent at the match smaller than 3?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (opponent_team VARCHAR, match INTEGER)
SELECT opponent_team FROM table_name_31 WHERE match < 3
Write a SQL query that answers the following question: Where was the game when Police S.A. was the opponent?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_78 (location VARCHAR, opponent_team VARCHAR)
SELECT location FROM table_name_78 WHERE opponent_team = "police s.a."
Write a SQL query that answers the following question: How many list entry numbers are located in Platting Road, Lydgate?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (list_entry_number VARCHAR, location VARCHAR)
SELECT COUNT(list_entry_number) FROM table_name_95 WHERE location = "platting road, lydgate"
Write a SQL query that answers the following question: Which type has list entry number of 1356677?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_52 (type VARCHAR, list_entry_number VARCHAR)
SELECT type FROM table_name_52 WHERE list_entry_number = 1356677
Write a SQL query that answers the following question: What is the completed date of the church with list entry number 1068071?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_33 (completed VARCHAR, type VARCHAR, list_entry_number VARCHAR)
SELECT completed FROM table_name_33 WHERE type = "church" AND list_entry_number = 1068071
Write a SQL query that answers the following question: Who were the scorers in the game against neuchâtel xamax played on 10 December 1985?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (scorers VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT scorers FROM table_name_64 WHERE opponent = "neuchâtel xamax" AND date = "10 december 1985"
Write a SQL query that answers the following question: What date was the game played in where hegarty was the scorer?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_94 (date VARCHAR, scorers VARCHAR)
SELECT date FROM table_name_94 WHERE scorers = "hegarty"
Write a SQL query that answers the following question: Who is the callsign that has ICAO of SCO?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (callsign VARCHAR, icao VARCHAR)
SELECT callsign FROM table_name_68 WHERE icao = "sco"
Write a SQL query that answers the following question: Who is the commenced operations that has icao of slk?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (commenced_operations VARCHAR, icao VARCHAR)
SELECT commenced_operations FROM table_name_34 WHERE icao = "slk"
Write a SQL query that answers the following question: Who is the call sign that has a commenced operation before 1976?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_3 (callsign VARCHAR, commenced_operations INTEGER)
SELECT callsign FROM table_name_3 WHERE commenced_operations < 1976
Write a SQL query that answers the following question: What is the HDTV of the Music Content Channel?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (hdtv VARCHAR, content VARCHAR)
SELECT hdtv FROM table_name_60 WHERE content = "music"
Write a SQL query that answers the following question: What is the Television Service offering Cartomanzia?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_36 (television_service VARCHAR, content VARCHAR)
SELECT television_service FROM table_name_36 WHERE content = "cartomanzia"
Write a SQL query that answers the following question: What Country's content is Televendite?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_32 (country VARCHAR, content VARCHAR)
SELECT country FROM table_name_32 WHERE content = "televendite"
Write a SQL query that answers the following question: What Country's Content is TV Locale?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (country VARCHAR, content VARCHAR)
SELECT country FROM table_name_9 WHERE content = "tv locale"
Write a SQL query that answers the following question: How many golds had a silver of more than 1, rank more than 1, total of more than 4 when the bronze was also more than 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_12 (gold INTEGER, bronze VARCHAR, total VARCHAR, silver VARCHAR, rank VARCHAR)
SELECT SUM(gold) FROM table_name_12 WHERE silver > 1 AND rank > 1 AND total > 4 AND bronze > 4
Write a SQL query that answers the following question: What is the total of rank when gold is 2 and total is more than 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (rank INTEGER, gold VARCHAR, total VARCHAR)
SELECT SUM(rank) FROM table_name_99 WHERE gold = 2 AND total > 4
Write a SQL query that answers the following question: What is the total number of bronze when gold is less than 1 and silver is more than 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_53 (bronze INTEGER, gold VARCHAR, silver VARCHAR)
SELECT SUM(bronze) FROM table_name_53 WHERE gold < 1 AND silver > 1
Write a SQL query that answers the following question: What is the total of rank when silver is more than 1, gold is 2, and total is more than 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_4 (rank INTEGER, total VARCHAR, silver VARCHAR, gold VARCHAR)
SELECT SUM(rank) FROM table_name_4 WHERE silver > 1 AND gold = 2 AND total > 4
Write a SQL query that answers the following question: What is the Wins with a Top-25 of 3, and a Top-5 larger than 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_86 (wins INTEGER, top_25 VARCHAR, top_5 VARCHAR)
SELECT AVG(wins) FROM table_name_86 WHERE top_25 = 3 AND top_5 > 1
Write a SQL query that answers the following question: Which Cuts made has a Top-5 smaller than 3, and a Top-25 smaller than 6, and an Events of 10?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_53 (cuts_made VARCHAR, events VARCHAR, top_5 VARCHAR, top_25 VARCHAR)
SELECT cuts_made FROM table_name_53 WHERE top_5 < 3 AND top_25 < 6 AND events = 10
Write a SQL query that answers the following question: Which Tournament has a Cuts made smaller than 9, and an Events of 10?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (tournament VARCHAR, cuts_made VARCHAR, events VARCHAR)
SELECT tournament FROM table_name_25 WHERE cuts_made < 9 AND events = 10
Write a SQL query that answers the following question: What is the sum of Points for 250cc class, ranked 13th, later than 1955?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (points INTEGER, year VARCHAR, class VARCHAR, rank VARCHAR)
SELECT SUM(points) FROM table_name_89 WHERE class = "250cc" AND rank = "13th" AND year > 1955
Write a SQL query that answers the following question: What is the Class for a year later than 1958, with 4 points?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_30 (class VARCHAR, year VARCHAR, points VARCHAR)
SELECT class FROM table_name_30 WHERE year > 1958 AND points = 4
Write a SQL query that answers the following question: What is the average Year when there were more than 3 points, for MV Agusta and ranked 10th?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_45 (year INTEGER, rank VARCHAR, points VARCHAR, team VARCHAR)
SELECT AVG(year) FROM table_name_45 WHERE points > 3 AND team = "mv agusta" AND rank = "10th"
Write a SQL query that answers the following question: What Team has a Class of 350cc, with less than 13 points in 1959?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_93 (team VARCHAR, year VARCHAR, class VARCHAR, points VARCHAR)
SELECT team FROM table_name_93 WHERE class = "350cc" AND points < 13 AND year = 1959
Write a SQL query that answers the following question: Which event was held at Manly Beach?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_20 (event VARCHAR, location VARCHAR)
SELECT event FROM table_name_20 WHERE location = "manly beach"
Write a SQL query that answers the following question: What was the location of the Havaianas Beachley Classic, held in Australia?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (location VARCHAR, country VARCHAR, event VARCHAR)
SELECT location FROM table_name_99 WHERE country = "australia" AND event = "havaianas beachley classic"
Write a SQL query that answers the following question: Which event was held in Brazil?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (event VARCHAR, country VARCHAR)
SELECT event FROM table_name_31 WHERE country = "brazil"
Write a SQL query that answers the following question: The University of Colorado hosted what region?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_4 (region VARCHAR, host VARCHAR)
SELECT region FROM table_name_4 WHERE host = "university of colorado"
Write a SQL query that answers the following question: Peterson Gym is in what city?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (city VARCHAR, venue VARCHAR)
SELECT city FROM table_name_60 WHERE venue = "peterson gym"
Write a SQL query that answers the following question: Mideast region host University of Tennessee is in what state?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (state VARCHAR, region VARCHAR, host VARCHAR)
SELECT state FROM table_name_70 WHERE region = "mideast" AND host = "university of tennessee"
Write a SQL query that answers the following question: What city is east region venue University Hall (University of Virginia) in?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_10 (city VARCHAR, region VARCHAR, venue VARCHAR)
SELECT city FROM table_name_10 WHERE region = "east" AND venue = "university hall (university of virginia)"
Write a SQL query that answers the following question: What is the venue at Stanford University?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_19 (venue VARCHAR, host VARCHAR)
SELECT venue FROM table_name_19 WHERE host = "stanford university"
Write a SQL query that answers the following question: What is the venue in Seattle?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (venue VARCHAR, city VARCHAR)
SELECT venue FROM table_name_22 WHERE city = "seattle"
Write a SQL query that answers the following question: What team won the Tour de Santa Catarina?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_5 (team VARCHAR, race_name VARCHAR)
SELECT team FROM table_name_5 WHERE race_name = "tour de santa catarina"
Write a SQL query that answers the following question: What is Relax-Gam's average UCI Rating?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (uci_rating INTEGER, team VARCHAR)
SELECT AVG(uci_rating) FROM table_name_88 WHERE team = "relax-gam"
Write a SQL query that answers the following question: What is Vuelta a Ecuador's lowest UCI Rating?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_3 (uci_rating INTEGER, race_name VARCHAR)
SELECT MIN(uci_rating) FROM table_name_3 WHERE race_name = "vuelta a ecuador"
Write a SQL query that answers the following question: What was the result of the game attended by 54,110?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_73 (result VARCHAR, attendance VARCHAR)
SELECT result FROM table_name_73 WHERE attendance = "54,110"
Write a SQL query that answers the following question: What was the date of the game attended by 45,122?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_39 (date VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_39 WHERE attendance = "45,122"
Write a SQL query that answers the following question: What is the earliest week with a game attended by 60,233?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (week INTEGER, attendance VARCHAR)
SELECT MIN(week) FROM table_name_35 WHERE attendance = "60,233"
Write a SQL query that answers the following question: What is the latest week with a game with a result of l 12–7?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_43 (week INTEGER, result VARCHAR)
SELECT MAX(week) FROM table_name_43 WHERE result = "l 12–7"
Write a SQL query that answers the following question: What is Runner(s)-up, when Tournament is MCI Classic?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (runner_s__up VARCHAR, tournament VARCHAR)
SELECT runner_s__up FROM table_name_75 WHERE tournament = "mci classic"
Write a SQL query that answers the following question: What is Winning Score, when Date is Jul 27, 1997?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_53 (winning_score VARCHAR, date VARCHAR)
SELECT winning_score FROM table_name_53 WHERE date = "jul 27, 1997"
Write a SQL query that answers the following question: What is Winning Score, when Runner(s)-up is Ted Purdy?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (winning_score VARCHAR, runner_s__up VARCHAR)
SELECT winning_score FROM table_name_37 WHERE runner_s__up = "ted purdy"
Write a SQL query that answers the following question: What is the enrollment number for the public institution in Golden, Colorado founded after 1874?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_38 (enrollment INTEGER, founded VARCHAR, control VARCHAR, location VARCHAR)
SELECT AVG(enrollment) FROM table_name_38 WHERE control = "public" AND location = "golden, colorado" AND founded > 1874
Write a SQL query that answers the following question: Which Team has a Year smaller than 2007, and a Class of gts?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_96 (team VARCHAR, year VARCHAR, class VARCHAR)
SELECT team FROM table_name_96 WHERE year < 2007 AND class = "gts"
Write a SQL query that answers the following question: In what year Year has a Co-Drivers of jérôme policand christopher campbell?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_82 (year INTEGER, co_drivers VARCHAR)
SELECT SUM(year) FROM table_name_82 WHERE co_drivers = "jérôme policand christopher campbell"
Write a SQL query that answers the following question: What is Language, when Content is Monoscopio?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_27 (language VARCHAR, content VARCHAR)
SELECT language FROM table_name_27 WHERE content = "monoscopio"
Write a SQL query that answers the following question: What is Television Service, when Content is Presentazione?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (television_service VARCHAR, content VARCHAR)
SELECT television_service FROM table_name_90 WHERE content = "presentazione"
Write a SQL query that answers the following question: What is Package/Option, when Television Service is Sky Inside?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_74 (package_option VARCHAR, television_service VARCHAR)
SELECT package_option FROM table_name_74 WHERE television_service = "sky inside"
Write a SQL query that answers the following question: What is Package/Option, when Television Service is Sky Inside?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (package_option VARCHAR, television_service VARCHAR)
SELECT package_option FROM table_name_63 WHERE television_service = "sky inside"
Write a SQL query that answers the following question: What is the sum of Points, when the Performer is fe-mail?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (points INTEGER, performer VARCHAR)
SELECT SUM(points) FROM table_name_64 WHERE performer = "fe-mail"
Write a SQL query that answers the following question: What is the score for set 3 with a time at 15:04?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_46 (set_3 VARCHAR, time VARCHAR)
SELECT set_3 FROM table_name_46 WHERE time = "15:04"
Write a SQL query that answers the following question: What was the overall score when the score of set 3 was 29–27?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (score VARCHAR, set_3 VARCHAR)
SELECT score FROM table_name_63 WHERE set_3 = "29–27"
Write a SQL query that answers the following question: What was the score for set 2 when set 3 was 25–22?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_74 (set_2 VARCHAR, set_3 VARCHAR)
SELECT set_2 FROM table_name_74 WHERE set_3 = "25–22"
Write a SQL query that answers the following question: What was the overall score when set 1 was 23–25?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_33 (score VARCHAR, set_1 VARCHAR)
SELECT score FROM table_name_33 WHERE set_1 = "23–25"
Write a SQL query that answers the following question: What school/club team did Amal McCaskill play for?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_40 (school_club_team VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_name_40 WHERE player = "amal mccaskill"
Write a SQL query that answers the following question: Mike Miller played for what school/club team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_87 (school_club_team VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_name_87 WHERE player = "mike miller"
Write a SQL query that answers the following question: Who is the player that played for the school/club team Maryland?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_13 (player VARCHAR, school_club_team VARCHAR)
SELECT player FROM table_name_13 WHERE school_club_team = "maryland"
Write a SQL query that answers the following question: Cuttino Mobley is what nationality?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_5 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_5 WHERE player = "cuttino mobley"
Write a SQL query that answers the following question: Corey Maggette from the United States plays what position?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (position VARCHAR, nationality VARCHAR, player VARCHAR)
SELECT position FROM table_name_70 WHERE nationality = "united states" AND player = "corey maggette"
Write a SQL query that answers the following question: Amal McCaskill who plays forward-center played for what school/club team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (school_club_team VARCHAR, position VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_name_55 WHERE position = "forward-center" AND player = "amal mccaskill"
Write a SQL query that answers the following question: Which Servedby has a Local authority [a ] of thurrock, and a Station of ockendon?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_1 (servedby VARCHAR, station VARCHAR, local_authority_ VARCHAR, a_ VARCHAR)
SELECT servedby FROM table_name_1 WHERE local_authority_[a_] = "thurrock" AND station = "ockendon"
Write a SQL query that answers the following question: What is the Opponents from the final with a Tournament that is puebla?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_44 (opponents_in_the_final VARCHAR, tournament VARCHAR)
SELECT opponents_in_the_final FROM table_name_44 WHERE tournament = "puebla"
Write a SQL query that answers the following question: What was the date of the game held at the Al-Rashid Stadium, Dubai?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_13 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_13 WHERE venue = "al-rashid stadium, dubai"
Write a SQL query that answers the following question: What is the Round of 16 value for the nation with a value of 5 for Ranking Round Rank?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (round_of_16 VARCHAR, ranking_round_rank VARCHAR)
SELECT round_of_16 FROM table_name_83 WHERE ranking_round_rank = 5
Write a SQL query that answers the following question: What Team had the first round of 1:00?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_53 (team VARCHAR, first_round VARCHAR)
SELECT team FROM table_name_53 WHERE first_round = "1:00"
Write a SQL query that answers the following question: What City/State did the Atlanta Hawks (retired) team play for?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_24 (city_state VARCHAR, team VARCHAR)
SELECT city_state FROM table_name_24 WHERE team = "atlanta hawks (retired)"
Write a SQL query that answers the following question: What was the final round value for member Chris Webber?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_59 (final_round VARCHAR, members VARCHAR)
SELECT final_round FROM table_name_59 WHERE members = "chris webber"
Write a SQL query that answers the following question: What was the first round time for member Kenny Smith?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_14 (first_round VARCHAR, members VARCHAR)
SELECT first_round FROM table_name_14 WHERE members = "kenny smith"
Write a SQL query that answers the following question: Which team was the opponent on December 30?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_17 (team VARCHAR, date VARCHAR)
SELECT team FROM table_name_17 WHERE date = "december 30"
Write a SQL query that answers the following question: What content is provided by the television service ewtn?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_1 (content VARCHAR, television_service VARCHAR)
SELECT content FROM table_name_1 WHERE television_service = "ewtn"
Write a SQL query that answers the following question: What is the content of the television service ewtn in the United Kingdom?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_94 (content VARCHAR, country VARCHAR, television_service VARCHAR)
SELECT content FROM table_name_94 WHERE country = "united kingdom" AND television_service = "ewtn"
Write a SQL query that answers the following question: What is the package/option for Italy when the language is italian?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_24 (package_option VARCHAR, country VARCHAR, language VARCHAR)
SELECT package_option FROM table_name_24 WHERE country = "italy" AND language = "italian"
Write a SQL query that answers the following question: What is the package/option in Italy when the content is religione?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (package_option VARCHAR, content VARCHAR, country VARCHAR)
SELECT package_option FROM table_name_68 WHERE content = "religione" AND country = "italy"
Write a SQL query that answers the following question: Which television service has italian for its language?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_46 (television_service VARCHAR, language VARCHAR)
SELECT television_service FROM table_name_46 WHERE language = "italian"
Write a SQL query that answers the following question: Does daystar television network provide HDTV?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_50 (hdtv VARCHAR, television_service VARCHAR)
SELECT hdtv FROM table_name_50 WHERE television_service = "daystar television network"
Write a SQL query that answers the following question: What was the Attendance when Oxford United was the Home team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_58 (attendance INTEGER, home_team VARCHAR)
SELECT SUM(attendance) FROM table_name_58 WHERE home_team = "oxford united"