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_98 (name VARCHAR, location VARCHAR, entered_service VARCHAR)
### Question:
Which is located in Angola and entered service in 1988?
### Answer:
SELECT name FROM table_name_98 WHERE location = "angola" AND entered_service = "1988" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_10015132_11 (school_club_team VARCHAR, no VARCHAR)
### Question:
What school did player number 21 play for?
### Answer:
SELECT school_club_team FROM table_10015132_11 WHERE no = "21" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1638437_2 (english_name VARCHAR, simplified VARCHAR)
### Question:
Name the english name for 崖城镇
### Answer:
SELECT english_name FROM table_1638437_2 WHERE simplified = "崖城镇" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE technician (Team VARCHAR)
### Question:
Please show the team that has the most number of technicians.
### Answer:
SELECT Team FROM technician GROUP BY Team ORDER BY COUNT(*) 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_97 (long VARCHAR, avg_g VARCHAR)
### Question:
Which Long has redshirt for its Avg/G?
### Answer:
SELECT long FROM table_name_97 WHERE avg_g = "redshirt" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_20463779_22 (player VARCHAR)
### Question:
What is Phil Taylor's 3-dart average?
### Answer:
SELECT 3 AS _dart_average FROM table_20463779_22 WHERE player = "Phil Taylor" |
Below is an context that describes a 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 (event VARCHAR, competition VARCHAR, position VARCHAR)
### Question:
Which Event has 5th Position in the European Championships Competition?
### Answer:
SELECT event FROM table_name_49 WHERE competition = "european championships" AND position = "5th" |
Below is an context that describes a 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 (attendance VARCHAR, home VARCHAR)
### Question:
How many people were in attendance when the home shows as Bulls?
### Answer:
SELECT COUNT(attendance) FROM table_name_89 WHERE home = "bulls" |
Below is an context that describes a 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 (country VARCHAR, base VARCHAR)
### Question:
what is the country when the base is ljubljana?
### Answer:
SELECT country FROM table_name_67 WHERE base = "ljubljana" |
Below is an context that describes a 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 (election VARCHAR)
### Question:
What 2nd Member has an Election of 1833 by-election?
### Answer:
SELECT 2 AS nd_member FROM table_name_43 WHERE election = "1833 by-election" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21172539_1 (original_air_date VARCHAR, no_in_season VARCHAR)
### Question:
What date did episode 15 of the season originally air?
### Answer:
SELECT original_air_date FROM table_21172539_1 WHERE no_in_season = 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_4 (no_s_ VARCHAR, height_in_ft VARCHAR, position VARCHAR)
### Question:
Name the numbers for the player with a height in ft of 6-7 for the guard
### Answer:
SELECT no_s_ FROM table_name_4 WHERE height_in_ft = "6-7" AND position = "guard" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_30049462_5 (high_points VARCHAR, date VARCHAR)
### Question:
in december 7 who made the high points
### Answer:
SELECT high_points FROM table_30049462_5 WHERE date = "December 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_61 (silver VARCHAR, rank VARCHAR, total VARCHAR)
### Question:
Which country is ranked number 2 and has less than 5 total medals?
### Answer:
SELECT COUNT(silver) FROM table_name_61 WHERE rank = 2 AND total < 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_40 (races VARCHAR, series VARCHAR, poles VARCHAR)
### Question:
What race was there in the formula one series when there was a test driver?
### Answer:
SELECT races FROM table_name_40 WHERE series = "formula one" AND poles = "test driver" |
Below is an context that describes a 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 (airport VARCHAR, city VARCHAR)
### Question:
Which airport is associated with Macau?
### Answer:
SELECT airport FROM table_name_71 WHERE city = "macau" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE screen_mode (used_kb INTEGER)
### Question:
List the maximum, minimum and average number of used kb in screen mode.
### Answer:
SELECT MAX(used_kb), MIN(used_kb), AVG(used_kb) FROM screen_mode |
Below is an context that describes a 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 (year INTEGER, runner_s__up VARCHAR)
### Question:
What was the most recent year that Kathy Ahern was a runner-up?
### Answer:
SELECT MAX(year) FROM table_name_12 WHERE runner_s__up = "kathy ahern" |
Below is an context that describes a 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 (tie_no VARCHAR, away_team VARCHAR)
### Question:
What was the tie no when the away team was northwich victoria?
### Answer:
SELECT tie_no FROM table_name_21 WHERE away_team = "northwich victoria" |
Below is an context that describes a 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 (date VARCHAR, partner VARCHAR, score VARCHAR)
### Question:
What is the Date of the match with a Score of 0–6, 2–6 with Partner Marcella Mesker?
### Answer:
SELECT date FROM table_name_57 WHERE partner = "marcella mesker" AND score = "0–6, 2–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 medicine_enzyme_interaction (interaction_type VARCHAR)
### Question:
What is the most common interaction type between enzymes and medicine? And how many are there?
### Answer:
SELECT interaction_type, COUNT(*) FROM medicine_enzyme_interaction GROUP BY interaction_type ORDER BY COUNT(*) 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 (record VARCHAR, score VARCHAR)
### Question:
What was the record at the game that had a score of 7-10?
### Answer:
SELECT record FROM table_name_76 WHERE score = "7-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_64 (december INTEGER, record VARCHAR)
### Question:
What day in December was the game that resulted in a record of 6-3-1?
### Answer:
SELECT SUM(december) FROM table_name_64 WHERE record = "6-3-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_84 (platform VARCHAR, publisher VARCHAR)
### Question:
On what platform does Mindark publish?
### Answer:
SELECT platform FROM table_name_84 WHERE publisher = "mindark" |
Below is an context that describes a 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 (total_foreign_born__1000_ INTEGER, born_in_a_non_eu_state__1000_ VARCHAR, total_population__1000_ VARCHAR)
### Question:
What is the highest Total Foreign-born (1000) from a non EU state (1000) of 685 and a population (1000) smaller than 10,666?
### Answer:
SELECT MAX(total_foreign_born__1000_) FROM table_name_53 WHERE born_in_a_non_eu_state__1000_ = 685 AND total_population__1000_ > 10 OFFSET 666 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_261642_3 (g__μs_km_ VARCHAR, frequency__hz_ VARCHAR)
### Question:
What is the g (μs/km)when the frequency (hz) is 100k?
### Answer:
SELECT g__μs_km_ FROM table_261642_3 WHERE frequency__hz_ = "100k" |
Below is an context that describes a 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 (date VARCHAR, game_site VARCHAR)
### Question:
What is the date of the game that took place at the Resch Center?
### Answer:
SELECT date FROM table_name_41 WHERE game_site = "resch center" |
Below is an context that describes a 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 (date VARCHAR, site VARCHAR)
### Question:
Which date had a site of N/A?
### Answer:
SELECT date FROM table_name_9 WHERE site = "n/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_89 (air_date VARCHAR, episode_number VARCHAR, event_1 VARCHAR)
### Question:
What is the air date the had atlasphere for event 1 before episode 11?
### Answer:
SELECT air_date FROM table_name_89 WHERE episode_number < 11 AND event_1 = "atlasphere" |
Below is an context that describes a 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 (date VARCHAR, score VARCHAR)
### Question:
what is the date when the score is 115-93?
### Answer:
SELECT date FROM table_name_68 WHERE score = "115-93" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12828723_3 (won VARCHAR, club VARCHAR)
### Question:
what's the won with club being ammanford rfc
### Answer:
SELECT won FROM table_12828723_3 WHERE club = "Ammanford RFC" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_24334163_1 (Winners INTEGER, total_money_won VARCHAR)
### Question:
What is the latest amount of won legs in the payoffs when the prize money was £2,350?
### Answer:
SELECT MAX(Winners) AS play_off_legs_won FROM table_24334163_1 WHERE total_money_won = "£2,350" |
Below is an context that describes a 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 (weight__kg_ INTEGER, position VARCHAR)
### Question:
What is the highest weight of the position scrum half?
### Answer:
SELECT MAX(weight__kg_) FROM table_name_24 WHERE position = "scrum half" |
Below is an context that describes a 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 (crowd VARCHAR, venue VARCHAR)
### Question:
What was the attendance when the VFL played Junction Oval?
### Answer:
SELECT COUNT(crowd) FROM table_name_58 WHERE venue = "junction oval" |
Below is an context that describes a 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 (state VARCHAR, appointment VARCHAR)
### Question:
What state has an appointment for jul 12, 2001?
### Answer:
SELECT state FROM table_name_47 WHERE appointment = "jul 12, 2001" |
Below is an context that describes a 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 VARCHAR, qual_2 VARCHAR)
### Question:
What team had 1:34.578 in Qual 2?
### Answer:
SELECT team FROM table_name_55 WHERE qual_2 = "1:34.578" |
Below is an context that describes a 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 (top_25 VARCHAR, top_10 VARCHAR, cuts_made VARCHAR)
### Question:
What is the total number of top-25 with a top-10 bigger than 2 and less than 29 cuts?
### Answer:
SELECT COUNT(top_25) FROM table_name_92 WHERE top_10 > 2 AND cuts_made < 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_99 (playoffs VARCHAR, regular_season VARCHAR)
### Question:
Who Playoffs has a Regular Season of on hiatus.?
### Answer:
SELECT playoffs FROM table_name_99 WHERE regular_season = "on hiatus." |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11960610_10 (high_points VARCHAR, high_rebounds VARCHAR)
### Question:
Who had high points when high rebound is gray (8)?
### Answer:
SELECT high_points FROM table_11960610_10 WHERE high_rebounds = "Gray (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_2618113_1 (original_air_date VARCHAR, production_code VARCHAR)
### Question:
What was the airdate of k0120?
### Answer:
SELECT original_air_date FROM table_2618113_1 WHERE production_code = "K0120" |
Below is an context that describes a 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_52 (runner_s__up VARCHAR, tournament VARCHAR)
### Question:
Who was the runner-up in the RR Donnelley LPGA Founders Cup?
### Answer:
SELECT runner_s__up FROM table_name_52 WHERE tournament = "rr donnelley lpga founders cup" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_30108346_1 (troops_per_one_million_population VARCHAR, troops_per_$1_billion___usd___gdp VARCHAR)
### Question:
Name the total number of troops per one million being 2.76
### Answer:
SELECT COUNT(troops_per_one_million_population) FROM table_30108346_1 WHERE troops_per_$1_billion___usd___gdp = "2.76" |
Below is an context that describes a 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 (lost VARCHAR)
### Question:
If the Played was played, what is the lost?
### Answer:
SELECT lost FROM table_name_66 WHERE "played" = "played" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_25016824_2 (reward VARCHAR, immunity VARCHAR, finish VARCHAR)
### Question:
What was the reward when immunity went to martin and finish is 13th voted out 8th jury member day 46?
### Answer:
SELECT reward FROM table_25016824_2 WHERE immunity = "Martin" AND finish = "13th voted Out 8th Jury Member Day 46" |
Below is an context that describes a 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 (name VARCHAR, total_tenure_rank VARCHAR, total_tenure_time VARCHAR, uninterrupted_time VARCHAR)
### Question:
Who has a total tenure time and uninterrupted time of 36 years, 0 days, as well as a total tenure rank of 49?
### Answer:
SELECT name FROM table_name_14 WHERE total_tenure_time = "36 years, 0 days" AND uninterrupted_time = "36 years, 0 days" AND total_tenure_rank = 49 |
Below is an context that describes a 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 (class VARCHAR, year VARCHAR)
### Question:
What is the class of 2009?
### Answer:
SELECT class FROM table_name_26 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_76 (jockey VARCHAR, group VARCHAR)
### Question:
Which jockey had a group of G3?
### Answer:
SELECT jockey FROM table_name_76 WHERE group = "g3" |
Below is an context that describes a 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_16 (record VARCHAR, date VARCHAR)
### Question:
What was the record for July 26?
### Answer:
SELECT record FROM table_name_16 WHERE date = "july 26" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21377473_7 (stadium VARCHAR, score VARCHAR)
### Question:
When 1 - 1 leckie 90+3' is the score what is the stadium?
### Answer:
SELECT stadium FROM table_21377473_7 WHERE score = "1 - 1 Leckie 90+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_63 (deposits VARCHAR, non_interest_income VARCHAR, no_of_branches_offices VARCHAR)
### Question:
How many deposits had a Non-Interest Income of 0.9500000000000001 and number of branch/offices less than 17?
### Answer:
SELECT COUNT(deposits) FROM table_name_63 WHERE non_interest_income = 0.9500000000000001 AND no_of_branches_offices < 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_1184344_1 (name VARCHAR)
### Question:
What was the 1845 disposal for sussex?
### Answer:
SELECT 1845 AS _disposal FROM table_1184344_1 WHERE name = "Sussex" |
Below is an context that describes a 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 (commentator VARCHAR, spokespersons VARCHAR)
### Question:
Who was the commentator when the spokesperson was michael aspel?
### Answer:
SELECT commentator FROM table_name_35 WHERE spokespersons = "michael aspel" |
Below is an context that describes a 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 (roll INTEGER, authority VARCHAR, name VARCHAR)
### Question:
What is the biggest roll number of Sylvia Park School, which has a state authority?
### Answer:
SELECT MAX(roll) FROM table_name_12 WHERE authority = "state" AND name = "sylvia park 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_name_25 (partnering VARCHAR, score VARCHAR)
### Question:
What is the partner with a score of 4–6, 7–5, [10–8]?
### Answer:
SELECT partnering FROM table_name_25 WHERE score = "4–6, 7–5, [10–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_name_42 (sheep_and_goats INTEGER, total_horses VARCHAR, year VARCHAR, cows VARCHAR)
### Question:
What is the lowest number of sheep and goats after 1931, with fewer than 2518 cows and more than 2604.8 horses?
### Answer:
SELECT MIN(sheep_and_goats) FROM table_name_42 WHERE year > 1931 AND cows < 2518 AND total_horses > 2604.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_name_54 (score VARCHAR, home VARCHAR)
### Question:
What is the Score with a Home with hornets?
### Answer:
SELECT score FROM table_name_54 WHERE home = "hornets" |
Below is an context that describes a 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 (round VARCHAR, pick VARCHAR)
### Question:
Which Round is pick 112 in?
### Answer:
SELECT round FROM table_name_2 WHERE pick = 112 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1754531_4 (domestic_freight VARCHAR, international_mail VARCHAR, domestic_mail VARCHAR)
### Question:
Namw the total number for domestic freight for international mail is larger than 1.0 with domestic mail for 260
### Answer:
SELECT COUNT(domestic_freight) FROM table_1754531_4 WHERE international_mail > 1.0 AND domestic_mail = 260 |
Below is an context that describes a 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 (Local VARCHAR, mission VARCHAR)
### Question:
What is Local Mission, when Mission is "Mauritius"?
### Answer:
SELECT Local AS mission FROM table_name_8 WHERE mission = "mauritius" |
Below is an context that describes a 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 (points VARCHAR, year INTEGER)
### Question:
How many points after 1956?
### Answer:
SELECT COUNT(points) FROM table_name_40 WHERE year > 1956 |
Below is an context that describes a 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 (distance VARCHAR, name VARCHAR)
### Question:
what is the distance for mjåkollen?
### Answer:
SELECT distance FROM table_name_89 WHERE name = "mjåkollen" |
Below is an context that describes a 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 (attendance INTEGER, opponent VARCHAR, week VARCHAR)
### Question:
What is the largest crowd size at a match against the Chicago Cardinals after Week 10 of the season?
### Answer:
SELECT MAX(attendance) FROM table_name_20 WHERE opponent = "chicago cardinals" AND week > 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_70 (party VARCHAR, incumbent VARCHAR)
### Question:
Which party had an incumbent of W. Jasper Talbert?
### Answer:
SELECT party FROM table_name_70 WHERE incumbent = "w. jasper talbert" |
Below is an context that describes a 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 (casting_at__°c_ VARCHAR, hardness VARCHAR)
### Question:
What is the casting temperature for a hardness of 22?
### Answer:
SELECT casting_at__°c_ FROM table_name_88 WHERE hardness = "22" |
Below is an context that describes a 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 (to_par VARCHAR, total VARCHAR)
### Question:
For the total of 288 what was the to par?
### Answer:
SELECT to_par FROM table_name_71 WHERE total = 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_26173063_2 (ahli VARCHAR, ramtha VARCHAR)
### Question:
what is ahli when ramtha is 0-4?
### Answer:
SELECT ahli FROM table_26173063_2 WHERE ramtha = "0-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_29615165_5 (_percentage_20_39_years VARCHAR, quartier VARCHAR)
### Question:
how many 20-39% are in pont-de-vivaux?
### Answer:
SELECT COUNT(_percentage_20_39_years) FROM table_29615165_5 WHERE quartier = "Pont-de-Vivaux" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12828723_5 (lost VARCHAR)
### Question:
What was the lost with tries for?
### Answer:
SELECT lost FROM table_12828723_5 WHERE "tries_for" = "tries_for" |
Below is an context that describes a 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 (away_team VARCHAR, tie_no VARCHAR, home_team VARCHAR)
### Question:
Who was the away team that played Northampton Town at home with a tie number of replay?
### Answer:
SELECT away_team FROM table_name_53 WHERE tie_no = "replay" AND home_team = "northampton town" |
Below is an context that describes a 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_28 (electrics VARCHAR, engine VARCHAR, model_name VARCHAR)
### Question:
Which Electrics has an Engine of 175cc, bhp (kw), and a Model Name of d10 sports & bushman?
### Answer:
SELECT electrics FROM table_name_28 WHERE engine = "175cc, bhp (kw)" AND model_name = "d10 sports & bushman" |
Below is an context that describes a 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, name VARCHAR)
### Question:
What Position did the sophomore Darnell Jackson play?
### Answer:
SELECT position FROM table_name_48 WHERE year = "sophomore" AND name = "darnell jackson" |
Below is an context that describes a 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 (position VARCHAR, height VARCHAR, home_town VARCHAR)
### Question:
What position does the 5-8 player from Grottoes, VA play?
### Answer:
SELECT position FROM table_name_10 WHERE height = "5-8" AND home_town = "grottoes, va" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_14598_9 (females___percentage_ VARCHAR, india_state_ut VARCHAR)
### Question:
What is the percentage of females where in India and are maharashtra?
### Answer:
SELECT females___percentage_ FROM table_14598_9 WHERE india_state_ut = "Maharashtra" |
Below is an context that describes a 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_63 (venue VARCHAR, against INTEGER)
### Question:
Which venue has more than 19 against?
### Answer:
SELECT venue FROM table_name_63 WHERE against > 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_name_5 (written_by VARCHAR, prod_code VARCHAR, directed_by VARCHAR)
### Question:
Who wrote the episode with a production code greater than 1.4 direcyed by rick wallace?
### Answer:
SELECT written_by FROM table_name_5 WHERE prod_code > 1.4 AND directed_by = "rick wallace" |
Below is an context that describes a 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 (pole_position VARCHAR, grand_prix VARCHAR)
### Question:
What is the Pole Position of the Portuguese Grand Prix?
### Answer:
SELECT pole_position FROM table_name_98 WHERE grand_prix = "portuguese 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_70 (spacecraft VARCHAR, end_time VARCHAR)
### Question:
What is the spacecraft with end time of 4 September 04:51?
### Answer:
SELECT spacecraft FROM table_name_70 WHERE end_time = "4 september 04:51" |
Below is an context that describes a 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 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, outgoing_manager VARCHAR)
### Question:
I wan the date of vacancy for departure of resigned and outgoing manager of gordon wylde
### Answer:
SELECT date_of_vacancy FROM table_name_22 WHERE manner_of_departure = "resigned" AND outgoing_manager = "gordon wylde" |
Below is an context that describes a 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 (high_points VARCHAR, date VARCHAR)
### Question:
What is the highest number of points a player got during the game on May 25?
### Answer:
SELECT high_points FROM table_name_85 WHERE date = "may 25" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_25703_2 (death_2012 VARCHAR, birth_2012 VARCHAR)
### Question:
What were the total number of 2012 deaths when 2012 births were 127?
### Answer:
SELECT death_2012 FROM table_25703_2 WHERE birth_2012 = 127 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21761882_4 (final_score VARCHAR, attendance VARCHAR)
### Question:
What was the final score when the attendance was 25598?
### Answer:
SELECT final_score FROM table_21761882_4 WHERE attendance = 25598 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1358608_4 (winner_2nd VARCHAR, venue VARCHAR)
### Question:
Who was the winner of the race at Belmont?
### Answer:
SELECT winner_2nd FROM table_1358608_4 WHERE venue = "Belmont" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11695215_1 (written_by VARCHAR, directed_by VARCHAR)
### Question:
How many episodes did David Jackson write and direct?
### Answer:
SELECT COUNT(written_by) FROM table_11695215_1 WHERE directed_by = "David Jackson" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1342233_11 (candidates VARCHAR, district VARCHAR)
### Question:
Which candidates are associated with the Georgia 7 district?
### Answer:
SELECT candidates FROM table_1342233_11 WHERE district = "Georgia 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_1953516_1 (winning_span VARCHAR, name VARCHAR)
### Question:
What is the winning span for the name of bernard gallacher?
### Answer:
SELECT winning_span FROM table_1953516_1 WHERE name = "Bernard Gallacher" |
Below is an context that describes a 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 (career_caps VARCHAR, position VARCHAR, tests VARCHAR)
### Question:
What is the career caps for half-back, when tests is more than 3?
### Answer:
SELECT career_caps FROM table_name_73 WHERE position = "half-back" AND tests > 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_80 (total VARCHAR, ward INTEGER)
### Question:
WHAT IS THE TOTAL NUMBER WITH A WARD SMALLER THAN 0?
### Answer:
SELECT COUNT(total) FROM table_name_80 WHERE ward < 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_9 (report VARCHAR, round VARCHAR)
### Question:
What is the report for round 9?
### Answer:
SELECT report FROM table_name_9 WHERE round = 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_1 (grid INTEGER, laps VARCHAR)
### Question:
What is the highest grid that has 55 laps?
### Answer:
SELECT MAX(grid) FROM table_name_1 WHERE laps = 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_62 (date VARCHAR, opponent_in_the_final VARCHAR)
### Question:
On what date was the opponent in the final Gwinyai Tongoona?
### Answer:
SELECT date FROM table_name_62 WHERE opponent_in_the_final = "gwinyai tongoona" |
Below is an context that describes a 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 (league VARCHAR, europe VARCHAR)
### Question:
What league has a value of 0 29 (152) for Europe?
### Answer:
SELECT league FROM table_name_43 WHERE europe = "0 29 (152)" |
Below is an context that describes a 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 (swimsuit INTEGER, average VARCHAR, evening_gown VARCHAR)
### Question:
Name the sum of swimsuit when the evening gown is less than 6.983 and the average is less than 7.362
### Answer:
SELECT SUM(swimsuit) FROM table_name_67 WHERE average < 7.362 AND evening_gown < 6.983 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_186468_1 (v_band VARCHAR, k_band VARCHAR)
### Question:
When 5.5 is the l-band what is the v-band?
### Answer:
SELECT v_band FROM table_186468_1 WHERE k_band = "5.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_50 (constructor VARCHAR, driver VARCHAR)
### Question:
What company was the constructor when Nick Heidfeld was the driver/
### Answer:
SELECT constructor FROM table_name_50 WHERE driver = "nick heidfeld" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_29997112_3 (flag_name VARCHAR, meaning VARCHAR)
### Question:
What is the name of the flag that means decimal digit 2?
### Answer:
SELECT flag_name FROM table_29997112_3 WHERE meaning = "Decimal Digit 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_27698941_8 (high_points VARCHAR, game VARCHAR)
### Question:
How many players held the high point records for game 34?
### Answer:
SELECT COUNT(high_points) FROM table_27698941_8 WHERE game = 34 |
Below is an context that describes a 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 (call_sign VARCHAR, name VARCHAR)
### Question:
What is the call sign for Thunder 106.1?
### Answer:
SELECT call_sign FROM table_name_62 WHERE name = "thunder 106.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_64 (kickoff_time VARCHAR, week VARCHAR)
### Question:
What was the kickoff time for week 11's game?
### Answer:
SELECT kickoff_time FROM table_name_64 WHERE week = 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_name_55 (name VARCHAR)
### Question:
What is the 2012 club for the Billy Miller Category:Articles with hcards (Name)?
### Answer:
SELECT 2012 AS _club FROM table_name_55 WHERE name = "billy miller category:articles with hcards" |
Below is an context that describes a 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 (points INTEGER, entrant VARCHAR, year VARCHAR)
### Question:
What was Yardley-BRM's points high after 1971?
### Answer:
SELECT MAX(points) FROM table_name_96 WHERE entrant = "yardley-brm" AND year > 1971 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.