text
stringlengths 293
1.24k
|
---|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_24989925_2 (team_record VARCHAR, game_site VARCHAR)
### Question:
What was the team's record when they played at Rheinenergiestadion?
### Answer:
SELECT team_record FROM table_24989925_2 WHERE game_site = "RheinEnergieStadion"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_80 (date VARCHAR, tie_no VARCHAR)
### Question:
What date has 7 as the tie no.?
### Answer:
SELECT date FROM table_name_80 WHERE tie_no = "7"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_18710512_3 (record_label VARCHAR, single VARCHAR)
### Question:
What record label corresponds to the single "I can't stay"?
### Answer:
SELECT record_label FROM table_18710512_3 WHERE single = "I Can't Stay"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_66 (rank VARCHAR, total VARCHAR)
### Question:
What rank goes to a total of 92.7?
### Answer:
SELECT rank FROM table_name_66 WHERE total = 92.7
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_54 (time VARCHAR, notes VARCHAR, country VARCHAR)
### Question:
What is the time for Cuba, with a notes entry of QS?
### Answer:
SELECT time FROM table_name_54 WHERE notes = "qs" AND country = "cuba"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2144389_9 (japanese_translation VARCHAR, vocalist VARCHAR)
### Question:
When momoiro clover z is the vocalist what is the japanese translation?
### Answer:
SELECT japanese_translation FROM table_2144389_9 WHERE vocalist = "Momoiro Clover Z"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_23 (score VARCHAR, tie_no VARCHAR, home_team VARCHAR)
### Question:
What was the score of the replay at Millwall?
### Answer:
SELECT score FROM table_name_23 WHERE tie_no = "replay" AND home_team = "millwall"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_26977890_1 (result VARCHAR, battles VARCHAR)
### Question:
How many battles resulted in Battle of the Yellow Sea?
### Answer:
SELECT COUNT(result) FROM table_26977890_1 WHERE battles = "Battle of the Yellow Sea"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_72 (season VARCHAR, _number_of_teams VARCHAR, league VARCHAR)
### Question:
When was the season that had more teams larger than 14 in the super rugby league?
### Answer:
SELECT season FROM table_name_72 WHERE _number_of_teams > 14 AND league = "super rugby"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_89 (wins VARCHAR, poles VARCHAR, final_placing VARCHAR)
### Question:
How many wins did Hobbs had a 15th finish at poles 0?
### Answer:
SELECT wins FROM table_name_89 WHERE poles = "0" AND final_placing = "15th"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_55 (team_1 VARCHAR)
### Question:
Tell me the 1st leg for team being budoni (Sardinia)
### Answer:
SELECT 1 AS st_leg FROM table_name_55 WHERE team_1 = "budoni (sardinia)"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_89 (home_captain VARCHAR, date VARCHAR)
### Question:
Who is the Home Captain for 23,24,25,26 july 1992?
### Answer:
SELECT home_captain FROM table_name_89 WHERE date = "23,24,25,26 july 1992"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_24 (points VARCHAR, wins INTEGER)
### Question:
How many Points has Wins larger than 0?
### Answer:
SELECT COUNT(points) FROM table_name_24 WHERE wins > 0
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_2 (week VARCHAR, date VARCHAR)
### Question:
What week was October 29, 2000?
### Answer:
SELECT COUNT(week) FROM table_name_2 WHERE date = "october 29, 2000"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_65 (time___et__ VARCHAR, date VARCHAR)
### Question:
Date of sun. oct. 29 has what time (et)?
### Answer:
SELECT time___et__ FROM table_name_65 WHERE date = "sun. oct. 29"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_33 (platform VARCHAR, year VARCHAR, developer VARCHAR)
### Question:
Name the plaform for year more than 2006 and developer of 3g studios
### Answer:
SELECT platform FROM table_name_33 WHERE year > 2006 AND developer = "3g studios"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_60 (rank VARCHAR, code__iata_icao_ VARCHAR)
### Question:
What is the rank of the airport with the BKK/VTBS code?
### Answer:
SELECT rank FROM table_name_60 WHERE code__iata_icao_ = "bkk/vtbs"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_85 (away_team VARCHAR, home_team VARCHAR)
### Question:
Who played as the away team when Essendon was the home team?
### Answer:
SELECT away_team FROM table_name_85 WHERE home_team = "essendon"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_66 (location VARCHAR, record VARCHAR)
### Question:
I want to know the location that has a record of 3-0
### Answer:
SELECT location FROM table_name_66 WHERE record = "3-0"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_37 (date VARCHAR, category VARCHAR, team VARCHAR)
### Question:
How many dates does the ladies category correspond to Rothaus-Cube?
### Answer:
SELECT COUNT(date) FROM table_name_37 WHERE category = "ladies" AND team = "rothaus-cube"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_78 (year VARCHAR, host_city VARCHAR, hosts VARCHAR)
### Question:
What year will Bangkok be the host city and Alicia Keys host?
### Answer:
SELECT year FROM table_name_78 WHERE host_city = "bangkok" AND hosts = "alicia keys"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_51 (years VARCHAR, goals VARCHAR)
### Question:
What years had players who scored 36 goals?
### Answer:
SELECT years FROM table_name_51 WHERE goals = "36"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22669044_9 (high_rebounds VARCHAR, team VARCHAR)
### Question:
Name the high rebounds for new york
### Answer:
SELECT high_rebounds FROM table_22669044_9 WHERE team = "New York"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_67 (state VARCHAR, net_contribution_per_capita VARCHAR)
### Question:
What state has a Net contribution per capita of $-171?
### Answer:
SELECT state FROM table_name_67 WHERE net_contribution_per_capita = "$-171"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23058971_8 (winner VARCHAR, big_ten_team VARCHAR)
### Question:
What is the record for Big Ten Team #4 Purdue?
### Answer:
SELECT winner FROM table_23058971_8 WHERE big_ten_team = "#4 Purdue"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_79 (position VARCHAR, player VARCHAR)
### Question:
What was the Position of the Player, Britton Johnsen?
### Answer:
SELECT position FROM table_name_79 WHERE player = "britton johnsen"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_42 (laps INTEGER, constructor VARCHAR, time_retired VARCHAR)
### Question:
What is the high lap total for tyrrell - yamaha, and a Time/Retired of + 1 lap?
### Answer:
SELECT MAX(laps) FROM table_name_42 WHERE constructor = "tyrrell - yamaha" AND time_retired = "+ 1 lap"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_46 (athlete VARCHAR, rank VARCHAR, nation VARCHAR)
### Question:
Name the athlete for bulgaria with rank less than 22
### Answer:
SELECT athlete FROM table_name_46 WHERE rank < 22 AND nation = "bulgaria"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_62 (notes VARCHAR, distance VARCHAR, location VARCHAR)
### Question:
Which Notes have a Distance larger than 7, and a Location of aplin?
### Answer:
SELECT notes FROM table_name_62 WHERE distance > 7 AND location = "aplin"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_48 (laps INTEGER, finish VARCHAR)
### Question:
How few laps were finished in 17?
### Answer:
SELECT MIN(laps) FROM table_name_48 WHERE finish = "17"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11964047_5 (record VARCHAR, streak VARCHAR, leading_scorer VARCHAR)
### Question:
what is the total number of record where streak is l2 and leading scorer is roy : 23
### Answer:
SELECT COUNT(record) FROM table_11964047_5 WHERE streak = "L2" AND leading_scorer = "Roy : 23"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_7 (league INTEGER, title_playoff INTEGER)
### Question:
What is the highest League, when Title Playoff is greater than 0?
### Answer:
SELECT MAX(league) FROM table_name_7 WHERE title_playoff > 0
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE department (dept_name VARCHAR, building VARCHAR, budget VARCHAR)
### Question:
Find the name and building of the department with the highest budget.
### Answer:
SELECT dept_name, building FROM department ORDER BY budget DESC LIMIT 1
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_76 (notes VARCHAR, theme VARCHAR)
### Question:
What are the notes of the patience theme?
### Answer:
SELECT notes FROM table_name_76 WHERE theme = "patience"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_233830_1 (number_of_channels VARCHAR, channels VARCHAR)
### Question:
If the channels is wxyzuv, what is the number of channels?
### Answer:
SELECT number_of_channels FROM table_233830_1 WHERE channels = "WXYZUV"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_59 (opponent VARCHAR, method VARCHAR)
### Question:
Name the opponent with decision
### Answer:
SELECT opponent FROM table_name_59 WHERE method = "decision"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_43 (winning_driver VARCHAR, circuit VARCHAR)
### Question:
Which Winning Driver has a Circuit of circuit zandvoort?
### Answer:
SELECT winning_driver FROM table_name_43 WHERE circuit = "circuit zandvoort"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_88 (touchdowns VARCHAR, player VARCHAR)
### Question:
How many touchdowns were scored by William Cole?
### Answer:
SELECT touchdowns FROM table_name_88 WHERE player = "william cole"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_58 (ends_won INTEGER, stolen_ends VARCHAR, blank_ends VARCHAR, locale VARCHAR)
### Question:
How many Ends Won have Blank Ends smaller than 14, and a Locale of manitoba, and Stolen Ends larger than 13?
### Answer:
SELECT SUM(ends_won) FROM table_name_58 WHERE blank_ends < 14 AND locale = "manitoba" AND stolen_ends > 13
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_47 (loss VARCHAR, opponent VARCHAR, date VARCHAR)
### Question:
Which loss has an Opponent of @ angels, and a Date of august 1?
### Answer:
SELECT loss FROM table_name_47 WHERE opponent = "@ angels" AND date = "august 1"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11585313_1 (name VARCHAR, date_of_death† VARCHAR)
### Question:
What is the name of the person whose date of death is 01-04-1954?
### Answer:
SELECT name FROM table_11585313_1 WHERE date_of_death† = "01-04-1954"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_31 (opponent VARCHAR, record VARCHAR)
### Question:
Which opponent has a Record of 4-5?
### Answer:
SELECT opponent FROM table_name_31 WHERE record = "4-5"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_21 (drivers VARCHAR, engine VARCHAR, chassis VARCHAR)
### Question:
Who drove the Chevrolet with the Eagle chassis?
### Answer:
SELECT drivers FROM table_name_21 WHERE engine = "chevrolet" AND chassis = "eagle"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE player (POSITION VARCHAR, Points INTEGER)
### Question:
List the position of players and the average number of points of players of each position.
### Answer:
SELECT POSITION, AVG(Points) FROM player GROUP BY POSITION
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_58 (launch_date VARCHAR, institutional_authority VARCHAR, launch_vehicle VARCHAR)
### Question:
Tell me the launch date with Institutional authority of ndc and launch vehicle of hatf-xi
### Answer:
SELECT launch_date FROM table_name_58 WHERE institutional_authority = "ndc" AND launch_vehicle = "hatf-xi"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_58 (trofeo_fast_team VARCHAR, winner VARCHAR)
### Question:
Name the Trofeo Fast team for roberto visentini
### Answer:
SELECT trofeo_fast_team FROM table_name_58 WHERE winner = "roberto visentini"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_79 (name VARCHAR, lane VARCHAR)
### Question:
Which name has a Lane of 7?
### Answer:
SELECT name FROM table_name_79 WHERE lane = 7
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_99 (opponent VARCHAR, type_of_game VARCHAR, results¹ VARCHAR)
### Question:
Which opponent played a 1990 wcq type of game, where the results were 0:0?
### Answer:
SELECT opponent FROM table_name_99 WHERE type_of_game = "1990 wcq" AND results¹ = "0:0"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE airport (id VARCHAR, country VARCHAR, city VARCHAR, name VARCHAR)
### Question:
List the id, country, city and name of the airports ordered alphabetically by the name.
### Answer:
SELECT id, country, city, name FROM airport ORDER BY name
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1341577_43 (first_elected VARCHAR, district VARCHAR)
### Question:
In the district called Tennessee 6, how many in total of first elected are there?
### Answer:
SELECT COUNT(first_elected) FROM table_1341577_43 WHERE district = "Tennessee 6"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_25 (school_club_team VARCHAR, player VARCHAR, pick VARCHAR, round VARCHAR)
### Question:
Which school/club has a pick smaller than 196, a round higher than 5 and has Blake Miller?
### Answer:
SELECT school_club_team FROM table_name_25 WHERE pick < 196 AND round > 5 AND player = "blake miller"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_94 (no_s_ VARCHAR, school_club_team_country VARCHAR)
### Question:
What are the numbers for any players from Washington?
### Answer:
SELECT no_s_ FROM table_name_94 WHERE school_club_team_country = "washington"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_13 (event VARCHAR)
### Question:
Which 2008–09 has an Event of autumn gold?
### Answer:
SELECT 2008 AS _09 FROM table_name_13 WHERE event = "autumn gold"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_42 (method VARCHAR, event VARCHAR)
### Question:
Which method's event was flawless fighting championship 1: the beginning?
### Answer:
SELECT method FROM table_name_42 WHERE event = "flawless fighting championship 1: the beginning"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_256286_43 (description VARCHAR, _percentage_yes VARCHAR)
### Question:
What is every entry for description when the value of %yes is 51.82%?
### Answer:
SELECT description FROM table_256286_43 WHERE _percentage_yes = "51.82%"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_44 (runner_up VARCHAR, total VARCHAR)
### Question:
Which Runner-Up has a Total of £31,200?
### Answer:
SELECT runner_up FROM table_name_44 WHERE total = "£31,200"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_34 (trofeo_fast_team VARCHAR, stage VARCHAR)
### Question:
What is the Trofeo Fast Team when stage is 19?
### Answer:
SELECT trofeo_fast_team FROM table_name_34 WHERE stage = "19"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_29398373_2 (captain VARCHAR, team VARCHAR)
### Question:
Name the number of captains for barcelona
### Answer:
SELECT COUNT(captain) FROM table_29398373_2 WHERE team = "Barcelona"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22824324_2 (blocks INTEGER, player VARCHAR)
### Question:
What is the most number of blocks kendall gill had?
### Answer:
SELECT MAX(blocks) FROM table_22824324_2 WHERE player = "Kendall Gill"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_20986710_1 (score_in_final VARCHAR, runner_up VARCHAR)
### Question:
What was the final score when tracy austin was runner up?
### Answer:
SELECT score_in_final FROM table_20986710_1 WHERE runner_up = "Tracy Austin"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_45 (record VARCHAR, streak VARCHAR, score VARCHAR)
### Question:
Name the record that has a stream of l1 and score of l 95–111
### Answer:
SELECT record FROM table_name_45 WHERE streak = "l1" AND score = "l 95–111"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_49 (builder VARCHAR, ship VARCHAR)
### Question:
The Zeehond was built by whom?
### Answer:
SELECT builder FROM table_name_49 WHERE ship = "zeehond"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_68 (motorway VARCHAR, scheduled_completion VARCHAR, county VARCHAR)
### Question:
Which motorway is in brod-posavina county and has a scheduled completion in 2013?
### Answer:
SELECT motorway FROM table_name_68 WHERE scheduled_completion = "2013" AND county = "brod-posavina"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21100348_10 (innings VARCHAR, average VARCHAR)
### Question:
How man innings were there during the period with a career average of 41.43?
### Answer:
SELECT innings FROM table_21100348_10 WHERE average = "41.43"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_18618707_1 (geographical_regions VARCHAR, contestant VARCHAR)
### Question:
When cristina peña garzon is the contestant what is the geographical region?
### Answer:
SELECT geographical_regions FROM table_18618707_1 WHERE contestant = "Cristina Peña Garzon"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_80 (score VARCHAR, date VARCHAR)
### Question:
Name the Score on 17 december 1979?
### Answer:
SELECT score FROM table_name_80 WHERE date = "17 december 1979"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_37 (number_ VARCHAR, _name VARCHAR, date INTEGER)
### Question:
What is the number and name where the date is earlier than 1905?
### Answer:
SELECT number_ & _name FROM table_name_37 WHERE date < 1905
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1341586_44 (candidates VARCHAR, incumbent VARCHAR)
### Question:
How many districts have Mac Sweeney as incumbent?
### Answer:
SELECT COUNT(candidates) FROM table_1341586_44 WHERE incumbent = "Mac Sweeney"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_43 (rate INTEGER, rank INTEGER)
### Question:
When rank is more than 10, what is the total rate?
### Answer:
SELECT SUM(rate) FROM table_name_43 WHERE rank > 10
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_50 (round INTEGER, stadium VARCHAR, attendance VARCHAR)
### Question:
What is the least round for the game played at Members Equity Stadium in from of 12,581 people?
### Answer:
SELECT MIN(round) FROM table_name_50 WHERE stadium = "members equity stadium" AND attendance < 12 OFFSET 581
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_5 (name VARCHAR)
### Question:
What is the 2nd (m) value for Gregor Schlierenzauer?
### Answer:
SELECT MIN(2 AS nd__m_) FROM table_name_5 WHERE name = "gregor schlierenzauer"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1886270_1 (cr_no INTEGER)
### Question:
What is the highest cr number?
### Answer:
SELECT MAX(cr_no) FROM table_1886270_1
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_20 (venue VARCHAR, year VARCHAR)
### Question:
Which venue hosted a race in 1967?
### Answer:
SELECT venue FROM table_name_20 WHERE year = 1967
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_96 (year INTEGER, title VARCHAR)
### Question:
What is recorded as the lowest Year that has the Title of Cold Feet?
### Answer:
SELECT MIN(year) FROM table_name_96 WHERE title = "cold feet"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_57 (constructor VARCHAR, grid VARCHAR, driver VARCHAR)
### Question:
Tell me the constructor for Grid more than 4 and drivers being heinz-harald frentzen
### Answer:
SELECT constructor FROM table_name_57 WHERE grid > 4 AND driver = "heinz-harald frentzen"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_98 (outcome VARCHAR, opponent_in_the_final VARCHAR)
### Question:
What is Outcome, when Opponent in The Final is "Bill Scanlon"?
### Answer:
SELECT outcome FROM table_name_98 WHERE opponent_in_the_final = "bill scanlon"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2140071_8 (season INTEGER, coach VARCHAR)
### Question:
What was Cici Kelley's minimum season?
### Answer:
SELECT MIN(season) FROM table_2140071_8 WHERE coach = "Cici Kelley"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_14139408_1 (pts VARCHAR, team VARCHAR)
### Question:
what's the pts with team being kopron team scot
### Answer:
SELECT pts FROM table_14139408_1 WHERE team = "Kopron team Scot"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_98 (number_of_households INTEGER, county VARCHAR, population VARCHAR)
### Question:
Which Number of households has a County of cook, and Population smaller than 5,176?
### Answer:
SELECT AVG(number_of_households) FROM table_name_98 WHERE county = "cook" AND population < 5 OFFSET 176
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_2 (result VARCHAR, year VARCHAR, round VARCHAR)
### Question:
What is the result after 1993 of the first four rounds?
### Answer:
SELECT result FROM table_name_2 WHERE year > 1993 AND round = "first four"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_28885977_1 (capacity_at_construction VARCHAR, location VARCHAR)
### Question:
What was the capacity at construction of the stadium in Gold Coast, Queensland?
### Answer:
SELECT capacity_at_construction FROM table_28885977_1 WHERE location = "Gold Coast, Queensland"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_53 (money___ INTEGER, place VARCHAR, score VARCHAR)
### Question:
What is the average amount of money of players in t8 place with a 68-71-69-72=280 score?
### Answer:
SELECT AVG(money___) AS $__ FROM table_name_53 WHERE place = "t8" AND score = 68 - 71 - 69 - 72 = 280
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_39 (country VARCHAR, event VARCHAR)
### Question:
What is the Country of the 10,000m Event?
### Answer:
SELECT country FROM table_name_39 WHERE event = "10,000m"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_8 (date VARCHAR, class VARCHAR, race VARCHAR)
### Question:
On which date was the GT class at Monterey Sports Car Grand Prix?
### Answer:
SELECT date FROM table_name_8 WHERE class = "gt" AND race = "monterey sports car grand prix"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_87 (rank VARCHAR, year VARCHAR, ascent_time VARCHAR)
### Question:
What was the rank of the rider whose ascent time was 43:24 before the year 2002?
### Answer:
SELECT COUNT(rank) FROM table_name_87 WHERE year < 2002 AND ascent_time = "43:24"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12744399_1 (genre VARCHAR, english_title_translation VARCHAR)
### Question:
What's the genre of Fever Ranma ½: Hot Springs Athletic Chapter?
### Answer:
SELECT genre FROM table_12744399_1 WHERE english_title_translation = "Fever Ranma ½: Hot Springs Athletic Chapter"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_58 (punjabi__pakistan_ VARCHAR, kurdish VARCHAR)
### Question:
What is the Punjabi (Pakistan) word for the Kurdish word یـــەک شـەمـمـە yak sham?
### Answer:
SELECT punjabi__pakistan_ FROM table_name_58 WHERE kurdish = "یـــەک شـەمـمـە yak sham"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_5 (home VARCHAR, aggregate VARCHAR)
### Question:
Tell me the home of 2-3
### Answer:
SELECT home FROM table_name_5 WHERE aggregate = "2-3"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11803648_20 (nationality VARCHAR, club_team VARCHAR)
### Question:
What is the Nationality when the club team is Peterborough Petes (OHL)?
### Answer:
SELECT nationality FROM table_11803648_20 WHERE club_team = "Peterborough Petes (OHL)"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_10733530_3 (_percentage_growth__2000_2008_ VARCHAR, nation VARCHAR)
### Question:
Name the total number of percentage growth 2000-2008 of uganda?
### Answer:
SELECT COUNT(_percentage_growth__2000_2008_) FROM table_10733530_3 WHERE nation = "Uganda"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_23 (title VARCHAR, presentation_of_credentials VARCHAR)
### Question:
Name the title with presentation of credentials of april 24, 1884
### Answer:
SELECT title FROM table_name_23 WHERE presentation_of_credentials = "april 24, 1884"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_35 (report VARCHAR, date VARCHAR, away_team VARCHAR)
### Question:
Name the Report of 7 february with an Away team of new zealand breakers?
### Answer:
SELECT report FROM table_name_35 WHERE date = "7 february" AND away_team = "new zealand breakers"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_18594107_1 (draws VARCHAR, team VARCHAR)
### Question:
How many draws does 12 de Octubre have?
### Answer:
SELECT draws FROM table_18594107_1 WHERE team = "12 de Octubre"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_95 (date VARCHAR, circuit VARCHAR)
### Question:
What's the date of Bahrain International Circuit?
### Answer:
SELECT date FROM table_name_95 WHERE circuit = "bahrain international circuit"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_92 (opponent VARCHAR, february VARCHAR, game VARCHAR)
### Question:
What team was the opponent when February shows more than 2, with a game number less than 55?
### Answer:
SELECT opponent FROM table_name_92 WHERE february > 2 AND game < 55
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_12 (date_performed VARCHAR, position VARCHAR, scores_by_each_individual_judge VARCHAR)
### Question:
Which Date performed has a Position of bottom 3, and Scores by each individual judge of 5 + 5 + 4 = 14?
### Answer:
SELECT date_performed FROM table_name_12 WHERE position = "bottom 3" AND scores_by_each_individual_judge = 5 + 5 + 4 = 14
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_67 (to_par VARCHAR, finish VARCHAR)
### Question:
What is the To par of the player with a Finish of T20?
### Answer:
SELECT to_par FROM table_name_67 WHERE finish = "t20"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE roller_coaster (Speed INTEGER)
### Question:
What is the average speed of roller coasters?
### Answer:
SELECT AVG(Speed) FROM roller_coaster
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_19130829_4 (team__number2 VARCHAR)
### Question:
What's the 2nd leg result in the round where Panionios is team #2?
### Answer:
SELECT 2 AS nd_leg FROM table_19130829_4 WHERE team__number2 = "Panionios"
|
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_73 (score VARCHAR, home_team VARCHAR)
### Question:
What was the score for the game where the home team was Wycombe Wanderers?
### Answer:
SELECT score FROM table_name_73 WHERE home_team = "wycombe wanderers"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.