instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: What is the sum of the people in attendance when there was a Loss of clement (5–7)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (attendance INTEGER, loss VARCHAR)
SELECT SUM(attendance) FROM table_name_83 WHERE loss = "clement (5–7)"
Write a SQL query that answers the following question: What place was Corey Pavin in?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_57 WHERE player = "corey pavin"
Write a SQL query that answers the following question: What was the two-round score for Bob Tway?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_45 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_45 WHERE player = "bob tway"
Write a SQL query that answers the following question: How many people went to the game that lasted 2:37 after game 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (attendance INTEGER, game VARCHAR, time VARCHAR)
SELECT SUM(attendance) FROM table_name_54 WHERE game > 2 AND time = "2:37"
Write a SQL query that answers the following question: What is the FCC info of the w214ba call sign with a frequency below 96.3?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (fcc_info VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)
SELECT fcc_info FROM table_name_64 WHERE frequency_mhz < 96.3 AND call_sign = "w214ba"
Write a SQL query that answers the following question: What is the total number of the ERP W with a call sign of w242ak?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_81 (erp_w VARCHAR, call_sign VARCHAR)
SELECT COUNT(erp_w) FROM table_name_81 WHERE call_sign = "w242ak"
Write a SQL query that answers the following question: What is the FCC info of the station with a frequency above 95.3 and an ERP W smaller than 27 in Ocala, Florida?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_48 (fcc_info VARCHAR, city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)
SELECT fcc_info FROM table_name_48 WHERE frequency_mhz > 95.3 AND erp_w < 27 AND city_of_license = "ocala, florida"
Write a SQL query that answers the following question: What date has an outcome of runner-up, and a Score of 6–4, 6–2, and a Opponents of gisela dulko flavia pennetta?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_42 (date VARCHAR, opponents VARCHAR, outcome VARCHAR, score VARCHAR)
SELECT date FROM table_name_42 WHERE outcome = "runner-up" AND score = "6–4, 6–2" AND opponents = "gisela dulko flavia pennetta"
Write a SQL query that answers the following question: In Round 10, what was the Overall for Ed Tomlin?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_45 (overall INTEGER, round VARCHAR, name VARCHAR)
SELECT AVG(overall) FROM table_name_45 WHERE round = 10 AND name = "ed tomlin"
Write a SQL query that answers the following question: What was the Position of Pick #23 in a Round less than 5 with 23 Overall?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_53 (position VARCHAR, overall VARCHAR, round VARCHAR, pick__number VARCHAR)
SELECT position FROM table_name_53 WHERE round < 5 AND pick__number = 23 AND overall = 23
Write a SQL query that answers the following question: What Average Pick # has an Overall of 296?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (pick__number INTEGER, overall VARCHAR)
SELECT AVG(pick__number) FROM table_name_8 WHERE overall = 296
Write a SQL query that answers the following question: In Round 13, what was the Pick # of the Guard Position with an Overall greater than 23?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_53 (pick__number VARCHAR, round VARCHAR, overall VARCHAR, position VARCHAR)
SELECT pick__number FROM table_name_53 WHERE overall > 23 AND position = "guard" AND round = 13
Write a SQL query that answers the following question: With an Overall larger than 107, in what Round was Jim Duncan picked?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_19 (round INTEGER, name VARCHAR, overall VARCHAR)
SELECT SUM(round) FROM table_name_19 WHERE name = "jim duncan" AND overall > 107
Write a SQL query that answers the following question: What is the highest Pick # for the College of Maryland-Eastern Shore?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (pick__number INTEGER, college VARCHAR)
SELECT MAX(pick__number) FROM table_name_97 WHERE college = "maryland-eastern shore"
Write a SQL query that answers the following question: What is Brown Motors best point total using the Offenhauser L4 engine since 1950?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_72 (points INTEGER, entrant VARCHAR, year VARCHAR, engine VARCHAR)
SELECT MAX(points) FROM table_name_72 WHERE year > 1950 AND engine = "offenhauser l4" AND entrant = "brown motors"
Write a SQL query that answers the following question: Name the length for stage of ss6
The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (length VARCHAR, stage VARCHAR)
SELECT length FROM table_name_41 WHERE stage = "ss6"
Write a SQL query that answers the following question: Name the stage for m. grönholm and winner of s.loeb with time of 17:57
The relevant table was constructed using the following SQL : CREATE TABLE table_name_51 (stage VARCHAR, time__eest_ VARCHAR, rally_leader VARCHAR, winner VARCHAR)
SELECT stage FROM table_name_51 WHERE rally_leader = "m. grönholm" AND winner = "s.loeb" AND time__eest_ = "17:57"
Write a SQL query that answers the following question: Name the winner for schimatari 1
The relevant table was constructed using the following SQL : CREATE TABLE table_name_82 (winner VARCHAR, name VARCHAR)
SELECT winner FROM table_name_82 WHERE name = "schimatari 1"
Write a SQL query that answers the following question: Name the stage for 08:46
The relevant table was constructed using the following SQL : CREATE TABLE table_name_85 (stage VARCHAR, time__eest_ VARCHAR)
SELECT stage FROM table_name_85 WHERE time__eest_ = "08:46"
Write a SQL query that answers the following question: Name the winner with rally leader of c. atkinson and name of agia sotira 1
The relevant table was constructed using the following SQL : CREATE TABLE table_name_51 (winner VARCHAR, rally_leader VARCHAR, name VARCHAR)
SELECT winner FROM table_name_51 WHERE rally_leader = "c. atkinson" AND name = "agia sotira 1"
Write a SQL query that answers the following question: Name the winner for ss14
The relevant table was constructed using the following SQL : CREATE TABLE table_name_82 (winner VARCHAR, stage VARCHAR)
SELECT winner FROM table_name_82 WHERE stage = "ss14"
Write a SQL query that answers the following question: Who lost when the mariners played on September 12?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (loss VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT loss FROM table_name_37 WHERE opponent = "mariners" AND date = "september 12"
Write a SQL query that answers the following question: On September 7 what was the record?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_63 WHERE date = "september 7"
Write a SQL query that answers the following question: Who plays on the date september 29?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_48 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_48 WHERE date = "september 29"
Write a SQL query that answers the following question: Which city of license has a wriq Call sign?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (city_of_license VARCHAR, call_sign VARCHAR)
SELECT city_of_license FROM table_name_34 WHERE call_sign = "wriq"
Write a SQL query that answers the following question: What is the total of Frequency MHz with a Class of b1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (frequency_mhz INTEGER, class VARCHAR)
SELECT SUM(frequency_mhz) FROM table_name_99 WHERE class = "b1"
Write a SQL query that answers the following question: Which ERP W has a Class of A, and a Call sign of wffc?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_50 (erp_w VARCHAR, class VARCHAR, call_sign VARCHAR)
SELECT erp_w FROM table_name_50 WHERE class = "a" AND call_sign = "wffc"
Write a SQL query that answers the following question: Which class City of license of ferrum, virginia?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (class VARCHAR, city_of_license VARCHAR)
SELECT class FROM table_name_83 WHERE city_of_license = "ferrum, virginia"
Write a SQL query that answers the following question: Which call sign has a Class of A, and a Frequency MHz of 88.7?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_1 (call_sign VARCHAR, class VARCHAR, frequency_mhz VARCHAR)
SELECT call_sign FROM table_name_1 WHERE class = "a" AND frequency_mhz = 88.7
Write a SQL query that answers the following question: what heat number had a time of 58.44?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_49 (heat VARCHAR, time VARCHAR)
SELECT COUNT(heat) FROM table_name_49 WHERE time = "58.44"
Write a SQL query that answers the following question: what lane was new zealand in?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_86 (lane VARCHAR, nationality VARCHAR)
SELECT lane FROM table_name_86 WHERE nationality = "new zealand"
Write a SQL query that answers the following question: What stage of the race was held on the course Reggio Calabria to Catanzaro?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (stage VARCHAR, course VARCHAR)
SELECT stage FROM table_name_89 WHERE course = "reggio calabria to catanzaro"
Write a SQL query that answers the following question: Who was the winner for the Rome to Teramo course?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (winner VARCHAR, course VARCHAR)
SELECT winner FROM table_name_97 WHERE course = "rome to teramo"
Write a SQL query that answers the following question: Who was the winner of stage 11?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (winner VARCHAR, stage VARCHAR)
SELECT winner FROM table_name_25 WHERE stage = "11"
Write a SQL query that answers the following question: What is the average Apps of indonesia with Goals smaller than 1000?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (apps INTEGER, country VARCHAR, goals VARCHAR)
SELECT AVG(apps) FROM table_name_64 WHERE country = "indonesia" AND goals < 1000
Write a SQL query that answers the following question: What division is Traktor Tashkent in 2005?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (division VARCHAR, team VARCHAR, season VARCHAR)
SELECT division FROM table_name_83 WHERE team = "traktor tashkent" AND season = "2005"
Write a SQL query that answers the following question: How many apps does Uzbekistan have in 2003?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (apps VARCHAR, country VARCHAR, season VARCHAR)
SELECT apps FROM table_name_41 WHERE country = "uzbekistan" AND season = "2003"
Write a SQL query that answers the following question: What was the attendance at the game when the record was 74-77?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_5 (attendance VARCHAR, record VARCHAR)
SELECT attendance FROM table_name_5 WHERE record = "74-77"
Write a SQL query that answers the following question: What was score of the game when the record was 72-74?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_23 WHERE record = "72-74"
Write a SQL query that answers the following question: What were the air-dates of the episodes before episode 4 that had a BBC One weekly ranking of 6?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (airdate VARCHAR, episode_no VARCHAR, bbc_one_weekly_ranking VARCHAR)
SELECT airdate FROM table_name_34 WHERE episode_no < 4 AND bbc_one_weekly_ranking = 6
Write a SQL query that answers the following question: What was the total viewership for BBC One weekly rankings larger than 7, before episode 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_30 (total_viewers VARCHAR, bbc_one_weekly_ranking VARCHAR, episode_no VARCHAR)
SELECT total_viewers FROM table_name_30 WHERE bbc_one_weekly_ranking > 7 AND episode_no < 4
Write a SQL query that answers the following question: Name the most rank with bronze of 0 and silver more than 1 and gold more than 0
The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (rank INTEGER, gold VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT MAX(rank) FROM table_name_54 WHERE bronze = 0 AND silver > 1 AND gold > 0
Write a SQL query that answers the following question: Name the average silver with total less than 1
The relevant table was constructed using the following SQL : CREATE TABLE table_name_5 (silver INTEGER, total INTEGER)
SELECT AVG(silver) FROM table_name_5 WHERE total < 1
Write a SQL query that answers the following question: Name the average year for result of nominated
The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (year INTEGER, result VARCHAR)
SELECT AVG(year) FROM table_name_47 WHERE result = "nominated"
Write a SQL query that answers the following question: Name the nominated work for 1996 and festival of black maria film and video festival
The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (nominated_work VARCHAR, year VARCHAR, festival VARCHAR)
SELECT nominated_work FROM table_name_7 WHERE year = 1996 AND festival = "black maria film and video festival"
Write a SQL query that answers the following question: What was the date of the away game that they lost to Accrington?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (date VARCHAR, team VARCHAR, venue VARCHAR, win_draw_lose VARCHAR)
SELECT date FROM table_name_6 WHERE venue = "away" AND win_draw_lose = "lost" AND team = "accrington"
Write a SQL query that answers the following question: What was the date of the home game against Accrington?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (date VARCHAR, team VARCHAR, venue VARCHAR)
SELECT date FROM table_name_65 WHERE team = "accrington" AND venue = "home"
Write a SQL query that answers the following question: What was the result of the home game against Derby County?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (win_draw_lose VARCHAR, venue VARCHAR, team VARCHAR)
SELECT win_draw_lose FROM table_name_71 WHERE venue = "home" AND team = "derby county"
Write a SQL query that answers the following question: What is the Standard cost (USD) by hans Oischinger Creator ?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_27 (standard_cost__usd_ VARCHAR, creator VARCHAR)
SELECT standard_cost__usd_ FROM table_name_27 WHERE creator = "hans oischinger"
Write a SQL query that answers the following question: What is the Standard cost (USD) of Kwin team creator?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (standard_cost__usd_ VARCHAR, creator VARCHAR)
SELECT standard_cost__usd_ FROM table_name_95 WHERE creator = "kwin team"
Write a SQL query that answers the following question: Who is the Creator that has a version of 0.5.2 (part of compiz fusion release)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_45 (creator VARCHAR, latest_stable_version VARCHAR)
SELECT creator FROM table_name_45 WHERE latest_stable_version = "0.5.2 (part of compiz fusion release)"
Write a SQL query that answers the following question: Who is a Creator of hyriand?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (name VARCHAR, creator VARCHAR)
SELECT name FROM table_name_47 WHERE creator = "hyriand"
Write a SQL query that answers the following question: What is the number of people who attended the game later than game 6?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (attendance VARCHAR, game INTEGER)
SELECT COUNT(attendance) FROM table_name_68 WHERE game > 6
Write a SQL query that answers the following question: Which title has a year later than 1986 with an album as the format?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_29 (title VARCHAR, year VARCHAR, format_s_ VARCHAR)
SELECT title FROM table_name_29 WHERE year > 1986 AND format_s_ = "album"
Write a SQL query that answers the following question: Which is the average year with the date of February 24?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (year INTEGER, date VARCHAR)
SELECT AVG(year) FROM table_name_70 WHERE date = "february 24"
Write a SQL query that answers the following question: Which award description has a year later than 1994 with a date of December 6?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_84 (award_description_s_ VARCHAR, year VARCHAR, date VARCHAR)
SELECT award_description_s_ FROM table_name_84 WHERE year > 1994 AND date = "december 6"
Write a SQL query that answers the following question: How many goals have a Date of december 4, 2010, and a Score of 1-0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (goal VARCHAR, date VARCHAR, score VARCHAR)
SELECT COUNT(goal) FROM table_name_91 WHERE date = "december 4, 2010" AND score = "1-0"
Write a SQL query that answers the following question: Which venue has a Competition of 2008 myanmar grand royal challenge cup?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (venue VARCHAR, competition VARCHAR)
SELECT venue FROM table_name_91 WHERE competition = "2008 myanmar grand royal challenge cup"
Write a SQL query that answers the following question: Which venue has a Goal of 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (venue VARCHAR, goal VARCHAR)
SELECT venue FROM table_name_62 WHERE goal = 4
Write a SQL query that answers the following question: What is the largest goal with a Score of 3-0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_14 (goal INTEGER, score VARCHAR)
SELECT MAX(goal) FROM table_name_14 WHERE score = "3-0"
Write a SQL query that answers the following question: Who did Bruno Soares and a partner face in the finals on a clay surface on August 1, 2010?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (opponents_in_the_final VARCHAR, date VARCHAR, partnering VARCHAR, surface VARCHAR)
SELECT opponents_in_the_final FROM table_name_37 WHERE partnering = "bruno soares" AND surface = "clay" AND date = "august 1, 2010"
Write a SQL query that answers the following question: What surface was played on that resulted in a score of 4–6, 6–2, [10–7]?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (surface VARCHAR, score VARCHAR)
SELECT surface FROM table_name_67 WHERE score = "4–6, 6–2, [10–7]"
Write a SQL query that answers the following question: What was the outcome on May 25, 2009?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (outcome VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_55 WHERE date = "may 25, 2009"
Write a SQL query that answers the following question: What was the outcome on May 18, 2008?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (outcome VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_55 WHERE date = "may 18, 2008"
Write a SQL query that answers the following question: what is the place for Heath Slocum?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_53 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_53 WHERE player = "heath slocum"
Write a SQL query that answers the following question: What is the attendance for august 29?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_9 WHERE date = "august 29"
Write a SQL query that answers the following question: Which loss has an Opponent of @ angels, and a Date of august 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (loss VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT loss FROM table_name_47 WHERE opponent = "@ angels" AND date = "august 1"
Write a SQL query that answers the following question: Which score has an Attendance of 31,178?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (score VARCHAR, attendance VARCHAR)
SELECT score FROM table_name_99 WHERE attendance = "31,178"
Write a SQL query that answers the following question: Which record has a Date of august 28?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_8 WHERE date = "august 28"
Write a SQL query that answers the following question: Which loss has an Attendance of 23,952?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (loss VARCHAR, attendance VARCHAR)
SELECT loss FROM table_name_55 WHERE attendance = "23,952"
Write a SQL query that answers the following question: Which opponent has a Loss of corcoran (4-4)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_28 (opponent VARCHAR, loss VARCHAR)
SELECT opponent FROM table_name_28 WHERE loss = "corcoran (4-4)"
Write a SQL query that answers the following question: What is the location of the gold medal match?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_30 (location VARCHAR, competition VARCHAR)
SELECT location FROM table_name_30 WHERE competition = "gold medal match"
Write a SQL query that answers the following question: What was the lineup that resulted in 1-0 AET W?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_29 (lineup VARCHAR, result VARCHAR)
SELECT lineup FROM table_name_29 WHERE result = "1-0 aet w"
Write a SQL query that answers the following question: What was the result of match 25?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (result VARCHAR, match VARCHAR)
SELECT result FROM table_name_97 WHERE match = "25"
Write a SQL query that answers the following question: What is the result of the London 2012 Women's Olympic Football Tournament?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_13 (result VARCHAR, location VARCHAR)
SELECT result FROM table_name_13 WHERE location = "london 2012 women's olympic football tournament"
Write a SQL query that answers the following question: What was the score of the game that had a loss of Wegman (2-6)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (score VARCHAR, loss VARCHAR)
SELECT score FROM table_name_7 WHERE loss = "wegman (2-6)"
Write a SQL query that answers the following question: What was the record at the game that had a loss of Blyleven (4-5)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (record VARCHAR, loss VARCHAR)
SELECT record FROM table_name_55 WHERE loss = "blyleven (4-5)"
Write a SQL query that answers the following question: Name the city with july of 88 °f / 31.1 °c
The relevant table was constructed using the following SQL : CREATE TABLE table_name_74 (city VARCHAR, jul VARCHAR)
SELECT city FROM table_name_74 WHERE jul = "88 °f / 31.1 °c"
Write a SQL query that answers the following question: Name the city with Feb of 66 °f / 18.9 °c
The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (city VARCHAR, feb VARCHAR)
SELECT city FROM table_name_63 WHERE feb = "66 °f / 18.9 °c"
Write a SQL query that answers the following question: Name the city with september of 83 °f / 28.3 °c
The relevant table was constructed using the following SQL : CREATE TABLE table_name_15 (city VARCHAR, sep VARCHAR)
SELECT city FROM table_name_15 WHERE sep = "83 °f / 28.3 °c"
Write a SQL query that answers the following question: Name the june when it has july of 84 °f / 28.9 °c
The relevant table was constructed using the following SQL : CREATE TABLE table_name_28 (jun VARCHAR, jul VARCHAR)
SELECT jun FROM table_name_28 WHERE jul = "84 °f / 28.9 °c"
Write a SQL query that answers the following question: What Time has Date of May 9?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_84 (time VARCHAR, date VARCHAR)
SELECT time FROM table_name_84 WHERE date = "may 9"
Write a SQL query that answers the following question: What is the lowest roll number of Katikati college?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (roll INTEGER, name VARCHAR)
SELECT MIN(roll) FROM table_name_37 WHERE name = "katikati college"
Write a SQL query that answers the following question: What is the highest roll number of the school in Te puna with a decile larger than 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_85 (roll INTEGER, decile VARCHAR, area VARCHAR)
SELECT MAX(roll) FROM table_name_85 WHERE decile > 2 AND area = "te puna"
Write a SQL query that answers the following question: What is the roll number of Te Puke Intermediate, which has a decile of 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (roll VARCHAR, decile VARCHAR, name VARCHAR)
SELECT roll FROM table_name_62 WHERE decile = 4 AND name = "te puke intermediate"
Write a SQL query that answers the following question: What is the highest roll number of the school with a state authority and a decile smaller than 8?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_79 (roll INTEGER, authority VARCHAR, decile VARCHAR)
SELECT MAX(roll) FROM table_name_79 WHERE authority = "state" AND decile < 8
Write a SQL query that answers the following question: What is the total value for Lost, when the value for Points is greater than 21, and when the value for Draw is 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_10 (lost INTEGER, points VARCHAR, draw VARCHAR)
SELECT SUM(lost) FROM table_name_10 WHERE points > 21 AND draw = 2
Write a SQL query that answers the following question: What is the total number of Goals Scored, when the Team is San Salvador F.C., and when the Points are less than 10?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_33 (goals_scored INTEGER, team VARCHAR, points VARCHAR)
SELECT MAX(goals_scored) FROM table_name_33 WHERE team = "san salvador f.c." AND points < 10
Write a SQL query that answers the following question: What are the total amount of Goals Conceded when the Points are less than 26, and when the value for Played is less than 18?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_86 (goals_conceded INTEGER, points VARCHAR, played VARCHAR)
SELECT SUM(goals_conceded) FROM table_name_86 WHERE points < 26 AND played < 18
Write a SQL query that answers the following question: What is the average value for Lost, when the value for Goals Scored is greater than 20, and when the value for Played is less than 18?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (lost INTEGER, goals_scored VARCHAR, played VARCHAR)
SELECT AVG(lost) FROM table_name_95 WHERE goals_scored > 20 AND played < 18
Write a SQL query that answers the following question: What is score of the game played in place t8 with Byron Nelson playing?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_20 (score VARCHAR, place VARCHAR, player VARCHAR)
SELECT score FROM table_name_20 WHERE place = "t8" AND player = "byron nelson"
Write a SQL query that answers the following question: What is the sum of Money of the game that was played in the United States with Sam Snead as a player?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (money___ INTEGER, country VARCHAR, player VARCHAR)
SELECT SUM(money___) AS $__ FROM table_name_55 WHERE country = "united states" AND player = "sam snead"
Write a SQL query that answers the following question: What is the Money ($) of the game with a score of 69-74-70-73=286?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (money___ INTEGER, score VARCHAR)
SELECT MAX(money___) AS $__ FROM table_name_57 WHERE score = 69 - 74 - 70 - 73 = 286
Write a SQL query that answers the following question: Name the mountains classification which has a young rider classification of francesco casagrande and integiro classification of not awarded with stage of 2
The relevant table was constructed using the following SQL : CREATE TABLE table_name_82 (mountains_classification VARCHAR, stage VARCHAR, young_rider_classification VARCHAR, intergiro_classification VARCHAR)
SELECT mountains_classification FROM table_name_82 WHERE young_rider_classification = "francesco casagrande" AND intergiro_classification = "not awarded" AND stage = "2"
Write a SQL query that answers the following question: Name the winner for adriano baffi and integiro classification of ján svorada for stage of 13
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (winner VARCHAR, stage VARCHAR, points_classification VARCHAR, intergiro_classification VARCHAR)
SELECT winner FROM table_name_89 WHERE points_classification = "adriano baffi" AND intergiro_classification = "ján svorada" AND stage = "13"
Write a SQL query that answers the following question: Name trofeo fast team with young rider classification of francesco casagrande and stage of 10
The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (trofeo_fast_team VARCHAR, young_rider_classification VARCHAR, stage VARCHAR)
SELECT trofeo_fast_team FROM table_name_55 WHERE young_rider_classification = "francesco casagrande" AND stage = "10"
Write a SQL query that answers the following question: What is the sum of the total for a routine score of 26.6?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_69 (total INTEGER, routine_score VARCHAR)
SELECT SUM(total) FROM table_name_69 WHERE routine_score = 26.6
Write a SQL query that answers the following question: Name the january when april is courtney rachel culkin
The relevant table was constructed using the following SQL : CREATE TABLE table_name_53 (january VARCHAR, april VARCHAR)
SELECT january FROM table_name_53 WHERE april = "courtney rachel culkin"
Write a SQL query that answers the following question: Name the october when november is buffy tyler
The relevant table was constructed using the following SQL : CREATE TABLE table_name_17 (october VARCHAR, november VARCHAR)
SELECT october FROM table_name_17 WHERE november = "buffy tyler"
Write a SQL query that answers the following question: Name the october when the september is dalene kurtis
The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (october VARCHAR, september VARCHAR)
SELECT october FROM table_name_47 WHERE september = "dalene kurtis"