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_20683381_3 (electorate VARCHAR, for___percentage_ VARCHAR)
### Question:
When 27,822 (72.3) is the percentage for how many electorate measurements are there?
### Answer:
SELECT COUNT(electorate) FROM table_20683381_3 WHERE for___percentage_ = "27,822 (72.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_name_90 (release_price___usd__ VARCHAR, release_date VARCHAR, part_number_s_ VARCHAR)
### Question:
Which Release price (USD ) that has a Release date on april 2012 and a Part number(s) of cm8063701211900bx80637i73770s?
### Answer:
SELECT release_price___usd__ FROM table_name_90 WHERE release_date = "april 2012" AND part_number_s_ = "cm8063701211900bx80637i73770s"
|
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 (external_weapon VARCHAR, cart VARCHAR)
### Question:
What is the external weapon with a ramhead cart?
### Answer:
SELECT external_weapon FROM table_name_59 WHERE cart = "ramhead cart"
|
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 (region VARCHAR, label VARCHAR)
### Question:
Which region had a label of Central Station?
### Answer:
SELECT region FROM table_name_2 WHERE label = "central station"
|
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 (visitor VARCHAR, series VARCHAR)
### Question:
who is the Visitor that has a Series of series tied 2–2?
### Answer:
SELECT visitor FROM table_name_33 WHERE series = "series tied 2–2"
|
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 (semifinalists VARCHAR, tournament VARCHAR)
### Question:
who were the semifinalists for the tournament in montreal?
### Answer:
SELECT semifinalists FROM table_name_95 WHERE tournament = "montreal"
|
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_18821196_1 (weekly_schedule VARCHAR, country VARCHAR)
### Question:
What is every weekly schedule in the country of Norway?
### Answer:
SELECT weekly_schedule FROM table_18821196_1 WHERE country = "Norway"
|
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_17429402_7 (years_of_participation VARCHAR, school VARCHAR)
### Question:
What are the years of participation for pickerington north?
### Answer:
SELECT years_of_participation FROM table_17429402_7 WHERE school = "Pickerington North"
|
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_1984697_85 (principal VARCHAR, school VARCHAR)
### Question:
Name the principal of Northfield Junior-Senior High School.
### Answer:
SELECT principal FROM table_1984697_85 WHERE school = "Northfield Junior-Senior High school"
|
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_18268930_1 (population_served INTEGER)
### Question:
What's the minimal number of population served?
### Answer:
SELECT MIN(population_served) FROM table_18268930_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_37 (years_for_grizzlies VARCHAR, school_club_team VARCHAR)
### Question:
What are the years when the grizzles had a player who attended Villanova?
### Answer:
SELECT years_for_grizzlies FROM table_name_37 WHERE school_club_team = "villanova"
|
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 (result VARCHAR, director VARCHAR, film_title_used_in_nomination VARCHAR)
### Question:
What's the result for director elia schneider's punto y raya?
### Answer:
SELECT result FROM table_name_25 WHERE director = "elia schneider" AND film_title_used_in_nomination = "punto y raya"
|
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_22 (game VARCHAR, opponent VARCHAR)
### Question:
Which Game has an Opponent of phoenix suns?
### Answer:
SELECT game FROM table_name_22 WHERE opponent = "phoenix suns"
|
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_40 (country VARCHAR, score INTEGER)
### Question:
What is the country of the player with a score less than 68?
### Answer:
SELECT country FROM table_name_40 WHERE score < 68
|
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_14496232_2 (tour VARCHAR, mens_singles VARCHAR, womens_doubles VARCHAR)
### Question:
Name the tour when mens singles is chen jin and womens doubles is zhang yawen zhao tingting
### Answer:
SELECT tour FROM table_14496232_2 WHERE mens_singles = "Chen Jin" AND womens_doubles = "Zhang Yawen Zhao Tingting"
|
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 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)
### Question:
What's the total attendance of games against the New York Giants after week 13?
### Answer:
SELECT COUNT(attendance) FROM table_name_51 WHERE week > 13 AND opponent = "new york giants"
|
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_27378582_1 (current_womens_lacrosse_conference VARCHAR, enrollment VARCHAR)
### Question:
Name the current womens lacrosse conference for 6000 enrollment
### Answer:
SELECT current_womens_lacrosse_conference FROM table_27378582_1 WHERE enrollment = 6000
|
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 (home_team VARCHAR, round VARCHAR, away_team VARCHAR)
### Question:
What is the name of the home team with a round of 2nd and Vitória da Conquista as the way team?
### Answer:
SELECT home_team FROM table_name_57 WHERE round = "2nd" AND away_team = "vitória da conquista"
|
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_15 (result VARCHAR, attendance VARCHAR)
### Question:
What was the result of the game that had 56,500 in attendance?
### Answer:
SELECT result FROM table_name_15 WHERE attendance = "56,500"
|
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 (branding VARCHAR, callsign VARCHAR)
### Question:
What is the brand of DXRE?
### Answer:
SELECT branding FROM table_name_35 WHERE callsign = "dxre"
|
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 (result VARCHAR, week VARCHAR)
### Question:
What was week 3 score?
### Answer:
SELECT result FROM table_name_79 WHERE week = 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_26108103_2 (year INTEGER)
### Question:
What was the earliest year?
### Answer:
SELECT MIN(year) FROM table_26108103_2
|
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 (reason_for_change VARCHAR, state__class_ VARCHAR)
### Question:
Which Reason has a State (class) of tennessee (2)?
### Answer:
SELECT reason_for_change FROM table_name_54 WHERE state__class_ = "tennessee (2)"
|
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 VISITS (Tourist_Attraction_ID VARCHAR, Tourist_ID VARCHAR); CREATE TABLE VISITORS (Tourist_Details VARCHAR, Tourist_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR)
### Question:
What are the names of the tourist attractions Vincent and Marcelle visit?
### Answer:
SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Vincent" INTERSECT SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Marcelle"
|
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_16185956_1 (status VARCHAR, results VARCHAR)
### Question:
What is the status of the district where the result is 63% 37%?
### Answer:
SELECT status FROM table_16185956_1 WHERE results = "63% 37%"
|
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_28946565_2 (couple VARCHAR, week_2 VARCHAR)
### Question:
Which couple had a week 2 score of exactly 23?
### Answer:
SELECT couple FROM table_28946565_2 WHERE week_2 = 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_30 (region VARCHAR, venue VARCHAR)
### Question:
What region is William R. Johnson Coliseum in?
### Answer:
SELECT region FROM table_name_30 WHERE venue = "william r. johnson coliseum"
|
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_1 (points INTEGER, opponent VARCHAR, game VARCHAR)
### Question:
What is the highest number of points against the boston bruins on game 77?
### Answer:
SELECT MAX(points) FROM table_name_1 WHERE opponent = "boston bruins" AND game = 77
|
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_29 (commissioned VARCHAR, nvr_page VARCHAR)
### Question:
What is the Commissioned date of the ship in NVR Page MCM02?
### Answer:
SELECT commissioned FROM table_name_29 WHERE nvr_page = "mcm02"
|
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_17 (constellation VARCHAR, object_type VARCHAR, ngc_number VARCHAR)
### Question:
What Constellation has a Object type of globular cluster and a NGC number of 5986?
### Answer:
SELECT constellation FROM table_name_17 WHERE object_type = "globular cluster" AND ngc_number = 5986
|
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_13758945_1 (tries_for VARCHAR, points VARCHAR)
### Question:
How many tries where points is 77?
### Answer:
SELECT tries_for FROM table_13758945_1 WHERE points = "77"
|
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_56 (description VARCHAR, date VARCHAR)
### Question:
Which description is dated 1962?
### Answer:
SELECT description FROM table_name_56 WHERE date = "1962"
|
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 (silver INTEGER, nation VARCHAR)
### Question:
What is the smallest silver from Vietnam?
### Answer:
SELECT MIN(silver) FROM table_name_7 WHERE nation = "vietnam"
|
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_17 (date VARCHAR, score VARCHAR, loss VARCHAR)
### Question:
What date was the score 5-2 with a loss of sele (3-2)?
### Answer:
SELECT date FROM table_name_17 WHERE score = "5-2" AND loss = "sele (3-2)"
|
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_17941032_1 (tries_for VARCHAR, tries_against VARCHAR)
### Question:
When 60 is the tries against what is the tries for?
### Answer:
SELECT tries_for FROM table_17941032_1 WHERE tries_against = "60"
|
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_91 (record VARCHAR, home VARCHAR)
### Question:
What is the team's record when they play nashville at home?
### Answer:
SELECT record FROM table_name_91 WHERE home = "nashville"
|
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_1939367_1 (province VARCHAR, _percentage_2011 VARCHAR)
### Question:
What is the province amount if the % 2011 is 0.0%
### Answer:
SELECT COUNT(province) FROM table_1939367_1 WHERE _percentage_2011 = "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 table_name_44 (rank VARCHAR, actor_actress VARCHAR)
### Question:
What rank did actor Aaron Pedersen's character have?
### Answer:
SELECT rank FROM table_name_44 WHERE actor_actress = "aaron pedersen"
|
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_28190534_1 (chassis VARCHAR, driver VARCHAR)
### Question:
Name the chassis for b. bira
### Answer:
SELECT chassis FROM table_28190534_1 WHERE driver = "B. Bira"
|
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_32 (team VARCHAR, player VARCHAR)
### Question:
WHAT IS THE TEAM WITH DAVE COGGIN?
### Answer:
SELECT team FROM table_name_32 WHERE player = "dave coggin"
|
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_1999350_1 (playoffs VARCHAR, year VARCHAR)
### Question:
What is the total number of playoffs held in exactly 2006?
### Answer:
SELECT COUNT(playoffs) FROM table_1999350_1 WHERE year = 2006
|
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 PersonFriend (name VARCHAR, friend VARCHAR, YEAR INTEGER)
### Question:
Find the name of persons who are friends with Alice for the shortest years.
### Answer:
SELECT name FROM PersonFriend WHERE friend = 'Alice' AND YEAR = (SELECT MIN(YEAR) FROM PersonFriend WHERE friend = 'Alice')
|
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_93 (tournament VARCHAR)
### Question:
What is Tournament, when 2006 is "A", and when 2009 is "A"?
### Answer:
SELECT tournament FROM table_name_93 WHERE 2006 = "a" AND 2009 = "a"
|
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 (fall_06 INTEGER, fall_05 VARCHAR, fall_08 VARCHAR, fall_07 VARCHAR)
### Question:
What number is Fall 06 from the state with 79 or less in Fall 08, 36 or greater in Fall 07 and greater than 74 in Fall 05?
### Answer:
SELECT AVG(fall_06) FROM table_name_92 WHERE fall_08 < 79 AND fall_07 > 36 AND fall_05 > 74
|
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_61 (lead VARCHAR, date_s__conducted VARCHAR)
### Question:
On 5 May 2011, what was the lead percentage?
### Answer:
SELECT lead FROM table_name_61 WHERE date_s__conducted = "5 may 2011"
|
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_26352332_4 (engine_family VARCHAR, displacement_s_ VARCHAR)
### Question:
The displacement(s) 466 cubic inches (7.6L), has what engine family?
### Answer:
SELECT engine_family FROM table_26352332_4 WHERE displacement_s_ = "466 cubic inches (7.6L)"
|
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 (transfer_window VARCHAR, moving_from VARCHAR)
### Question:
What was the transfer window with a moving from of fenerbahçe?
### Answer:
SELECT transfer_window FROM table_name_21 WHERE moving_from = "fenerbahçe"
|
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_1745843_9 (part_3 VARCHAR, part_1 VARCHAR)
### Question:
Name the part 3 for treffen
### Answer:
SELECT part_3 FROM table_1745843_9 WHERE part_1 = "treffen"
|
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_38 (role VARCHAR, status VARCHAR)
### Question:
What is Role, when Status is "2001 - 2003, 2005 - 2009"?
### Answer:
SELECT role FROM table_name_38 WHERE status = "2001 - 2003, 2005 - 2009"
|
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 (date VARCHAR, winning_driver VARCHAR, location VARCHAR)
### Question:
On what date did Ayrton Senna win at Imola?
### Answer:
SELECT date FROM table_name_92 WHERE winning_driver = "ayrton senna" AND location = "imola"
|
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_29225103_2 (gm_winning_team VARCHAR, ep_winning_team VARCHAR)
### Question:
Who the GM winning team when the EP winning team was #37 Porsche?
### Answer:
SELECT gm_winning_team FROM table_29225103_2 WHERE ep_winning_team = "#37 Porsche"
|
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 (award VARCHAR, result VARCHAR, organization VARCHAR)
### Question:
Where Result is nominated and Organization is 54th the television academy drama awards, what is the award?
### Answer:
SELECT award FROM table_name_80 WHERE result = "nominated" AND organization = "54th the television academy drama awards"
|
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_28697228_4 (player VARCHAR, total_offense VARCHAR)
### Question:
What is the name of the player with total offense of 454?
### Answer:
SELECT player FROM table_28697228_4 WHERE total_offense = 454
|
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 (label VARCHAR, catalog VARCHAR)
### Question:
What is the Label of the UICI-1069 Catalog?
### Answer:
SELECT label FROM table_name_42 WHERE catalog = "uici-1069"
|
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 (winner VARCHAR, home_team VARCHAR, year VARCHAR)
### Question:
who is the winner when the home team is sioux falls storm and the year is earlier than 2012?
### Answer:
SELECT winner FROM table_name_48 WHERE home_team = "sioux falls storm" AND year < 2012
|
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_4 (balls_faced INTEGER, average VARCHAR, runs_scored VARCHAR)
### Question:
Which Balls Faced has a Average of 39.13 and Runs Scored larger than 313?
### Answer:
SELECT SUM(balls_faced) FROM table_name_4 WHERE average = 39.13 AND runs_scored > 313
|
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_75 (score INTEGER, place VARCHAR, player VARCHAR)
### Question:
WHAT IS AVERAGE SCORE WITH T3 PLACE, FOR DOUG SANDERS?
### Answer:
SELECT AVG(score) FROM table_name_75 WHERE place = "t3" AND player = "doug sanders"
|
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 (bodyweight INTEGER, snatch VARCHAR)
### Question:
What is the total bodyweight of everyone that has a Snatch of 153.0?
### Answer:
SELECT SUM(bodyweight) FROM table_name_98 WHERE snatch = "153.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_86 (entered INTEGER, wrestler VARCHAR)
### Question:
Shawn Michaels entered the elimination chamber in what position?
### Answer:
SELECT SUM(entered) FROM table_name_86 WHERE wrestler = "shawn michaels"
|
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 (name VARCHAR, winning_constructor VARCHAR, circuit VARCHAR)
### Question:
What is the name for the Monza circuit race were Bugatti was the winning constructor?
### Answer:
SELECT name FROM table_name_51 WHERE winning_constructor = "bugatti" AND circuit = "monza"
|
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_61 (longitude VARCHAR, name VARCHAR)
### Question:
What is Longitude, when Name is Raskova Paterae?
### Answer:
SELECT longitude FROM table_name_61 WHERE name = "raskova paterae"
|
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 Financial_Transactions (transaction_type VARCHAR)
### Question:
Show the number of transaction types.
### Answer:
SELECT COUNT(DISTINCT transaction_type) FROM Financial_Transactions
|
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_26614365_5 (portuguese VARCHAR, english VARCHAR)
### Question:
What is the Portuguese word for the English word 'grandfather'?
### Answer:
SELECT portuguese FROM table_26614365_5 WHERE english = "Grandfather"
|
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_1965650_9 (nationality VARCHAR, college_junior_club_team VARCHAR)
### Question:
When michigan technological university (ncaa) is the college, junior, or club team what is the nationality?
### Answer:
SELECT nationality FROM table_1965650_9 WHERE college_junior_club_team = "Michigan Technological University (NCAA)"
|
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_71 (artist VARCHAR, year VARCHAR)
### Question:
What artist was released in 2005?
### Answer:
SELECT artist FROM table_name_71 WHERE year = 2005
|
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_22118197_1 (result VARCHAR, portuguese_title VARCHAR)
### Question:
What was the result of the film with the Portuguese title, Um Filme Falado?
### Answer:
SELECT result FROM table_22118197_1 WHERE portuguese_title = "Um Filme Falado"
|
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_1416612_1 (lowest_point VARCHAR, highest_point VARCHAR)
### Question:
what's the lowest point with highest point being mount greylock
### Answer:
SELECT lowest_point FROM table_1416612_1 WHERE highest_point = "Mount Greylock"
|
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 (score VARCHAR, to_par VARCHAR, player VARCHAR)
### Question:
With a To par of +4, what is Andy Bean's Score?
### Answer:
SELECT score FROM table_name_21 WHERE to_par = "+4" AND player = "andy bean"
|
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_1745843_9 (verb_meaning VARCHAR, part_2 VARCHAR)
### Question:
Name the verb meaning for half drosch
### Answer:
SELECT verb_meaning FROM table_1745843_9 WHERE part_2 = "half drosch"
|
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 (career_sr VARCHAR, tournament VARCHAR)
### Question:
Madrid (Stuttgart) tournament with a 1996 of A has this for a Career SR?
### Answer:
SELECT career_sr FROM table_name_66 WHERE 1996 = "a" AND tournament = "madrid (stuttgart)"
|
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_70 (score VARCHAR, surface VARCHAR, rank VARCHAR)
### Question:
What was the score of the match played on hard with a person ranked 10?
### Answer:
SELECT score FROM table_name_70 WHERE surface = "hard" AND 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_14 (fs VARCHAR, sp INTEGER, name VARCHAR, rank VARCHAR)
### Question:
What is the average SP+FS for Denise Biellmann, and a Rank larger than 5?
### Answer:
SELECT AVG(sp) + fs FROM table_name_14 WHERE name = "denise biellmann" AND rank > 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_8 (pick__number VARCHAR, name VARCHAR)
### Question:
What is Aundray Bruce's Pick #?
### Answer:
SELECT pick__number FROM table_name_8 WHERE name = "aundray bruce"
|
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_14 (opponent VARCHAR, record VARCHAR)
### Question:
Which opponent led to a 6-3 record?
### Answer:
SELECT opponent FROM table_name_14 WHERE record = "6-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_1672976_5 (winner VARCHAR, attendance VARCHAR)
### Question:
Who was the winner when the total attendance was 16597?
### Answer:
SELECT winner FROM table_1672976_5 WHERE attendance = 16597
|
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_26 (record VARCHAR, date VARCHAR)
### Question:
What is the record on November 18?
### Answer:
SELECT record FROM table_name_26 WHERE date = "november 18"
|
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_74 (agg VARCHAR)
### Question:
For an aggregate of 1-3, what was the 2nd leg?
### Answer:
SELECT 2 AS nd_leg FROM table_name_74 WHERE agg = "1-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_name_60 (location VARCHAR, listed VARCHAR)
### Question:
What location was listed on 1977-09-15?
### Answer:
SELECT location FROM table_name_60 WHERE listed = "1977-09-15"
|
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_225102_4 (vacator VARCHAR, reason_for_change VARCHAR)
### Question:
Name the vacator for died august 13, 1826
### Answer:
SELECT vacator FROM table_225102_4 WHERE reason_for_change = "Died August 13, 1826"
|
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_2508633_6 (college VARCHAR, nfl_team VARCHAR)
### Question:
Name the college for houston oilers
### Answer:
SELECT college FROM table_2508633_6 WHERE nfl_team = "Houston Oilers"
|
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_12113888_1 (built VARCHAR, name_as_rebuilt VARCHAR)
### Question:
What was the built data for Knocklayd rebuild?
### Answer:
SELECT built FROM table_12113888_1 WHERE name_as_rebuilt = "Knocklayd"
|
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_23286158_7 (date VARCHAR, team VARCHAR)
### Question:
When did the Portland Trail Blazers play against Cleveland?
### Answer:
SELECT date FROM table_23286158_7 WHERE team = "Cleveland"
|
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 (date VARCHAR, group VARCHAR, venue VARCHAR)
### Question:
What was the date for the G1 group race at Flemington?
### Answer:
SELECT date FROM table_name_98 WHERE group = "g1" AND venue = "flemington"
|
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 (race_name VARCHAR, circuit VARCHAR)
### Question:
What is the name of the race for which the circuit was Snetterton?
### Answer:
SELECT race_name FROM table_name_37 WHERE circuit = "snetterton"
|
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_23465864_3 (tues_25_aug VARCHAR, rank VARCHAR)
### Question:
When 6 is the rank what is the time for Tuesday August 25th?
### Answer:
SELECT tues_25_aug FROM table_23465864_3 WHERE rank = 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_29 (intergiro_classification VARCHAR, trofeo_fast_team VARCHAR)
### Question:
Who held the Intergiro classificaiton when the Trofeo Fast Team is gb-mg maglificio?
### Answer:
SELECT intergiro_classification FROM table_name_29 WHERE trofeo_fast_team = "gb-mg maglificio"
|
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_16886076_1 (nickerie VARCHAR, marowijne VARCHAR)
### Question:
Name the nickerie for marowijne being 4.7%
### Answer:
SELECT COUNT(nickerie) FROM table_16886076_1 WHERE marowijne = "4.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_47 (game INTEGER, time VARCHAR, attendance VARCHAR)
### Question:
Which week was the first game played that had a time of 2:06 and less than 27,374 attendees?
### Answer:
SELECT MIN(game) FROM table_name_47 WHERE time = "2:06" AND attendance < 27 OFFSET 374
|
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_15056103_1 (league VARCHAR, year VARCHAR)
### Question:
What league were they in in 2009?
### Answer:
SELECT league FROM table_15056103_1 WHERE year = 2009
|
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 (place VARCHAR, score INTEGER)
### Question:
WHich Places have a score smaller than 69?
### Answer:
SELECT place FROM table_name_12 WHERE score < 69
|
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_14688744_2 (arrival VARCHAR, station_code VARCHAR)
### Question:
what is the arrival time where station code is pnvl?
### Answer:
SELECT arrival FROM table_14688744_2 WHERE station_code = "PNVL"
|
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_11044765_1 (location VARCHAR, mascot VARCHAR)
### Question:
What city and state are the miners located in?
### Answer:
SELECT location FROM table_11044765_1 WHERE mascot = "Miners"
|
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 (date VARCHAR, loss VARCHAR)
### Question:
Name the date with loss of carman (3-12)
### Answer:
SELECT date FROM table_name_59 WHERE loss = "carman (3-12)"
|
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 (result_f___a VARCHAR, group_position VARCHAR, opponents VARCHAR)
### Question:
What was the final score agains Dynamo Kyiv, when the group position was 1st?
### Answer:
SELECT result_f___a FROM table_name_39 WHERE group_position = "1st" AND opponents = "dynamo kyiv"
|
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 entrepreneur (Investor VARCHAR)
### Question:
What are the investors of entrepreneurs and the corresponding number of entrepreneurs invested by each investor?
### Answer:
SELECT Investor, COUNT(*) FROM entrepreneur GROUP BY Investor
|
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_18 (frequency VARCHAR, on_air_id VARCHAR)
### Question:
Name the frequency with on-air ID of 1way fm
### Answer:
SELECT frequency FROM table_name_18 WHERE on_air_id = "1way fm"
|
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_75 (record VARCHAR, date VARCHAR)
### Question:
What was the record after the April 15 game?
### Answer:
SELECT record FROM table_name_75 WHERE date = "april 15"
|
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_86 (ngc_number VARCHAR, declination___j2000__ VARCHAR, constellation VARCHAR, object_type VARCHAR)
### Question:
Name the total number of NGC number for sagittarius and diffuse nebula with declination of °02′
### Answer:
SELECT COUNT(ngc_number) FROM table_name_86 WHERE constellation = "sagittarius" AND object_type = "diffuse nebula" AND declination___j2000__ = "°02′"
|
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_22034853_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)
### Question:
How many films are titled "Dans la Ville Blanche"?
### Answer:
SELECT COUNT(film_title_used_in_nomination) FROM table_22034853_1 WHERE original_title = "Dans la ville blanche"
|
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 (canadian_kennel_club_toy_dogs_group VARCHAR, australian_national_kennel_council_toy_dogs_group VARCHAR)
### Question:
What is the Canadian Kennel Club Toy Dogs Group with the australian silky terrier as the Australian National Kennel Council Toy Dogs Group breed?
### Answer:
SELECT canadian_kennel_club_toy_dogs_group FROM table_name_49 WHERE australian_national_kennel_council_toy_dogs_group = "australian silky terrier"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.