question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Name the sum of 2010 for 2000 of 17 and 2005 more than 16
CREATE TABLE table_name_53 (Id VARCHAR)
SELECT SUM(2010) FROM table_name_53 WHERE 2000 = 17 AND 2005 > 16
### Context: CREATE TABLE table_name_53 (Id VARCHAR) ### Question: Name the sum of 2010 for 2000 of 17 and 2005 more than 16 ### Answer: SELECT SUM(2010) FROM table_name_53 WHERE 2000 = 17 AND 2005 > 16
What is the total of crowd at Venue of mcg?
CREATE TABLE table_name_7 (crowd INTEGER, venue VARCHAR)
SELECT SUM(crowd) FROM table_name_7 WHERE venue = "mcg"
### Context: CREATE TABLE table_name_7 (crowd INTEGER, venue VARCHAR) ### Question: What is the total of crowd at Venue of mcg? ### Answer: SELECT SUM(crowd) FROM table_name_7 WHERE venue = "mcg"
Tell me the number of regions with an area of 58.81
CREATE TABLE table_name_76 (region VARCHAR, area__km_2__ VARCHAR)
SELECT COUNT(region) FROM table_name_76 WHERE area__km_2__ = 58.81
### Context: CREATE TABLE table_name_76 (region VARCHAR, area__km_2__ VARCHAR) ### Question: Tell me the number of regions with an area of 58.81 ### Answer: SELECT COUNT(region) FROM table_name_76 WHERE area__km_2__ = 58.81
what is the rank when the bronze is less than 0?
CREATE TABLE table_name_63 (rank VARCHAR, bronze INTEGER)
SELECT COUNT(rank) FROM table_name_63 WHERE bronze < 0
### Context: CREATE TABLE table_name_63 (rank VARCHAR, bronze INTEGER) ### Question: what is the rank when the bronze is less than 0? ### Answer: SELECT COUNT(rank) FROM table_name_63 WHERE bronze < 0
what is the highest rank when the bronze is less than 1 and the total is less than 1?
CREATE TABLE table_name_83 (rank INTEGER, bronze VARCHAR, total VARCHAR)
SELECT MAX(rank) FROM table_name_83 WHERE bronze < 1 AND total < 1
### Context: CREATE TABLE table_name_83 (rank INTEGER, bronze VARCHAR, total VARCHAR) ### Question: what is the highest rank when the bronze is less than 1 and the total is less than 1? ### Answer: SELECT MAX(rank) FROM table_name_83 WHERE bronze < 1 AND total < 1
what is the lowest amount of silver when the gold is less than 0?
CREATE TABLE table_name_70 (silver INTEGER, gold INTEGER)
SELECT MIN(silver) FROM table_name_70 WHERE gold < 0
### Context: CREATE TABLE table_name_70 (silver INTEGER, gold INTEGER) ### Question: what is the lowest amount of silver when the gold is less than 0? ### Answer: SELECT MIN(silver) FROM table_name_70 WHERE gold < 0
what is the average number of gold when the rank is more than 5?
CREATE TABLE table_name_5 (gold INTEGER, rank INTEGER)
SELECT AVG(gold) FROM table_name_5 WHERE rank > 5
### Context: CREATE TABLE table_name_5 (gold INTEGER, rank INTEGER) ### Question: what is the average number of gold when the rank is more than 5? ### Answer: SELECT AVG(gold) FROM table_name_5 WHERE rank > 5
what is the highest amount of silver when gold is 0 for soviet union?
CREATE TABLE table_name_50 (silver INTEGER, gold VARCHAR, nation VARCHAR)
SELECT MAX(silver) FROM table_name_50 WHERE gold = 0 AND nation = "soviet union"
### Context: CREATE TABLE table_name_50 (silver INTEGER, gold VARCHAR, nation VARCHAR) ### Question: what is the highest amount of silver when gold is 0 for soviet union? ### Answer: SELECT MAX(silver) FROM table_name_50 WHERE gold = 0 AND nation = "soviet union"
What position does adam rachel play?
CREATE TABLE table_name_35 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_35 WHERE player = "adam rachel"
### Context: CREATE TABLE table_name_35 (position VARCHAR, player VARCHAR) ### Question: What position does adam rachel play? ### Answer: SELECT position FROM table_name_35 WHERE player = "adam rachel"
What player has over 1 first apperance and over 32 first team goals?
CREATE TABLE table_name_97 (player VARCHAR, first_team_appearances VARCHAR, first_team_goals VARCHAR)
SELECT player FROM table_name_97 WHERE first_team_appearances > 1 AND first_team_goals = 32
### Context: CREATE TABLE table_name_97 (player VARCHAR, first_team_appearances VARCHAR, first_team_goals VARCHAR) ### Question: What player has over 1 first apperance and over 32 first team goals? ### Answer: SELECT player FROM table_name_97 WHERE first_team_appearances > 1 AND first_team_goals = 32
What is the average speed for ships before 1974 with over 1.73 passengers?
CREATE TABLE table_name_31 (speed INTEGER, year VARCHAR, passengers VARCHAR)
SELECT AVG(speed) FROM table_name_31 WHERE year < 1974 AND passengers > 1.73
### Context: CREATE TABLE table_name_31 (speed INTEGER, year VARCHAR, passengers VARCHAR) ### Question: What is the average speed for ships before 1974 with over 1.73 passengers? ### Answer: SELECT AVG(speed) FROM table_name_31 WHERE year < 1974 AND passengers > 1.73
How many vessels are named aqua jewel?
CREATE TABLE table_name_11 (vessels VARCHAR, ship_name VARCHAR)
SELECT COUNT(vessels) FROM table_name_11 WHERE ship_name = "aqua jewel"
### Context: CREATE TABLE table_name_11 (vessels VARCHAR, ship_name VARCHAR) ### Question: How many vessels are named aqua jewel? ### Answer: SELECT COUNT(vessels) FROM table_name_11 WHERE ship_name = "aqua jewel"
How many districts in Baltimore City does Cheryl Glenn dictate?
CREATE TABLE table_name_40 (district VARCHAR, place_of_birth VARCHAR, delegate VARCHAR)
SELECT COUNT(district) FROM table_name_40 WHERE place_of_birth = "baltimore city" AND delegate = "cheryl glenn"
### Context: CREATE TABLE table_name_40 (district VARCHAR, place_of_birth VARCHAR, delegate VARCHAR) ### Question: How many districts in Baltimore City does Cheryl Glenn dictate? ### Answer: SELECT COUNT(district) FROM table_name_40 WHERE place_of_birth = "baltimore city" AND delegate = "cheryl glenn"
Which party belongs to district 41, and is delegated by Jill P. Carter?
CREATE TABLE table_name_61 (party VARCHAR, district VARCHAR, delegate VARCHAR)
SELECT party FROM table_name_61 WHERE district = 41 AND delegate = "jill p. carter"
### Context: CREATE TABLE table_name_61 (party VARCHAR, district VARCHAR, delegate VARCHAR) ### Question: Which party belongs to district 41, and is delegated by Jill P. Carter? ### Answer: SELECT party FROM table_name_61 WHERE district = 41 AND delegate = "jill p. carter"
Where was the place of birth for the delegate who took office after 1982, delegates a district smaller than 43 and belongs to a Health and Government operations committee?
CREATE TABLE table_name_31 (place_of_birth VARCHAR, committee VARCHAR, took_office VARCHAR, district VARCHAR)
SELECT place_of_birth FROM table_name_31 WHERE took_office > 1982 AND district < 43 AND committee = "health and government operations"
### Context: CREATE TABLE table_name_31 (place_of_birth VARCHAR, committee VARCHAR, took_office VARCHAR, district VARCHAR) ### Question: Where was the place of birth for the delegate who took office after 1982, delegates a district smaller than 43 and belongs to a Health and Government operations committee? ### Answer: SELECT place_of_birth FROM table_name_31 WHERE took_office > 1982 AND district < 43 AND committee = "health and government operations"
Where was the delegate belonging to the Judiciary committee of district 43 born?
CREATE TABLE table_name_24 (place_of_birth VARCHAR, committee VARCHAR, district VARCHAR)
SELECT place_of_birth FROM table_name_24 WHERE committee = "judiciary" AND district = 43
### Context: CREATE TABLE table_name_24 (place_of_birth VARCHAR, committee VARCHAR, district VARCHAR) ### Question: Where was the delegate belonging to the Judiciary committee of district 43 born? ### Answer: SELECT place_of_birth FROM table_name_24 WHERE committee = "judiciary" AND district = 43
What is the largest district for delegate Cheryl Glenn, that she had taken after 2006?
CREATE TABLE table_name_30 (district INTEGER, delegate VARCHAR, took_office VARCHAR)
SELECT MAX(district) FROM table_name_30 WHERE delegate = "cheryl glenn" AND took_office > 2006
### Context: CREATE TABLE table_name_30 (district INTEGER, delegate VARCHAR, took_office VARCHAR) ### Question: What is the largest district for delegate Cheryl Glenn, that she had taken after 2006? ### Answer: SELECT MAX(district) FROM table_name_30 WHERE delegate = "cheryl glenn" AND took_office > 2006
What is the highest placing for marie mcneil / robert mccall, with less than 168.58?
CREATE TABLE table_name_82 (placings INTEGER, name VARCHAR, points VARCHAR)
SELECT MAX(placings) FROM table_name_82 WHERE name = "marie mcneil / robert mccall" AND points < 168.58
### Context: CREATE TABLE table_name_82 (placings INTEGER, name VARCHAR, points VARCHAR) ### Question: What is the highest placing for marie mcneil / robert mccall, with less than 168.58? ### Answer: SELECT MAX(placings) FROM table_name_82 WHERE name = "marie mcneil / robert mccall" AND points < 168.58
What was the date of the Mavericks home game?
CREATE TABLE table_name_25 (date VARCHAR, home VARCHAR)
SELECT date FROM table_name_25 WHERE home = "mavericks"
### Context: CREATE TABLE table_name_25 (date VARCHAR, home VARCHAR) ### Question: What was the date of the Mavericks home game? ### Answer: SELECT date FROM table_name_25 WHERE home = "mavericks"
What is the highest displacement value for the R Fwd Auto Phase1?
CREATE TABLE table_name_12 (displacement__cc_ INTEGER, model VARCHAR)
SELECT MAX(displacement__cc_) FROM table_name_12 WHERE model = "r fwd auto phase1"
### Context: CREATE TABLE table_name_12 (displacement__cc_ INTEGER, model VARCHAR) ### Question: What is the highest displacement value for the R Fwd Auto Phase1? ### Answer: SELECT MAX(displacement__cc_) FROM table_name_12 WHERE model = "r fwd auto phase1"
What team played at lake oval while away?
CREATE TABLE table_name_51 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_51 WHERE venue = "lake oval"
### Context: CREATE TABLE table_name_51 (away_team VARCHAR, venue VARCHAR) ### Question: What team played at lake oval while away? ### Answer: SELECT away_team FROM table_name_51 WHERE venue = "lake oval"
Name the number of silver when gold is less than 1 and bronze is 0 when total is less than 2
CREATE TABLE table_name_18 (silver VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR)
SELECT COUNT(silver) FROM table_name_18 WHERE gold < 1 AND bronze = 0 AND total < 2
### Context: CREATE TABLE table_name_18 (silver VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR) ### Question: Name the number of silver when gold is less than 1 and bronze is 0 when total is less than 2 ### Answer: SELECT COUNT(silver) FROM table_name_18 WHERE gold < 1 AND bronze = 0 AND total < 2
What is the traffic direction of 70th street?
CREATE TABLE table_name_88 (traffic_direction VARCHAR, street VARCHAR)
SELECT traffic_direction FROM table_name_88 WHERE street = "70th street"
### Context: CREATE TABLE table_name_88 (traffic_direction VARCHAR, street VARCHAR) ### Question: What is the traffic direction of 70th street? ### Answer: SELECT traffic_direction FROM table_name_88 WHERE street = "70th street"
What is the traffic direction of 64th street with 2nd avenue to the west and 1 lane?
CREATE TABLE table_name_8 (traffic_direction VARCHAR, street VARCHAR, west VARCHAR, _number_of_lanes VARCHAR)
SELECT traffic_direction FROM table_name_8 WHERE west = "2nd avenue" AND _number_of_lanes = "1" AND street = "64th street"
### Context: CREATE TABLE table_name_8 (traffic_direction VARCHAR, street VARCHAR, west VARCHAR, _number_of_lanes VARCHAR) ### Question: What is the traffic direction of 64th street with 2nd avenue to the west and 1 lane? ### Answer: SELECT traffic_direction FROM table_name_8 WHERE west = "2nd avenue" AND _number_of_lanes = "1" AND street = "64th street"
What is the traffic direction of 97th street?
CREATE TABLE table_name_94 (traffic_direction VARCHAR, street VARCHAR)
SELECT traffic_direction FROM table_name_94 WHERE street = "97th street"
### Context: CREATE TABLE table_name_94 (traffic_direction VARCHAR, street VARCHAR) ### Question: What is the traffic direction of 97th street? ### Answer: SELECT traffic_direction FROM table_name_94 WHERE street = "97th street"
What is the # of lanes on 20th street?
CREATE TABLE table_name_43 (_number_of_lanes VARCHAR, street VARCHAR)
SELECT _number_of_lanes FROM table_name_43 WHERE street = "20th street"
### Context: CREATE TABLE table_name_43 (_number_of_lanes VARCHAR, street VARCHAR) ### Question: What is the # of lanes on 20th street? ### Answer: SELECT _number_of_lanes FROM table_name_43 WHERE street = "20th street"
Who drove the Marlboro Mclaren Peugeot?
CREATE TABLE table_name_40 (driver VARCHAR, entrant VARCHAR)
SELECT driver FROM table_name_40 WHERE entrant = "marlboro mclaren peugeot"
### Context: CREATE TABLE table_name_40 (driver VARCHAR, entrant VARCHAR) ### Question: Who drove the Marlboro Mclaren Peugeot? ### Answer: SELECT driver FROM table_name_40 WHERE entrant = "marlboro mclaren peugeot"
What tyre did Mika Salo use for team Lotus?
CREATE TABLE table_name_93 (tyre VARCHAR, entrant VARCHAR, driver VARCHAR)
SELECT tyre FROM table_name_93 WHERE entrant = "team lotus" AND driver = "mika salo"
### Context: CREATE TABLE table_name_93 (tyre VARCHAR, entrant VARCHAR, driver VARCHAR) ### Question: What tyre did Mika Salo use for team Lotus? ### Answer: SELECT tyre FROM table_name_93 WHERE entrant = "team lotus" AND driver = "mika salo"
Which driver drove the Tourtel Larrousse F1?
CREATE TABLE table_name_99 (driver VARCHAR, entrant VARCHAR)
SELECT driver FROM table_name_99 WHERE entrant = "tourtel larrousse f1"
### Context: CREATE TABLE table_name_99 (driver VARCHAR, entrant VARCHAR) ### Question: Which driver drove the Tourtel Larrousse F1? ### Answer: SELECT driver FROM table_name_99 WHERE entrant = "tourtel larrousse f1"
Who constructed Gerhard Berger car that went all rounds?
CREATE TABLE table_name_92 (constructor VARCHAR, rounds VARCHAR, driver VARCHAR)
SELECT constructor FROM table_name_92 WHERE rounds = "all" AND driver = "gerhard berger"
### Context: CREATE TABLE table_name_92 (constructor VARCHAR, rounds VARCHAR, driver VARCHAR) ### Question: Who constructed Gerhard Berger car that went all rounds? ### Answer: SELECT constructor FROM table_name_92 WHERE rounds = "all" AND driver = "gerhard berger"
Who visited phoenix with a Record of 2–5–0?
CREATE TABLE table_name_64 (visitor VARCHAR, home VARCHAR, record VARCHAR)
SELECT visitor FROM table_name_64 WHERE home = "phoenix" AND record = "2–5–0"
### Context: CREATE TABLE table_name_64 (visitor VARCHAR, home VARCHAR, record VARCHAR) ### Question: Who visited phoenix with a Record of 2–5–0? ### Answer: SELECT visitor FROM table_name_64 WHERE home = "phoenix" AND record = "2–5–0"
What decision had a Record of 3–5–0?
CREATE TABLE table_name_17 (decision VARCHAR, record VARCHAR)
SELECT decision FROM table_name_17 WHERE record = "3–5–0"
### Context: CREATE TABLE table_name_17 (decision VARCHAR, record VARCHAR) ### Question: What decision had a Record of 3–5–0? ### Answer: SELECT decision FROM table_name_17 WHERE record = "3–5–0"
What is the low attendance was based in phoenix with a Record of 1–0–0?
CREATE TABLE table_name_38 (attendance INTEGER, home VARCHAR, record VARCHAR)
SELECT MIN(attendance) FROM table_name_38 WHERE home = "phoenix" AND record = "1–0–0"
### Context: CREATE TABLE table_name_38 (attendance INTEGER, home VARCHAR, record VARCHAR) ### Question: What is the low attendance was based in phoenix with a Record of 1–0–0? ### Answer: SELECT MIN(attendance) FROM table_name_38 WHERE home = "phoenix" AND record = "1–0–0"
What was the score did phoenix have with a Record of 3–6–0 at home?
CREATE TABLE table_name_88 (score VARCHAR, home VARCHAR, record VARCHAR)
SELECT score FROM table_name_88 WHERE home = "phoenix" AND record = "3–6–0"
### Context: CREATE TABLE table_name_88 (score VARCHAR, home VARCHAR, record VARCHAR) ### Question: What was the score did phoenix have with a Record of 3–6–0 at home? ### Answer: SELECT score FROM table_name_88 WHERE home = "phoenix" AND record = "3–6–0"
What was the record while at home in Anaheim?
CREATE TABLE table_name_95 (record VARCHAR, home VARCHAR)
SELECT record FROM table_name_95 WHERE home = "anaheim"
### Context: CREATE TABLE table_name_95 (record VARCHAR, home VARCHAR) ### Question: What was the record while at home in Anaheim? ### Answer: SELECT record FROM table_name_95 WHERE home = "anaheim"
Which inning were the Minnesota Twins in on 06-07-1961?
CREATE TABLE table_name_86 (inning VARCHAR, team VARCHAR, date VARCHAR)
SELECT inning FROM table_name_86 WHERE team = "minnesota twins" AND date = "06-07-1961"
### Context: CREATE TABLE table_name_86 (inning VARCHAR, team VARCHAR, date VARCHAR) ### Question: Which inning were the Minnesota Twins in on 06-07-1961? ### Answer: SELECT inning FROM table_name_86 WHERE team = "minnesota twins" AND date = "06-07-1961"
Who was the away team at the game held at Arden Street Oval?
CREATE TABLE table_name_16 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_16 WHERE venue = "arden street oval"
### Context: CREATE TABLE table_name_16 (away_team VARCHAR, venue VARCHAR) ### Question: Who was the away team at the game held at Arden Street Oval? ### Answer: SELECT away_team FROM table_name_16 WHERE venue = "arden street oval"
What is the name of the venue that away team footscray played at?
CREATE TABLE table_name_91 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_91 WHERE away_team = "footscray"
### Context: CREATE TABLE table_name_91 (venue VARCHAR, away_team VARCHAR) ### Question: What is the name of the venue that away team footscray played at? ### Answer: SELECT venue FROM table_name_91 WHERE away_team = "footscray"
What date was the game played at princes park?
CREATE TABLE table_name_74 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_74 WHERE venue = "princes park"
### Context: CREATE TABLE table_name_74 (date VARCHAR, venue VARCHAR) ### Question: What date was the game played at princes park? ### Answer: SELECT date FROM table_name_74 WHERE venue = "princes park"
How many tracks were Recorded 1964-01-08?
CREATE TABLE table_name_75 (track VARCHAR, recorded VARCHAR)
SELECT COUNT(track) FROM table_name_75 WHERE recorded = "1964-01-08"
### Context: CREATE TABLE table_name_75 (track VARCHAR, recorded VARCHAR) ### Question: How many tracks were Recorded 1964-01-08? ### Answer: SELECT COUNT(track) FROM table_name_75 WHERE recorded = "1964-01-08"
WhatTranslation has a Composer of jacques brel, rod mckuen?
CREATE TABLE table_name_61 (translation VARCHAR, composer VARCHAR)
SELECT translation FROM table_name_61 WHERE composer = "jacques brel, rod mckuen"
### Context: CREATE TABLE table_name_61 (translation VARCHAR, composer VARCHAR) ### Question: WhatTranslation has a Composer of jacques brel, rod mckuen? ### Answer: SELECT translation FROM table_name_61 WHERE composer = "jacques brel, rod mckuen"
Which recording has a Track larger than 2, and a Translation of the last meal?
CREATE TABLE table_name_31 (recorded VARCHAR, track VARCHAR, translation VARCHAR)
SELECT recorded FROM table_name_31 WHERE track > 2 AND translation = "the last meal"
### Context: CREATE TABLE table_name_31 (recorded VARCHAR, track VARCHAR, translation VARCHAR) ### Question: Which recording has a Track larger than 2, and a Translation of the last meal? ### Answer: SELECT recorded FROM table_name_31 WHERE track > 2 AND translation = "the last meal"
Which title has a Track of 3?
CREATE TABLE table_name_90 (title VARCHAR, track VARCHAR)
SELECT title FROM table_name_90 WHERE track = 3
### Context: CREATE TABLE table_name_90 (title VARCHAR, track VARCHAR) ### Question: Which title has a Track of 3? ### Answer: SELECT title FROM table_name_90 WHERE track = 3
When was the home game when the New Jersey team's record became 7-23-7?
CREATE TABLE table_name_9 (date VARCHAR, home VARCHAR, record VARCHAR)
SELECT date FROM table_name_9 WHERE home = "new jersey" AND record = "7-23-7"
### Context: CREATE TABLE table_name_9 (date VARCHAR, home VARCHAR, record VARCHAR) ### Question: When was the home game when the New Jersey team's record became 7-23-7? ### Answer: SELECT date FROM table_name_9 WHERE home = "new jersey" AND record = "7-23-7"
What college has a pick of 11?
CREATE TABLE table_name_86 (college VARCHAR, pick VARCHAR)
SELECT college FROM table_name_86 WHERE pick = 11
### Context: CREATE TABLE table_name_86 (college VARCHAR, pick VARCHAR) ### Question: What college has a pick of 11? ### Answer: SELECT college FROM table_name_86 WHERE pick = 11
What is the average pick of Florida State?
CREATE TABLE table_name_28 (pick INTEGER, college VARCHAR)
SELECT AVG(pick) FROM table_name_28 WHERE college = "florida state"
### Context: CREATE TABLE table_name_28 (pick INTEGER, college VARCHAR) ### Question: What is the average pick of Florida State? ### Answer: SELECT AVG(pick) FROM table_name_28 WHERE college = "florida state"
What is the average pick of San Diego State?
CREATE TABLE table_name_63 (pick INTEGER, college VARCHAR)
SELECT AVG(pick) FROM table_name_63 WHERE college = "san diego state"
### Context: CREATE TABLE table_name_63 (pick INTEGER, college VARCHAR) ### Question: What is the average pick of San Diego State? ### Answer: SELECT AVG(pick) FROM table_name_63 WHERE college = "san diego state"
What is the lowest value for SP+FS for Miljan Begovic with a greater than 189 place?
CREATE TABLE table_name_64 (fs VARCHAR, sp INTEGER, name VARCHAR, placings VARCHAR)
SELECT MIN(sp) + fs FROM table_name_64 WHERE name = "miljan begovic" AND placings > 189
### Context: CREATE TABLE table_name_64 (fs VARCHAR, sp INTEGER, name VARCHAR, placings VARCHAR) ### Question: What is the lowest value for SP+FS for Miljan Begovic with a greater than 189 place? ### Answer: SELECT MIN(sp) + fs FROM table_name_64 WHERE name = "miljan begovic" AND placings > 189
What is the average points value for a rank less than 12 for David Santee?
CREATE TABLE table_name_42 (points INTEGER, rank VARCHAR, name VARCHAR)
SELECT AVG(points) FROM table_name_42 WHERE rank < 12 AND name = "david santee"
### Context: CREATE TABLE table_name_42 (points INTEGER, rank VARCHAR, name VARCHAR) ### Question: What is the average points value for a rank less than 12 for David Santee? ### Answer: SELECT AVG(points) FROM table_name_42 WHERE rank < 12 AND name = "david santee"
What is the total number for Rank with 185.16 points and a SP+FS value greater than 5?
CREATE TABLE table_name_44 (rank VARCHAR, points VARCHAR, sp VARCHAR, fs VARCHAR)
SELECT COUNT(rank) FROM table_name_44 WHERE points = 185.16 AND sp + fs > 5
### Context: CREATE TABLE table_name_44 (rank VARCHAR, points VARCHAR, sp VARCHAR, fs VARCHAR) ### Question: What is the total number for Rank with 185.16 points and a SP+FS value greater than 5? ### Answer: SELECT COUNT(rank) FROM table_name_44 WHERE points = 185.16 AND sp + fs > 5
What is the largest value for SP+FS with more than 164.56 points for Mitsuru Matsumura in a Rank greater than 1?
CREATE TABLE table_name_27 (fs VARCHAR, sp INTEGER, name VARCHAR, points VARCHAR, rank VARCHAR)
SELECT MAX(sp) + fs FROM table_name_27 WHERE points > 164.56 AND rank > 1 AND name = "mitsuru matsumura"
### Context: CREATE TABLE table_name_27 (fs VARCHAR, sp INTEGER, name VARCHAR, points VARCHAR, rank VARCHAR) ### Question: What is the largest value for SP+FS with more than 164.56 points for Mitsuru Matsumura in a Rank greater than 1? ### Answer: SELECT MAX(sp) + fs FROM table_name_27 WHERE points > 164.56 AND rank > 1 AND name = "mitsuru matsumura"
When phonetic realisation is [[[|u]]], what is the variant with niqqud?
CREATE TABLE table_name_84 (variant__with_niqqud__ VARCHAR, phonetic_realisation VARCHAR)
SELECT variant__with_niqqud__ FROM table_name_84 WHERE phonetic_realisation = "[[[|u]]]"
### Context: CREATE TABLE table_name_84 (variant__with_niqqud__ VARCHAR, phonetic_realisation VARCHAR) ### Question: When phonetic realisation is [[[|u]]], what is the variant with niqqud? ### Answer: SELECT variant__with_niqqud__ FROM table_name_84 WHERE phonetic_realisation = "[[[|u]]]"
When a variant without niqqud is as middle letter: וו with a phonemic value of /v/, what is the variant with niqqud?
CREATE TABLE table_name_53 (variant__with_niqqud__ VARCHAR, phonemic_value VARCHAR, without_niqqud VARCHAR)
SELECT variant__with_niqqud__ FROM table_name_53 WHERE phonemic_value = "/v/" AND without_niqqud = "as middle letter: וו"
### Context: CREATE TABLE table_name_53 (variant__with_niqqud__ VARCHAR, phonemic_value VARCHAR, without_niqqud VARCHAR) ### Question: When a variant without niqqud is as middle letter: וו with a phonemic value of /v/, what is the variant with niqqud? ### Answer: SELECT variant__with_niqqud__ FROM table_name_53 WHERE phonemic_value = "/v/" AND without_niqqud = "as middle letter: וו"
What is the phonetic realisation if the phonemic value is /v/ and the without niqqud is as initial letter: ו?
CREATE TABLE table_name_12 (phonetic_realisation VARCHAR, phonemic_value VARCHAR, without_niqqud VARCHAR)
SELECT phonetic_realisation FROM table_name_12 WHERE phonemic_value = "/v/" AND without_niqqud = "as initial letter: ו"
### Context: CREATE TABLE table_name_12 (phonetic_realisation VARCHAR, phonemic_value VARCHAR, without_niqqud VARCHAR) ### Question: What is the phonetic realisation if the phonemic value is /v/ and the without niqqud is as initial letter: ו? ### Answer: SELECT phonetic_realisation FROM table_name_12 WHERE phonemic_value = "/v/" AND without_niqqud = "as initial letter: ו"
Give me an english example of a variant with niqqud of וֹ?
CREATE TABLE table_name_96 (english_example VARCHAR, variant__with_niqqud__ VARCHAR)
SELECT english_example FROM table_name_96 WHERE variant__with_niqqud__ = "וֹ"
### Context: CREATE TABLE table_name_96 (english_example VARCHAR, variant__with_niqqud__ VARCHAR) ### Question: Give me an english example of a variant with niqqud of וֹ? ### Answer: SELECT english_example FROM table_name_96 WHERE variant__with_niqqud__ = "וֹ"
What is the variant with niqqud for a phonetic realisation of [[[|v]]]?
CREATE TABLE table_name_77 (variant__with_niqqud__ VARCHAR, phonetic_realisation VARCHAR)
SELECT variant__with_niqqud__ FROM table_name_77 WHERE phonetic_realisation = "[[[|v]]]"
### Context: CREATE TABLE table_name_77 (variant__with_niqqud__ VARCHAR, phonetic_realisation VARCHAR) ### Question: What is the variant with niqqud for a phonetic realisation of [[[|v]]]? ### Answer: SELECT variant__with_niqqud__ FROM table_name_77 WHERE phonetic_realisation = "[[[|v]]]"
If a variant without niqqud is as final letter: ו or יו, what is the phonetic realisation?
CREATE TABLE table_name_61 (phonetic_realisation VARCHAR, without_niqqud VARCHAR)
SELECT phonetic_realisation FROM table_name_61 WHERE without_niqqud = "as final letter: ו or יו"
### Context: CREATE TABLE table_name_61 (phonetic_realisation VARCHAR, without_niqqud VARCHAR) ### Question: If a variant without niqqud is as final letter: ו or יו, what is the phonetic realisation? ### Answer: SELECT phonetic_realisation FROM table_name_61 WHERE without_niqqud = "as final letter: ו or יו"
What position does pick 113 play?
CREATE TABLE table_name_96 (position VARCHAR, pick VARCHAR)
SELECT position FROM table_name_96 WHERE pick = 113
### Context: CREATE TABLE table_name_96 (position VARCHAR, pick VARCHAR) ### Question: What position does pick 113 play? ### Answer: SELECT position FROM table_name_96 WHERE pick = 113
What is the school of Victor Jones, who was picked further than number 225?
CREATE TABLE table_name_7 (school VARCHAR, pick VARCHAR, player VARCHAR)
SELECT school FROM table_name_7 WHERE pick > 225 AND player = "victor jones"
### Context: CREATE TABLE table_name_7 (school VARCHAR, pick VARCHAR, player VARCHAR) ### Question: What is the school of Victor Jones, who was picked further than number 225? ### Answer: SELECT school FROM table_name_7 WHERE pick > 225 AND player = "victor jones"
What is the total pick number of Virginia Tech?
CREATE TABLE table_name_68 (pick VARCHAR, school VARCHAR)
SELECT COUNT(pick) FROM table_name_68 WHERE school = "virginia tech"
### Context: CREATE TABLE table_name_68 (pick VARCHAR, school VARCHAR) ### Question: What is the total pick number of Virginia Tech? ### Answer: SELECT COUNT(pick) FROM table_name_68 WHERE school = "virginia tech"
What is the position of a player from North Carolina?
CREATE TABLE table_name_57 (position VARCHAR, school VARCHAR)
SELECT position FROM table_name_57 WHERE school = "north carolina"
### Context: CREATE TABLE table_name_57 (position VARCHAR, school VARCHAR) ### Question: What is the position of a player from North Carolina? ### Answer: SELECT position FROM table_name_57 WHERE school = "north carolina"
What is the home team score of St Kilda?
CREATE TABLE table_name_4 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_4 WHERE home_team = "st kilda"
### Context: CREATE TABLE table_name_4 (home_team VARCHAR) ### Question: What is the home team score of St Kilda? ### Answer: SELECT home_team AS score FROM table_name_4 WHERE home_team = "st kilda"
What is the date for home team Collingwood?
CREATE TABLE table_name_19 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_19 WHERE home_team = "collingwood"
### Context: CREATE TABLE table_name_19 (date VARCHAR, home_team VARCHAR) ### Question: What is the date for home team Collingwood? ### Answer: SELECT date FROM table_name_19 WHERE home_team = "collingwood"
What is the home team score for St Kilda?
CREATE TABLE table_name_52 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_52 WHERE home_team = "st kilda"
### Context: CREATE TABLE table_name_52 (home_team VARCHAR) ### Question: What is the home team score for St Kilda? ### Answer: SELECT home_team AS score FROM table_name_52 WHERE home_team = "st kilda"
Tell me the named after for diameter less than 19.2 and latitude more than -37.5 with longitude less than 67.3
CREATE TABLE table_name_97 (named VARCHAR, longitude VARCHAR, diameter__km_ VARCHAR, latitude VARCHAR)
SELECT named AS after FROM table_name_97 WHERE diameter__km_ < 19.2 AND latitude > -37.5 AND longitude < 67.3
### Context: CREATE TABLE table_name_97 (named VARCHAR, longitude VARCHAR, diameter__km_ VARCHAR, latitude VARCHAR) ### Question: Tell me the named after for diameter less than 19.2 and latitude more than -37.5 with longitude less than 67.3 ### Answer: SELECT named AS after FROM table_name_97 WHERE diameter__km_ < 19.2 AND latitude > -37.5 AND longitude < 67.3
Tell me the named for latitude of 6.4
CREATE TABLE table_name_61 (named VARCHAR, latitude VARCHAR)
SELECT named AS after FROM table_name_61 WHERE latitude = 6.4
### Context: CREATE TABLE table_name_61 (named VARCHAR, latitude VARCHAR) ### Question: Tell me the named for latitude of 6.4 ### Answer: SELECT named AS after FROM table_name_61 WHERE latitude = 6.4
Tell me the name for longitude more than 103.8 and latitude of -11.4
CREATE TABLE table_name_80 (name VARCHAR, longitude VARCHAR, latitude VARCHAR)
SELECT name FROM table_name_80 WHERE longitude > 103.8 AND latitude = -11.4
### Context: CREATE TABLE table_name_80 (name VARCHAR, longitude VARCHAR, latitude VARCHAR) ### Question: Tell me the name for longitude more than 103.8 and latitude of -11.4 ### Answer: SELECT name FROM table_name_80 WHERE longitude > 103.8 AND latitude = -11.4
Tell me the sum of longitude for diameter being 22.6 and latitude less than -12.4
CREATE TABLE table_name_65 (longitude INTEGER, diameter__km_ VARCHAR, latitude VARCHAR)
SELECT SUM(longitude) FROM table_name_65 WHERE diameter__km_ = 22.6 AND latitude < -12.4
### Context: CREATE TABLE table_name_65 (longitude INTEGER, diameter__km_ VARCHAR, latitude VARCHAR) ### Question: Tell me the sum of longitude for diameter being 22.6 and latitude less than -12.4 ### Answer: SELECT SUM(longitude) FROM table_name_65 WHERE diameter__km_ = 22.6 AND latitude < -12.4
What was the overall pick for Doug Sproule of the United States?
CREATE TABLE table_name_48 (overall VARCHAR, nationality VARCHAR, player VARCHAR)
SELECT overall FROM table_name_48 WHERE nationality = "united states" AND player = "doug sproule"
### Context: CREATE TABLE table_name_48 (overall VARCHAR, nationality VARCHAR, player VARCHAR) ### Question: What was the overall pick for Doug Sproule of the United States? ### Answer: SELECT overall FROM table_name_48 WHERE nationality = "united states" AND player = "doug sproule"
what is the lowest viewers (m) when the share is more than 13?
CREATE TABLE table_name_69 (viewers__m_ INTEGER, share INTEGER)
SELECT MIN(viewers__m_) FROM table_name_69 WHERE share > 13
### Context: CREATE TABLE table_name_69 (viewers__m_ INTEGER, share INTEGER) ### Question: what is the lowest viewers (m) when the share is more than 13? ### Answer: SELECT MIN(viewers__m_) FROM table_name_69 WHERE share > 13
what is the average rating when the air date is november 23, 2007?
CREATE TABLE table_name_46 (rating INTEGER, air_date VARCHAR)
SELECT AVG(rating) FROM table_name_46 WHERE air_date = "november 23, 2007"
### Context: CREATE TABLE table_name_46 (rating INTEGER, air_date VARCHAR) ### Question: what is the average rating when the air date is november 23, 2007? ### Answer: SELECT AVG(rating) FROM table_name_46 WHERE air_date = "november 23, 2007"
what is the total viewers (m) when the rating is 6.4 and the share is more than 11?
CREATE TABLE table_name_12 (viewers__m_ VARCHAR, rating VARCHAR, share VARCHAR)
SELECT COUNT(viewers__m_) FROM table_name_12 WHERE rating = 6.4 AND share > 11
### Context: CREATE TABLE table_name_12 (viewers__m_ VARCHAR, rating VARCHAR, share VARCHAR) ### Question: what is the total viewers (m) when the rating is 6.4 and the share is more than 11? ### Answer: SELECT COUNT(viewers__m_) FROM table_name_12 WHERE rating = 6.4 AND share > 11
Who wrote the episode that was directed by Terry Ingram?
CREATE TABLE table_name_58 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_name_58 WHERE directed_by = "terry ingram"
### Context: CREATE TABLE table_name_58 (written_by VARCHAR, directed_by VARCHAR) ### Question: Who wrote the episode that was directed by Terry Ingram? ### Answer: SELECT written_by FROM table_name_58 WHERE directed_by = "terry ingram"
What is the title of the episode that was directed by Roy Dupuis?
CREATE TABLE table_name_38 (title VARCHAR, directed_by VARCHAR)
SELECT title FROM table_name_38 WHERE directed_by = "roy dupuis"
### Context: CREATE TABLE table_name_38 (title VARCHAR, directed_by VARCHAR) ### Question: What is the title of the episode that was directed by Roy Dupuis? ### Answer: SELECT title FROM table_name_38 WHERE directed_by = "roy dupuis"
Who directed the episode that originally aired on February 25, 2001?
CREATE TABLE table_name_10 (directed_by VARCHAR, original_airdate VARCHAR)
SELECT directed_by FROM table_name_10 WHERE original_airdate = "february 25, 2001"
### Context: CREATE TABLE table_name_10 (directed_by VARCHAR, original_airdate VARCHAR) ### Question: Who directed the episode that originally aired on February 25, 2001? ### Answer: SELECT directed_by FROM table_name_10 WHERE original_airdate = "february 25, 2001"
What is the episode # of the episode that originally aired on January 21, 2001?
CREATE TABLE table_name_95 (episode__number VARCHAR, original_airdate VARCHAR)
SELECT episode__number FROM table_name_95 WHERE original_airdate = "january 21, 2001"
### Context: CREATE TABLE table_name_95 (episode__number VARCHAR, original_airdate VARCHAR) ### Question: What is the episode # of the episode that originally aired on January 21, 2001? ### Answer: SELECT episode__number FROM table_name_95 WHERE original_airdate = "january 21, 2001"
Who directed episode # 92 (4)?
CREATE TABLE table_name_21 (directed_by VARCHAR, episode__number VARCHAR)
SELECT directed_by FROM table_name_21 WHERE episode__number = "92 (4)"
### Context: CREATE TABLE table_name_21 (directed_by VARCHAR, episode__number VARCHAR) ### Question: Who directed episode # 92 (4)? ### Answer: SELECT directed_by FROM table_name_21 WHERE episode__number = "92 (4)"
what is the stream(s) and / or lake(s) when the date founded is 1959?
CREATE TABLE table_name_42 (stream_s__and___or_lake_s_ VARCHAR, date_founded VARCHAR)
SELECT stream_s__and___or_lake_s_ FROM table_name_42 WHERE date_founded = 1959
### Context: CREATE TABLE table_name_42 (stream_s__and___or_lake_s_ VARCHAR, date_founded VARCHAR) ### Question: what is the stream(s) and / or lake(s) when the date founded is 1959? ### Answer: SELECT stream_s__and___or_lake_s_ FROM table_name_42 WHERE date_founded = 1959
What is the area in acres (ha) for the park bald eagle state park?
CREATE TABLE table_name_20 (area_in_acres__ha_ VARCHAR, park_name VARCHAR)
SELECT area_in_acres__ha_ FROM table_name_20 WHERE park_name = "bald eagle state park"
### Context: CREATE TABLE table_name_20 (area_in_acres__ha_ VARCHAR, park_name VARCHAR) ### Question: What is the area in acres (ha) for the park bald eagle state park? ### Answer: SELECT area_in_acres__ha_ FROM table_name_20 WHERE park_name = "bald eagle state park"
what is the most recent date founded in elk county?
CREATE TABLE table_name_6 (date_founded INTEGER, county_or_counties VARCHAR)
SELECT MAX(date_founded) FROM table_name_6 WHERE county_or_counties = "elk county"
### Context: CREATE TABLE table_name_6 (date_founded INTEGER, county_or_counties VARCHAR) ### Question: what is the most recent date founded in elk county? ### Answer: SELECT MAX(date_founded) FROM table_name_6 WHERE county_or_counties = "elk county"
how many parks are name beltzville state park?
CREATE TABLE table_name_77 (date_founded VARCHAR, park_name VARCHAR)
SELECT COUNT(date_founded) FROM table_name_77 WHERE park_name = "beltzville state park"
### Context: CREATE TABLE table_name_77 (date_founded VARCHAR, park_name VARCHAR) ### Question: how many parks are name beltzville state park? ### Answer: SELECT COUNT(date_founded) FROM table_name_77 WHERE park_name = "beltzville state park"
Which rank has a total smaller than 1?
CREATE TABLE table_name_23 (rank INTEGER, total INTEGER)
SELECT AVG(rank) FROM table_name_23 WHERE total < 1
### Context: CREATE TABLE table_name_23 (rank INTEGER, total INTEGER) ### Question: Which rank has a total smaller than 1? ### Answer: SELECT AVG(rank) FROM table_name_23 WHERE total < 1
What is the year for the ocean?
CREATE TABLE table_name_47 (year VARCHAR, english_title VARCHAR)
SELECT year FROM table_name_47 WHERE english_title = "the ocean"
### Context: CREATE TABLE table_name_47 (year VARCHAR, english_title VARCHAR) ### Question: What is the year for the ocean? ### Answer: SELECT year FROM table_name_47 WHERE english_title = "the ocean"
Name the representation for om fjorten dage
CREATE TABLE table_name_59 (representing VARCHAR, original_title VARCHAR)
SELECT representing FROM table_name_59 WHERE original_title = "om fjorten dage"
### Context: CREATE TABLE table_name_59 (representing VARCHAR, original_title VARCHAR) ### Question: Name the representation for om fjorten dage ### Answer: SELECT representing FROM table_name_59 WHERE original_title = "om fjorten dage"
Name the representing for englar alheimsins
CREATE TABLE table_name_35 (representing VARCHAR, original_title VARCHAR)
SELECT representing FROM table_name_35 WHERE original_title = "englar alheimsins"
### Context: CREATE TABLE table_name_35 (representing VARCHAR, original_title VARCHAR) ### Question: Name the representing for englar alheimsins ### Answer: SELECT representing FROM table_name_35 WHERE original_title = "englar alheimsins"
Name the original title for years before 1977 and author of lagercrantz olof lagercrantz
CREATE TABLE table_name_53 (original_title VARCHAR, year VARCHAR, author VARCHAR)
SELECT original_title FROM table_name_53 WHERE year < 1977 AND author = "lagercrantz olof lagercrantz"
### Context: CREATE TABLE table_name_53 (original_title VARCHAR, year VARCHAR, author VARCHAR) ### Question: Name the original title for years before 1977 and author of lagercrantz olof lagercrantz ### Answer: SELECT original_title FROM table_name_53 WHERE year < 1977 AND author = "lagercrantz olof lagercrantz"
Name the representating for ingenjör andrées luftfärd
CREATE TABLE table_name_82 (representing VARCHAR, original_title VARCHAR)
SELECT representing FROM table_name_82 WHERE original_title = "ingenjör andrées luftfärd"
### Context: CREATE TABLE table_name_82 (representing VARCHAR, original_title VARCHAR) ### Question: Name the representating for ingenjör andrées luftfärd ### Answer: SELECT representing FROM table_name_82 WHERE original_title = "ingenjör andrées luftfärd"
What is the distance for the team time trial?
CREATE TABLE table_name_26 (distance VARCHAR, type VARCHAR)
SELECT distance FROM table_name_26 WHERE type = "team time trial"
### Context: CREATE TABLE table_name_26 (distance VARCHAR, type VARCHAR) ### Question: What is the distance for the team time trial? ### Answer: SELECT distance FROM table_name_26 WHERE type = "team time trial"
What was the course on 13 may?
CREATE TABLE table_name_99 (course VARCHAR, date VARCHAR)
SELECT course FROM table_name_99 WHERE date = "13 may"
### Context: CREATE TABLE table_name_99 (course VARCHAR, date VARCHAR) ### Question: What was the course on 13 may? ### Answer: SELECT course FROM table_name_99 WHERE date = "13 may"
What type has rest day as a course and was on 21 may?
CREATE TABLE table_name_83 (type VARCHAR, course VARCHAR, date VARCHAR)
SELECT type FROM table_name_83 WHERE course = "rest day" AND date = "21 may"
### Context: CREATE TABLE table_name_83 (type VARCHAR, course VARCHAR, date VARCHAR) ### Question: What type has rest day as a course and was on 21 may? ### Answer: SELECT type FROM table_name_83 WHERE course = "rest day" AND date = "21 may"
What's the race name that the driver Innes Ireland won?
CREATE TABLE table_name_3 (race_name VARCHAR, winning_driver VARCHAR)
SELECT race_name FROM table_name_3 WHERE winning_driver = "innes ireland"
### Context: CREATE TABLE table_name_3 (race_name VARCHAR, winning_driver VARCHAR) ### Question: What's the race name that the driver Innes Ireland won? ### Answer: SELECT race_name FROM table_name_3 WHERE winning_driver = "innes ireland"
What's the score in the home game against the Charlotte Bobcats?
CREATE TABLE table_name_48 (score VARCHAR, visitor VARCHAR)
SELECT score FROM table_name_48 WHERE visitor = "charlotte bobcats"
### Context: CREATE TABLE table_name_48 (score VARCHAR, visitor VARCHAR) ### Question: What's the score in the home game against the Charlotte Bobcats? ### Answer: SELECT score FROM table_name_48 WHERE visitor = "charlotte bobcats"
What was the date of the game played at Victoria Park?
CREATE TABLE table_name_80 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_80 WHERE venue = "victoria park"
### Context: CREATE TABLE table_name_80 (date VARCHAR, venue VARCHAR) ### Question: What was the date of the game played at Victoria Park? ### Answer: SELECT date FROM table_name_80 WHERE venue = "victoria park"
Who was the home team when the crowd was larger than 13,557?
CREATE TABLE table_name_71 (home_team VARCHAR, crowd INTEGER)
SELECT home_team FROM table_name_71 WHERE crowd > 13 OFFSET 557
### Context: CREATE TABLE table_name_71 (home_team VARCHAR, crowd INTEGER) ### Question: Who was the home team when the crowd was larger than 13,557? ### Answer: SELECT home_team FROM table_name_71 WHERE crowd > 13 OFFSET 557
Where did Richmond play as the away team?
CREATE TABLE table_name_57 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_57 WHERE away_team = "richmond"
### Context: CREATE TABLE table_name_57 (venue VARCHAR, away_team VARCHAR) ### Question: Where did Richmond play as the away team? ### Answer: SELECT venue FROM table_name_57 WHERE away_team = "richmond"
Tell me the years competed for panthers
CREATE TABLE table_name_97 (years_competed VARCHAR, nickname VARCHAR)
SELECT years_competed FROM table_name_97 WHERE nickname = "panthers"
### Context: CREATE TABLE table_name_97 (years_competed VARCHAR, nickname VARCHAR) ### Question: Tell me the years competed for panthers ### Answer: SELECT years_competed FROM table_name_97 WHERE nickname = "panthers"
What is the release date of the CD by EG Records in the UK?
CREATE TABLE table_name_32 (release_date INTEGER, music_label VARCHAR, media VARCHAR, country VARCHAR)
SELECT SUM(release_date) FROM table_name_32 WHERE media = "cd" AND country = "uk" AND music_label = "eg records"
### Context: CREATE TABLE table_name_32 (release_date INTEGER, music_label VARCHAR, media VARCHAR, country VARCHAR) ### Question: What is the release date of the CD by EG Records in the UK? ### Answer: SELECT SUM(release_date) FROM table_name_32 WHERE media = "cd" AND country = "uk" AND music_label = "eg records"
What is the release date by Editions EG in the Netherlands?
CREATE TABLE table_name_46 (release_date INTEGER, music_label VARCHAR, country VARCHAR)
SELECT AVG(release_date) FROM table_name_46 WHERE music_label = "editions eg" AND country = "netherlands"
### Context: CREATE TABLE table_name_46 (release_date INTEGER, music_label VARCHAR, country VARCHAR) ### Question: What is the release date by Editions EG in the Netherlands? ### Answer: SELECT AVG(release_date) FROM table_name_46 WHERE music_label = "editions eg" AND country = "netherlands"
What is the music label with the catalogue number enocd 10?
CREATE TABLE table_name_36 (music_label VARCHAR, catalogue_number VARCHAR)
SELECT music_label FROM table_name_36 WHERE catalogue_number = "enocd 10"
### Context: CREATE TABLE table_name_36 (music_label VARCHAR, catalogue_number VARCHAR) ### Question: What is the music label with the catalogue number enocd 10? ### Answer: SELECT music_label FROM table_name_36 WHERE catalogue_number = "enocd 10"
What is the release date by Virgin?
CREATE TABLE table_name_86 (release_date INTEGER, music_label VARCHAR)
SELECT AVG(release_date) FROM table_name_86 WHERE music_label = "virgin"
### Context: CREATE TABLE table_name_86 (release_date INTEGER, music_label VARCHAR) ### Question: What is the release date by Virgin? ### Answer: SELECT AVG(release_date) FROM table_name_86 WHERE music_label = "virgin"