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_name_30 (opponent VARCHAR, week VARCHAR)
### Question:
Who did the Chiefs play in Week 8?
### Answer:
SELECT opponent FROM table_name_30 WHERE week = 8 |
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_20855452_4 (points VARCHAR, player VARCHAR)
### Question:
How many points did agnieszka radwańska score?
### Answer:
SELECT points FROM table_20855452_4 WHERE player = "Agnieszka Radwańska" |
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_12720275_1 (rank__csa_ VARCHAR, percent_change__1990_2000_ VARCHAR)
### Question:
What is the rank (csa) for the percentage change (1990-2000) was a034 +8.71%?
### Answer:
SELECT rank__csa_ FROM table_12720275_1 WHERE percent_change__1990_2000_ = "A034 +8.71%" |
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_64 (venue VARCHAR, date VARCHAR)
### Question:
I want the venue for 23 july 1992
### Answer:
SELECT venue FROM table_name_64 WHERE date = "23 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_34 (record VARCHAR, week VARCHAR)
### Question:
What is the record of the game on week 13?
### Answer:
SELECT record FROM table_name_34 WHERE week = 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_5 (record VARCHAR, opponent VARCHAR, loss VARCHAR)
### Question:
What was the record where the opponent was @ Orioles and the loss was to Leal (5-4)?
### Answer:
SELECT record FROM table_name_5 WHERE opponent = "@ orioles" AND loss = "leal (5-4)" |
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_84 (time VARCHAR, news_freq VARCHAR, show_name VARCHAR)
### Question:
Which time has a news frequency of 1 hour and show name of Best Mix Overnight?
### Answer:
SELECT time FROM table_name_84 WHERE news_freq = "1 hour" AND show_name = "best mix overnight" |
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_41 (score VARCHAR, player VARCHAR)
### Question:
What is Score, when Player is "Vijay Singh"?
### Answer:
SELECT score FROM table_name_41 WHERE player = "vijay singh" |
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_97 (score VARCHAR, visitor VARCHAR)
### Question:
What was the score of the game in which the Toronto Maple Leafs were visitors?
### Answer:
SELECT score FROM table_name_97 WHERE visitor = "toronto maple leafs" |
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_19 (country VARCHAR, place VARCHAR, player VARCHAR)
### Question:
From what Country is T6 Place Player Robert Karlsson?
### Answer:
SELECT country FROM table_name_19 WHERE place = "t6" AND player = "robert karlsson" |
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_3002894_4 (sonnet VARCHAR, nupowr_117 VARCHAR)
### Question:
When 0,4, or 8 mb is the nupowr 117 what is the sonnet?
### Answer:
SELECT sonnet FROM table_3002894_4 WHERE nupowr_117 = "0,4, or 8 MB" |
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 (finals_mvp VARCHAR, eastern_champion VARCHAR, western_champion VARCHAR)
### Question:
Who is the MVP finals that includes Detroit shock from the eastern championship and Sacramento monarchs from western championship?
### Answer:
SELECT finals_mvp FROM table_name_26 WHERE eastern_champion = "detroit shock" AND western_champion = "sacramento monarchs" |
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_97 (weekly_schedule VARCHAR, tv_network_s_ VARCHAR)
### Question:
What is the weekly schedule for the network sky italia?
### Answer:
SELECT weekly_schedule FROM table_name_97 WHERE tv_network_s_ = "sky italia" |
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_9 (attendance INTEGER, home_team VARCHAR)
### Question:
What is the highest attendance for games with stevenage borough at home?
### Answer:
SELECT MAX(attendance) FROM table_name_9 WHERE home_team = "stevenage borough" |
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_2897457_2 (nationality VARCHAR, nhl_team VARCHAR)
### Question:
What is the nationality of the player picked to go to Washington Capitals?
### Answer:
SELECT nationality FROM table_2897457_2 WHERE nhl_team = "Washington Capitals" |
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 (team VARCHAR, fans_took VARCHAR)
### Question:
Which team had fans took of 288?
### Answer:
SELECT team FROM table_name_71 WHERE fans_took = "288" |
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_22654073_7 (high_points VARCHAR, high_rebounds VARCHAR)
### Question:
Name the high points for mo williams , lebron james , j.j. hickson (6)
### Answer:
SELECT COUNT(high_points) FROM table_22654073_7 WHERE high_rebounds = "Mo Williams , LeBron James , J.J. Hickson (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_3 (result VARCHAR, date VARCHAR)
### Question:
What was the result of the September 8, 1985 game?
### Answer:
SELECT result FROM table_name_3 WHERE date = "september 8, 1985" |
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 (transfer_window VARCHAR, moving_to VARCHAR)
### Question:
Name the transfer window of realmadrid
### Answer:
SELECT transfer_window FROM table_name_12 WHERE moving_to = "realmadrid" |
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 (player VARCHAR, score VARCHAR)
### Question:
Who is the player with a 70-75=145 score?
### Answer:
SELECT player FROM table_name_62 WHERE score = 70 - 75 = 145 |
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 (time VARCHAR, writer_s_ VARCHAR)
### Question:
What is the time of songs that have the writer Aaron Schroeder and Wally Gold?
### Answer:
SELECT time FROM table_name_55 WHERE writer_s_ = "aaron schroeder and wally 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_78 (games VARCHAR, total_rebounds INTEGER)
### Question:
How many games have rebounds larger than 1048?
### Answer:
SELECT COUNT(games) FROM table_name_78 WHERE total_rebounds > 1048 |
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_30007801_1 (Id VARCHAR)
### Question:
What is the smallest 1st runner up value?
### Answer:
SELECT MIN(1 AS st_runner_up) FROM table_30007801_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_14 (giant_slalom VARCHAR, victories VARCHAR, combined VARCHAR, country VARCHAR)
### Question:
Can you tell me the Giant Slalom that has the Combined of 1, and the Country of united states, and the Victories larger than 11?
### Answer:
SELECT giant_slalom FROM table_name_14 WHERE combined = "1" AND country = "united states" AND victories > 11 |
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_23316034_16 (average VARCHAR, innings VARCHAR)
### Question:
If the innings is 68, what is the average?
### Answer:
SELECT average FROM table_23316034_16 WHERE innings = 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_name_42 (pick VARCHAR, player VARCHAR)
### Question:
What was the pick number when mark hayes was drafted?
### Answer:
SELECT pick FROM table_name_42 WHERE player = "mark hayes" |
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 (edges_e VARCHAR, vertices_v INTEGER)
### Question:
What is the total number of E edges of the polyhedra with vertices V greater than 20?
### Answer:
SELECT COUNT(edges_e) FROM table_name_32 WHERE vertices_v > 20 |
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 (Id VARCHAR)
### Question:
What is the 2002 result when 2006 is A and 2010 is Q1?
### Answer:
SELECT 2002 FROM table_name_38 WHERE 2006 = "a" AND 2010 = "q1" |
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 (date VARCHAR, result VARCHAR, score VARCHAR)
### Question:
What is the Date of the Competition with a Score of 4-0 and 5-0 Result?
### Answer:
SELECT date FROM table_name_47 WHERE result = "5-0" AND score = "4-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_3 (place INTEGER, best_score INTEGER)
### Question:
WHAT IS THE HIGHEST PLACE AND BEST SCORE BIGGER THAN 10?
### Answer:
SELECT MAX(place) FROM table_name_3 WHERE best_score > 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 STUDENT (LName VARCHAR, Sex VARCHAR, Age VARCHAR)
### Question:
Find the last name of female (sex is F) students in the descending order of age.
### Answer:
SELECT LName FROM STUDENT WHERE Sex = "F" ORDER BY Age DESC |
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 (position VARCHAR, year VARCHAR, competition VARCHAR)
### Question:
In which position did Iljuštšenko finish in the European Championships held prior to 2008?
### Answer:
SELECT position FROM table_name_48 WHERE year < 2008 AND competition = "european championships" |
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_1341930_21 (party VARCHAR, incumbent VARCHAR)
### Question:
What party is incumbent thomas j. lane from?
### Answer:
SELECT party FROM table_1341930_21 WHERE incumbent = "Thomas J. Lane" |
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 (instant_messaging VARCHAR, electronic_meeting_system VARCHAR, name VARCHAR)
### Question:
What is Instant Messaging, when Electronic Meeting System is "Yes", and when Name is "Microsoft Sharepoint"?
### Answer:
SELECT instant_messaging FROM table_name_48 WHERE electronic_meeting_system = "yes" AND name = "microsoft sharepoint" |
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_1341843_19 (candidates VARCHAR, incumbent VARCHAR)
### Question:
Who were the candidates in the district whose incumbent is Joe Waggonner?
### Answer:
SELECT candidates FROM table_1341843_19 WHERE incumbent = "Joe Waggonner" |
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 WINE (Name VARCHAR, Price INTEGER, YEAR VARCHAR)
### Question:
What are the names of wines that are more expensive then all wines made in the year 2006?
### Answer:
SELECT Name FROM WINE WHERE Price > (SELECT MAX(Price) FROM WINE 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 Faculty (building VARCHAR)
### Question:
Show all the buildings along with the number of faculty members the buildings have.
### Answer:
SELECT building, COUNT(*) FROM Faculty GROUP BY building |
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_2190919_3 (avg_finish VARCHAR, team_s_ VARCHAR)
### Question:
With team #21/#07 ss-green light racing, what was the average finish number?
### Answer:
SELECT avg_finish FROM table_2190919_3 WHERE team_s_ = "#21/#07 SS-Green Light Racing" |
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 (starts INTEGER, points VARCHAR, podiums VARCHAR, stage_wins VARCHAR)
### Question:
what is the average starts when the podiums is more than 0, stage wins is more than 39 and points is more than 456?
### Answer:
SELECT AVG(starts) FROM table_name_35 WHERE podiums > 0 AND stage_wins > 39 AND points > 456 |
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 (tv_time VARCHAR, date VARCHAR)
### Question:
WHAT IS THE TV TIME FOR NOVEMBER 10, 1996?
### Answer:
SELECT tv_time FROM table_name_93 WHERE date = "november 10, 1996" |
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 (representative VARCHAR, appointed_by VARCHAR, presentation_of_credentials VARCHAR)
### Question:
Name the representative appointed by george w. bush with presentation of credentials 9 november 2007
### Answer:
SELECT representative FROM table_name_65 WHERE appointed_by = "george w. bush" AND presentation_of_credentials = "9 november 2007" |
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 (crowd INTEGER, home_team VARCHAR)
### Question:
What is the average crowd attendance for Collingwood?
### Answer:
SELECT AVG(crowd) FROM table_name_92 WHERE home_team = "collingwood" |
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 (peak VARCHAR, prom__m_ INTEGER)
### Question:
Tell me the peak for prom being less than 147
### Answer:
SELECT peak FROM table_name_26 WHERE prom__m_ < 147 |
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 (thai_name VARCHAR, abbr VARCHAR)
### Question:
What is the Thai name for the word abbreviated มี.ค.?
### Answer:
SELECT thai_name FROM table_name_75 WHERE abbr = "มี.ค." |
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_11251601_2 (percentage_of_global_total VARCHAR, country VARCHAR)
### Question:
WHAT PERCENTAGE OF GLOBAL TOTAL EMISSIONS DID INDIA PRODUCE?
### Answer:
SELECT percentage_of_global_total FROM table_11251601_2 WHERE country = "India" |
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 (växjö VARCHAR, karlstad VARCHAR)
### Question:
What did Vaxjo score when Karlstad scored 1?
### Answer:
SELECT växjö FROM table_name_53 WHERE karlstad = "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_54 (color VARCHAR, scientific_name VARCHAR)
### Question:
What is the color of the Chamaeleo Calyptratus?
### Answer:
SELECT color FROM table_name_54 WHERE scientific_name = "chamaeleo calyptratus" |
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_27969432_3 (no_in_series INTEGER)
### Question:
What is the lowest numbered episode in the series?
### Answer:
SELECT MIN(no_in_series) FROM table_27969432_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_86 (name VARCHAR, left_office VARCHAR)
### Question:
What is the name of the minister that left office on 14 November 2006?
### Answer:
SELECT name FROM table_name_86 WHERE left_office = "14 november 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 table_name_89 (away VARCHAR, date VARCHAR, attendance VARCHAR)
### Question:
Which Away has a Date of 14 september 2008, and an Attendance larger than 1881?
### Answer:
SELECT away FROM table_name_89 WHERE date = "14 september 2008" AND attendance > 1881 |
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_28652521_1 (storage_case VARCHAR, description VARCHAR)
### Question:
What's the storage case of the buttonholer described as ivory and red metal?
### Answer:
SELECT storage_case FROM table_28652521_1 WHERE description = "ivory and red metal" |
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 (podiums INTEGER, series VARCHAR, poles VARCHAR)
### Question:
What are the fewest number of podiums associated with a Series of formula renault 2000 brazil, and under 1 pole?
### Answer:
SELECT MIN(podiums) FROM table_name_23 WHERE series = "formula renault 2000 brazil" AND poles < 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_13 (score VARCHAR, country VARCHAR)
### Question:
What did the golfer from Australia score?
### Answer:
SELECT score FROM table_name_13 WHERE country = "australia" |
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 (mark VARCHAR, country VARCHAR, react VARCHAR)
### Question:
What is the total number of Mark, when Country is "Russia", and when React is less than 0.165?
### Answer:
SELECT COUNT(mark) FROM table_name_65 WHERE country = "russia" AND react < 0.165 |
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_2597876_1 (wins INTEGER, winnings VARCHAR)
### Question:
How many wins did Parsons have in the year where his winnings were $90,700?
### Answer:
SELECT MAX(wins) FROM table_2597876_1 WHERE winnings = "$90,700" |
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_22170495_7 (top_50_ranking VARCHAR, original_airing VARCHAR)
### Question:
How many of the episodes in the top 50 rankings were originally aired on June 28, 2010?
### Answer:
SELECT COUNT(top_50_ranking) FROM table_22170495_7 WHERE original_airing = "June 28, 2010" |
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 (round VARCHAR, method VARCHAR, event VARCHAR)
### Question:
Which Round has a Method of decision (unanimous), and an Event of ufc 145?
### Answer:
SELECT round FROM table_name_32 WHERE method = "decision (unanimous)" AND event = "ufc 145" |
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_17311759_5 (record VARCHAR, team VARCHAR)
### Question:
What is the record of wins and losses for Denver's ball club?
### Answer:
SELECT record FROM table_17311759_5 WHERE team = "Denver" |
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_25800134_12 (series__number VARCHAR, airdate VARCHAR)
### Question:
What episode number of the series aired on February 26, 1968?
### Answer:
SELECT series__number FROM table_25800134_12 WHERE airdate = "February 26, 1968" |
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 (losses VARCHAR, wins INTEGER)
### Question:
How many losses when there are less than 0 wins?
### Answer:
SELECT COUNT(losses) FROM table_name_90 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_6 (name VARCHAR, longitude VARCHAR)
### Question:
What name has a longitude of 213.0e?
### Answer:
SELECT name FROM table_name_6 WHERE longitude = "213.0e" |
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_97 (points_against VARCHAR, tries_against VARCHAR)
### Question:
tries against is 29, what is the points against?
### Answer:
SELECT points_against FROM table_name_97 WHERE tries_against = "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_10975034_2 (pick__number INTEGER, college VARCHAR)
### Question:
What is the pick number for Northwestern college?
### Answer:
SELECT MAX(pick__number) FROM table_10975034_2 WHERE college = "Northwestern" |
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 (performer_1 VARCHAR, performer_2 VARCHAR)
### Question:
Performer 2 of compilation 1 had what performer 1?
### Answer:
SELECT performer_1 FROM table_name_55 WHERE performer_2 = "compilation 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 (opponent VARCHAR, game_site VARCHAR)
### Question:
Who did they play at Atlanta-Fulton County Stadium?
### Answer:
SELECT opponent FROM table_name_20 WHERE game_site = "atlanta-fulton county stadium" |
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 (enrollment INTEGER, location VARCHAR)
### Question:
How many people are enrolled in platteville, wi?
### Answer:
SELECT SUM(enrollment) FROM table_name_38 WHERE location = "platteville, wi" |
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 (player VARCHAR, to_par VARCHAR)
### Question:
Which player has +2 to par?
### Answer:
SELECT player FROM table_name_45 WHERE to_par = "+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_48 (attendance VARCHAR, date VARCHAR)
### Question:
What was the attendance on August 2?
### Answer:
SELECT attendance FROM table_name_48 WHERE date = "august 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_82 (to_par VARCHAR, score VARCHAR)
### Question:
What was the TO par for the player who scored 68-69=137?
### Answer:
SELECT to_par FROM table_name_82 WHERE score = 68 - 69 = 137 |
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 (label VARCHAR, format VARCHAR, date VARCHAR)
### Question:
What Label released a CD single in 1993?
### Answer:
SELECT label FROM table_name_5 WHERE format = "cd single" AND date = "1993" |
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 (venue VARCHAR, away_team VARCHAR)
### Question:
In what venue was the hosted away team Essendon?
### Answer:
SELECT venue FROM table_name_59 WHERE away_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_9 (event VARCHAR, winner VARCHAR)
### Question:
What event did Mark Teltscher win?
### Answer:
SELECT event FROM table_name_9 WHERE winner = "mark teltscher" |
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_81 (website VARCHAR, webcast VARCHAR, frequency VARCHAR)
### Question:
What's the website for the Listen Live webcast on the 99.3 frequency?
### Answer:
SELECT website FROM table_name_81 WHERE webcast = "listen live" AND frequency = 99.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_67 (date VARCHAR, opponent VARCHAR)
### Question:
What date was the opponent the Portland Trail Blazers?
### Answer:
SELECT date FROM table_name_67 WHERE opponent = "portland trail blazers" |
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 (winning_score VARCHAR, runner_s__up VARCHAR)
### Question:
What was the winning score for runnerup Greg Norman
### Answer:
SELECT winning_score FROM table_name_5 WHERE runner_s__up = "greg norman" |
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 (entrant VARCHAR, points VARCHAR, chassis VARCHAR)
### Question:
who is the entrant when the points is 42 (45) and the chassis is brabham bt20?
### Answer:
SELECT entrant FROM table_name_25 WHERE points = "42 (45)" AND chassis = "brabham bt20" |
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 (secondary_military_speciality VARCHAR, real_name VARCHAR)
### Question:
What is Gareth Morgan's Secondary Military Specialty?
### Answer:
SELECT secondary_military_speciality FROM table_name_21 WHERE real_name = "gareth morgan" |
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, title VARCHAR)
### Question:
How many years have a Title of Magia Nuda?
### Answer:
SELECT COUNT(year) FROM table_name_78 WHERE title = "magia nuda" |
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 (nationality VARCHAR, player VARCHAR)
### Question:
What nationality did Greg Inglis hold?
### Answer:
SELECT nationality FROM table_name_21 WHERE player = "greg inglis" |
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 (player VARCHAR, team VARCHAR)
### Question:
Which player played for the Boston Patriots?
### Answer:
SELECT player FROM table_name_61 WHERE team = "boston patriots" |
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_2108684_1 (run_time VARCHAR, viewers__in_millions_ VARCHAR)
### Question:
What is the run time for the episode with 7.9 million viewers?
### Answer:
SELECT run_time FROM table_2108684_1 WHERE viewers__in_millions_ = "7.9" |
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_10 (result VARCHAR, score VARCHAR)
### Question:
What's the result when the score is 2-2?
### Answer:
SELECT result FROM table_name_10 WHERE score = "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_11 (after_debt VARCHAR, cash_on_hand VARCHAR)
### Question:
How much is after debt when cash on hand is $651,300?
### Answer:
SELECT after_debt FROM table_name_11 WHERE cash_on_hand = "$651,300" |
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_84 (date VARCHAR, opponent_in_the_final VARCHAR)
### Question:
What date did Namigata play against Wen-Hsin Hsu in the finals?
### Answer:
SELECT date FROM table_name_84 WHERE opponent_in_the_final = "wen-hsin hsu" |
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_64 (Id VARCHAR)
### Question:
What is 1982, when 1978 is "A", when 1985 is "4R", and when 1991 is "1R"?
### Answer:
SELECT 1982 FROM table_name_64 WHERE 1978 = "a" AND 1985 = "4r" AND 1991 = "1r" |
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_1277350_5 (friday_fifth_day VARCHAR, day__see_irregularities__ VARCHAR)
### Question:
How do you say Friday in Polish?
### Answer:
SELECT friday_fifth_day FROM table_1277350_5 WHERE day__see_irregularities__ = "Polish" |
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 (ranking VARCHAR, season VARCHAR)
### Question:
Which Ranking has a Season of 2009?
### Answer:
SELECT ranking FROM table_name_14 WHERE season = "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_73 (nickname VARCHAR, age___ma__ VARCHAR)
### Question:
Name the nickname with age of 4.9
### Answer:
SELECT nickname FROM table_name_73 WHERE age___ma__ = "4.9" |
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_18536769_1 (frequency VARCHAR, owner VARCHAR)
### Question:
When vista radio is the owner what is the frequency?
### Answer:
SELECT frequency FROM table_18536769_1 WHERE owner = "Vista Radio" |
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 (circuit VARCHAR, winning_driver VARCHAR, round VARCHAR)
### Question:
Which Circuit has a Winning Driver of hans-joachim stuck, and a Round of 3?
### Answer:
SELECT circuit FROM table_name_74 WHERE winning_driver = "hans-joachim stuck" AND round = 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_84 (share VARCHAR, episode_no VARCHAR)
### Question:
What's the share of Episode 1?
### Answer:
SELECT share FROM table_name_84 WHERE episode_no = 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_39 (time VARCHAR, round VARCHAR, opponent VARCHAR)
### Question:
What was the total time for the match that ocurred in Round 3 with opponent Keith Wisniewski?
### Answer:
SELECT time FROM table_name_39 WHERE round = "3" AND opponent = "keith wisniewski" |
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 (number VARCHAR, acquisition_via VARCHAR, school_club_team VARCHAR)
### Question:
What number has an acquisition via the Rookie Draft, and is part of a School/club team at Cal State Fullerton?
### Answer:
SELECT number FROM table_name_54 WHERE acquisition_via = "rookie draft" AND school_club_team = "cal state fullerton" |
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_11 (attendance VARCHAR, decision VARCHAR, home VARCHAR)
### Question:
How many people attended the game when Calgary was the home team and the decision was McLean?
### Answer:
SELECT COUNT(attendance) FROM table_name_11 WHERE decision = "mclean" AND home = "calgary" |
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 (party VARCHAR, district VARCHAR)
### Question:
What is the party in Ohio 6 District?
### Answer:
SELECT party FROM table_name_68 WHERE district = "ohio 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_1601792_3 (language VARCHAR, station VARCHAR)
### Question:
What is the language of the malacca fm station?
### Answer:
SELECT language FROM table_1601792_3 WHERE station = "Malacca 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_92 (circuit VARCHAR, race VARCHAR)
### Question:
What circuit was the British Grand Prix?
### Answer:
SELECT circuit FROM table_name_92 WHERE race = "british 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 customers (customer_id VARCHAR); CREATE TABLE customer_events (customer_id VARCHAR)
### Question:
How many customers did not have any event?
### Answer:
SELECT COUNT(*) FROM customers WHERE NOT customer_id IN (SELECT customer_id FROM customer_events) |
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 (away_team VARCHAR, home_team VARCHAR)
### Question:
What is the score of the away team with the home team Fitzroy?
### Answer:
SELECT away_team AS score FROM table_name_88 WHERE home_team = "fitzroy" |
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 (player VARCHAR, college VARCHAR)
### Question:
What p;layer attended Concordia College?
### Answer:
SELECT player FROM table_name_40 WHERE college = "concordia" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.