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_29803475_3 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
### Question:
who directed the episode that have 0.25 million u.s viewers
### Answer:
SELECT directed_by FROM table_29803475_3 WHERE us_viewers__million_ = "0.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_name_6 (year VARCHAR, runner_up VARCHAR)
### Question:
What year shows as Runner-up of england (24 pts)?
### Answer:
SELECT year FROM table_name_6 WHERE runner_up = "england (24 pts)" |
Below is an context that describes a sql 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 (pubs_2011 INTEGER, location VARCHAR, totals_07_11 VARCHAR)
### Question:
What is the average PUBS 11 value in Mumbai, which has a 07-11 totals less than 1025?
### Answer:
SELECT AVG(pubs_2011) FROM table_name_52 WHERE location = "mumbai" AND totals_07_11 < 1025 |
Below is an context that describes a sql 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 (laps VARCHAR, grid VARCHAR)
### Question:
Tell me the laps for 3 grids
### Answer:
SELECT laps FROM table_name_67 WHERE grid = 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_6 (position VARCHAR, player VARCHAR)
### Question:
What Position is Ryan Russell?
### Answer:
SELECT position FROM table_name_6 WHERE player = "ryan russell" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23308178_4 (points INTEGER, date VARCHAR)
### Question:
How many points were there scored on October 27?
### Answer:
SELECT MAX(points) FROM table_23308178_4 WHERE date = "October 27" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1952065_4 (teams_with_division_titles VARCHAR, division_championships VARCHAR)
### Question:
How many division title teams were in the division championships 9 times?
### Answer:
SELECT COUNT(teams_with_division_titles) FROM table_1952065_4 WHERE division_championships = 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_80 (group_position VARCHAR, result_f_a VARCHAR)
### Question:
Result F–A of 2–0 had what group position?
### Answer:
SELECT group_position FROM table_name_80 WHERE result_f_a = "2–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_32 (visitor VARCHAR, decision VARCHAR, record VARCHAR)
### Question:
Which Visitor has a Decision of myre, and a Record of 44–7–15?
### Answer:
SELECT visitor FROM table_name_32 WHERE decision = "myre" AND record = "44–7–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_24 (rank INTEGER, silver VARCHAR, bronze VARCHAR)
### Question:
What is the Rank of the Nation with 0 Silver and more than 1 Bronze?
### Answer:
SELECT MAX(rank) FROM table_name_24 WHERE silver < 1 AND bronze > 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_1147705_1 (engine_type VARCHAR, model VARCHAR)
### Question:
How many have are model 2.4 awd?
### Answer:
SELECT COUNT(engine_type) FROM table_1147705_1 WHERE model = "2.4 AWD" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1341598_11 (candidates VARCHAR, incumbent VARCHAR)
### Question:
Who are shown as candidates when George Darden is the incumbent?
### Answer:
SELECT candidates FROM table_1341598_11 WHERE incumbent = "George Darden" |
Below is an context that describes a sql 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 (player VARCHAR, position VARCHAR, college VARCHAR)
### Question:
Who is the quarterback for Arkansas State?
### Answer:
SELECT player FROM table_name_38 WHERE position = "quarterback" AND college = "arkansas state" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_16751596_2 (poll_source VARCHAR, dates_administered VARCHAR)
### Question:
Name the poll source for july 12, 2008
### Answer:
SELECT poll_source FROM table_16751596_2 WHERE dates_administered = "July 12, 2008" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_18424435_5 (directed_by VARCHAR, us_air_date VARCHAR)
### Question:
Who directed the episode that aired on July 29, 2011?
### Answer:
SELECT directed_by FROM table_18424435_5 WHERE us_air_date = "July 29, 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_name_5 (stage VARCHAR, mountains_classification VARCHAR, winner VARCHAR)
### Question:
Which stage has a mountains classification of Mariano Piccoli and was won by Giuseppe Citterio?
### Answer:
SELECT stage FROM table_name_5 WHERE mountains_classification = "mariano piccoli" AND winner = "giuseppe citterio" |
Below is an context that describes a sql 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 (height__cm_ INTEGER, weight__kg_ VARCHAR, birthdate VARCHAR)
### Question:
What is the height of the player born on June 24, 1964, with a weight over 84 kg?
### Answer:
SELECT AVG(height__cm_) FROM table_name_21 WHERE weight__kg_ > 84 AND birthdate = "june 24, 1964" |
Below is an context that describes a sql 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 (win__percentage INTEGER, year VARCHAR, crew VARCHAR)
### Question:
What is the total of win percentages when the year is 2008 and the crew is varsity 8+?
### Answer:
SELECT SUM(win__percentage) FROM table_name_74 WHERE year = "2008" AND crew = "varsity 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_93 (silver INTEGER, bronze VARCHAR)
### Question:
What is the silver total for nations with 10 bronze medals?
### Answer:
SELECT SUM(silver) FROM table_name_93 WHERE bronze = 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_9 (singles_champions VARCHAR, country VARCHAR, city VARCHAR)
### Question:
Who was the Singles Champions in Trieste, Italy?
### Answer:
SELECT singles_champions FROM table_name_9 WHERE country = "italy" AND city = "trieste" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1773707_2 (length VARCHAR, height VARCHAR)
### Question:
What are the lengths of the models that are mm (in) tall?
### Answer:
SELECT length FROM table_1773707_2 WHERE height = "mm (in)" |
Below is an context that describes a sql 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 (tail_number VARCHAR, fatalities VARCHAR)
### Question:
What was the tail number with 3/3 fatalities?
### Answer:
SELECT tail_number FROM table_name_32 WHERE fatalities = "3/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_17 (name VARCHAR, best VARCHAR)
### Question:
What is the name for the best of 1:45.361?
### Answer:
SELECT name FROM table_name_17 WHERE best = "1:45.361" |
Below is an context that describes a sql 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 (rank VARCHAR, time VARCHAR)
### Question:
What is the rank for the rowers with the time of 6:24.35?
### Answer:
SELECT rank FROM table_name_51 WHERE time = "6:24.35" |
Below is an context that describes a sql 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 (visitor VARCHAR, date VARCHAR)
### Question:
Who is the visitor on March 24?
### Answer:
SELECT visitor FROM table_name_62 WHERE date = "march 24" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_14 (gold INTEGER, total INTEGER)
### Question:
What is the sum of Gold, when Total is less than 1?
### Answer:
SELECT SUM(gold) FROM table_name_14 WHERE total < 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_3 (american_labor_ticket VARCHAR, liberal_ticket VARCHAR)
### Question:
What is the American Labor ticket when Henry Epstein is the liberal ticket?
### Answer:
SELECT american_labor_ticket FROM table_name_3 WHERE liberal_ticket = "henry epstein" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27057070_3 (date_of_appointment VARCHAR, team VARCHAR)
### Question:
How many date of appointment entries are there when the team is khazar lankaran?
### Answer:
SELECT COUNT(date_of_appointment) FROM table_27057070_3 WHERE team = "Khazar Lankaran" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_26815674_1 (wins INTEGER)
### Question:
What is the lowest overall amount of wins?
### Answer:
SELECT MIN(wins) FROM table_26815674_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_26387382_1 (capacity__mw_ VARCHAR, turbines VARCHAR)
### Question:
What all capacities have turbines between 50-60?
### Answer:
SELECT capacity__mw_ FROM table_26387382_1 WHERE turbines = "50-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_13 (time VARCHAR, rider VARCHAR, manufacturer VARCHAR, grid VARCHAR)
### Question:
Name the Time which has a Manufacturer of aprilia, and a Grid smaller than 16, and a Rider of sandro cortese?
### Answer:
SELECT time FROM table_name_13 WHERE manufacturer = "aprilia" AND grid < 16 AND rider = "sandro cortese" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE representative (Party VARCHAR)
### Question:
How many distinct parties are there for representatives?
### Answer:
SELECT COUNT(DISTINCT Party) FROM representative |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23575917_8 (episode VARCHAR, davids_team VARCHAR)
### Question:
How many shows did team David consist of vernon kay and dara ó briain
### Answer:
SELECT COUNT(episode) FROM table_23575917_8 WHERE davids_team = "Vernon Kay and Dara Ó Briain" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_8 (date VARCHAR, venue VARCHAR)
### Question:
What date was the game played at princes park?
### Answer:
SELECT date FROM table_name_8 WHERE venue = "princes park" |
Below is an context that describes a sql 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 (time VARCHAR, distance VARCHAR, start_time VARCHAR)
### Question:
What was the finishing time of the Stage that featured a distance of 24.00km and a start time of 21:27?
### Answer:
SELECT time FROM table_name_78 WHERE distance = "24.00km" AND start_time = "21:27" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE matches (winner_name VARCHAR, winner_rank VARCHAR, winner_age VARCHAR)
### Question:
Find the name and rank of the 3 youngest winners across all matches.
### Answer:
SELECT DISTINCT winner_name, winner_rank FROM matches ORDER BY winner_age LIMIT 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_68 (name VARCHAR, spike VARCHAR)
### Question:
Who has exactly 342 spikes?
### Answer:
SELECT name FROM table_name_68 WHERE spike = 342 |
Below is an context that describes a sql 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 (goals_for INTEGER, goal_difference VARCHAR, losses VARCHAR, wins VARCHAR)
### Question:
What was the highest goals with fewer than 16 losses, fewer than 11 wins, and a goal difference greater than -9?
### Answer:
SELECT MAX(goals_for) FROM table_name_8 WHERE losses < 16 AND wins < 11 AND goal_difference > -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_57 (surface VARCHAR, round VARCHAR, player VARCHAR)
### Question:
Which Surface has a Round of 4th round, and a Player of maria sharapova?
### Answer:
SELECT surface FROM table_name_57 WHERE round = "4th round" AND player = "maria sharapova" |
Below is an context that describes a sql 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 (fcc_info VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)
### Question:
What's the FCC info with a Frequency MHz thats smaller than 100.3 and a City of License as Lowville, NY?
### Answer:
SELECT fcc_info FROM table_name_85 WHERE frequency_mhz < 100.3 AND city_of_license = "lowville, ny" |
Below is an context that describes a sql 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 (assembled VARCHAR)
### Question:
What is 2nd Member, when Assembled is "30 March 1298"?
### Answer:
SELECT 2 AS nd_member FROM table_name_96 WHERE assembled = "30 march 1298" |
Below is an context that describes 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_course_attendance (student_id VARCHAR); CREATE TABLE students (student_id VARCHAR)
### Question:
List the id of students who never attends courses?
### Answer:
SELECT student_id FROM students WHERE NOT student_id IN (SELECT student_id FROM student_course_attendance) |
Below is an context that describes a sql 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 (date VARCHAR, others VARCHAR, psd___pc VARCHAR)
### Question:
When the other is n/a and the psc-pc is 30% what is the date?
### Answer:
SELECT date FROM table_name_52 WHERE others = "n/a" AND psd___pc = "30%" |
Below is an context that describes a sql 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 (notes VARCHAR, country VARCHAR)
### Question:
What is the notes for the team from Denmark?
### Answer:
SELECT notes FROM table_name_48 WHERE country = "denmark" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21021796_1 (valves INTEGER)
### Question:
What is the greatest number of valves?
### Answer:
SELECT MIN(valves) FROM table_21021796_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_95 (round VARCHAR, player VARCHAR)
### Question:
How many rounds did Honester Davidson play?
### Answer:
SELECT COUNT(round) FROM table_name_95 WHERE player = "honester davidson" |
Below is an context that describes a sql 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 (date VARCHAR, venue VARCHAR)
### Question:
On what date was the venue VFL Park?
### Answer:
SELECT date FROM table_name_5 WHERE venue = "vfl park" |
Below is an context that describes a sql 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 (elected VARCHAR, incumbent VARCHAR, party VARCHAR, status VARCHAR)
### Question:
What year was republican, re-elected incumbent John all barham elected?
### Answer:
SELECT elected FROM table_name_92 WHERE party = "republican" AND status = "re-elected" AND incumbent = "john all barham" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2850912_3 (college_junior_club_team VARCHAR, player VARCHAR)
### Question:
Which team did David McLay play for?
### Answer:
SELECT college_junior_club_team FROM table_2850912_3 WHERE player = "David McLay" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_19769687_3 (_number_of_total_votes INTEGER, election VARCHAR)
### Question:
Name the most number of total votes for election for 1878
### Answer:
SELECT MAX(_number_of_total_votes) FROM table_19769687_3 WHERE election = "1878" |
Below is an context that describes a sql 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 (position INTEGER, points VARCHAR, draws VARCHAR, goals_against VARCHAR, goals_for VARCHAR)
### Question:
Which Position has Goals against smaller than 59, and Goals for larger than 32, and Draws larger than 9, and Points larger than 35?
### Answer:
SELECT AVG(position) FROM table_name_90 WHERE goals_against < 59 AND goals_for > 32 AND draws > 9 AND points > 35 |
Below is an context that describes a sql 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 (position VARCHAR, name VARCHAR)
### Question:
What is the Position of moose goheen?
### Answer:
SELECT position FROM table_name_61 WHERE name = "moose goheen" |
Below is an context that describes a sql 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 (country VARCHAR, rank INTEGER)
### Question:
What is the country is ranked more than 4?
### Answer:
SELECT country FROM table_name_66 WHERE rank > 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 salary (salary VARCHAR, YEAR VARCHAR)
### Question:
What were all the salary values of players in 2010 and 2001?
### Answer:
SELECT salary FROM salary WHERE YEAR = 2010 UNION SELECT salary FROM salary WHERE YEAR = 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 (gain VARCHAR, name VARCHAR, loss VARCHAR)
### Question:
Can you tell me the total number of Gain that has the Name of williams, jonathan, and the Loss larger than 3?
### Answer:
SELECT COUNT(gain) FROM table_name_55 WHERE name = "williams, jonathan" AND loss > 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_11318462_5 (u15_3rd_iv VARCHAR, u15_4th_iv VARCHAR)
### Question:
what are all the u15 3rd iv with u15 4th iv being bbc
### Answer:
SELECT u15_3rd_iv FROM table_11318462_5 WHERE u15_4th_iv = "BBC" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27713890_1 (production_code INTEGER, us_viewers__millions_ VARCHAR)
### Question:
What is the production code that had 24.8 million u.s. viewers?
### Answer:
SELECT MAX(production_code) FROM table_27713890_1 WHERE us_viewers__millions_ = "24.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_82 (gold VARCHAR, bronze VARCHAR, silver VARCHAR)
### Question:
How many golds have a bronze less than 1, and a silver less than 1?
### Answer:
SELECT COUNT(gold) FROM table_name_82 WHERE bronze < 1 AND silver < 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_88 (final_position___round VARCHAR, competition VARCHAR)
### Question:
What is the final position/round of the UEFA cup?
### Answer:
SELECT final_position___round FROM table_name_88 WHERE competition = "uefa 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_name_4 (product VARCHAR)
### Question:
What was the amount of grain in 2001?
### Answer:
SELECT 2001 FROM table_name_4 WHERE product = "grain" |
Below is an context that describes a sql 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 (location VARCHAR, date VARCHAR)
### Question:
What is the location of the match on February 29, 2012?
### Answer:
SELECT location FROM table_name_47 WHERE date = "february 29, 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_225880_1 (year VARCHAR, runner_s__up VARCHAR)
### Question:
Name the year for willie goggin
### Answer:
SELECT year FROM table_225880_1 WHERE runner_s__up = "Willie Goggin" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE volume (Song VARCHAR, Volume_ID VARCHAR); CREATE TABLE music_festival (Volume VARCHAR, Result VARCHAR)
### Question:
Please show the songs that have result "nominated" at music festivals.
### Answer:
SELECT T2.Song FROM music_festival AS T1 JOIN volume AS T2 ON T1.Volume = T2.Volume_ID WHERE T1.Result = "Nominated" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27700530_14 (high_rebounds VARCHAR, date VARCHAR)
### Question:
Who had the most the most rebounds and how many did they have on April 1?
### Answer:
SELECT high_rebounds FROM table_27700530_14 WHERE date = "April 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_69 (date VARCHAR, tournament VARCHAR)
### Question:
Which Date has a Tournament of milan , italy?
### Answer:
SELECT date FROM table_name_69 WHERE tournament = "milan , italy" |
Below is an context that describes a sql 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 (event VARCHAR, distance VARCHAR)
### Question:
Which event has a distance of ft10in (m)?
### Answer:
SELECT event FROM table_name_88 WHERE distance = "ft10in (m)" |
Below is an context that describes a sql 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 (opponent_in_the_final VARCHAR, score VARCHAR)
### Question:
Which Opponent in the final has a Score of 6–3, 3–6, 6–8?
### Answer:
SELECT opponent_in_the_final FROM table_name_29 WHERE score = "6–3, 3–6, 6–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_23614702_2 (speed___knots__ VARCHAR, tons___lton__ VARCHAR)
### Question:
List the maximum speed for the 1.150 ton ships?
### Answer:
SELECT speed___knots__ FROM table_23614702_2 WHERE tons___lton__ = "1.150" |
Below is an context that describes a sql 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 (competition VARCHAR, score VARCHAR)
### Question:
What Competition's Score was 1-2?
### Answer:
SELECT competition FROM table_name_76 WHERE score = "1-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_24613895_1 (name_in_syriac VARCHAR, number_of_believers VARCHAR)
### Question:
Name the name in syriac for 500 believers
### Answer:
SELECT name_in_syriac FROM table_24613895_1 WHERE number_of_believers = 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_47 (polish_cup INTEGER, ekstraklasa VARCHAR, position VARCHAR, player VARCHAR)
### Question:
What is the lowest Polish Cup, when Position is "Midfielder", when Player is "Miroslav Radović", and when Ekstraklasa is less than 1?
### Answer:
SELECT MIN(polish_cup) FROM table_name_47 WHERE position = "midfielder" AND player = "miroslav radović" AND ekstraklasa < 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_1342256_32 (incumbent VARCHAR, district VARCHAR)
### Question:
How many sitting Representatives are there in the New York 10 polling area?
### Answer:
SELECT COUNT(incumbent) FROM table_1342256_32 WHERE district = "New York 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_21 (record VARCHAR, date VARCHAR)
### Question:
What is the record of the match on 2009-07-18?
### Answer:
SELECT record FROM table_name_21 WHERE date = "2009-07-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 performance (LOCATION VARCHAR)
### Question:
Show different locations and the number of performances at each location.
### Answer:
SELECT LOCATION, COUNT(*) FROM performance GROUP BY LOCATION |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_25760427_2 (single VARCHAR, artist VARCHAR)
### Question:
What is the song released by Travis?
### Answer:
SELECT single FROM table_25760427_2 WHERE artist = "Travis" |
Below is an context that describes a sql 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 (result VARCHAR, date VARCHAR)
### Question:
Name the result for january 14, 2008
### Answer:
SELECT result FROM table_name_19 WHERE date = "january 14, 2008" |
Below is an context that describes a sql 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 (player VARCHAR, year VARCHAR)
### Question:
Who was the player in 1981?
### Answer:
SELECT player FROM table_name_67 WHERE year = "1981" |
Below is an context that describes a sql 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 (date INTEGER, description VARCHAR)
### Question:
What is the latest death with a description of BR-Built inspection saloon?
### Answer:
SELECT MAX(date) FROM table_name_4 WHERE description = "br-built inspection saloon" |
Below is an context that describes a sql 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 (species_specific VARCHAR, link VARCHAR, comparative VARCHAR, intra_molecular_structure VARCHAR)
### Question:
Which Species Specific has a Comparative of no, and an Intra-molecular structure of no, and a Link of sourcecode?
### Answer:
SELECT species_specific FROM table_name_29 WHERE comparative = "no" AND intra_molecular_structure = "no" AND link = "sourcecode" |
Below is an context that describes a sql 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 (population VARCHAR, gdp_per_capita__us$_ VARCHAR)
### Question:
What is the population of the nation that has a GDP per capita (US$) of 11,929?
### Answer:
SELECT population FROM table_name_99 WHERE gdp_per_capita__us$_ = "11,929" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1473672_3 (player VARCHAR, position VARCHAR)
### Question:
Which players played right wing?
### Answer:
SELECT player FROM table_1473672_3 WHERE position = "Right Wing" |
Below is an context that describes a sql 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 (constructor VARCHAR, grid VARCHAR, driver VARCHAR)
### Question:
What Constructor did Michael Schumacher have with a Grid smaller than 5?
### Answer:
SELECT constructor FROM table_name_62 WHERE grid < 5 AND driver = "michael schumacher" |
Below is an context that describes a sql 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 (surface VARCHAR, date VARCHAR)
### Question:
What type of surface did they play on 21 July 1997
### Answer:
SELECT surface FROM table_name_14 WHERE date = "21 july 1997" |
Below is an context that describes a sql 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 (tournament VARCHAR, date VARCHAR)
### Question:
Which Tournament was on the Date 6 Sep 2009?
### Answer:
SELECT tournament FROM table_name_23 WHERE date = "6 sep 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_88 (ground VARCHAR, home_team VARCHAR)
### Question:
What is the ground of the game where the home team was Adelaide?
### Answer:
SELECT ground FROM table_name_88 WHERE home_team = "adelaide" |
Below is an context that describes a sql 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 (week INTEGER, result VARCHAR)
### Question:
What's the smallest week that had a result of t 17–17?
### Answer:
SELECT MIN(week) FROM table_name_75 WHERE result = "t 17–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_name_20 (lner_1946_no VARCHAR, year VARCHAR, lner_no VARCHAR)
### Question:
Which LNER 1946 number is from 1892 and has an LNER number of 7347–7356?
### Answer:
SELECT lner_1946_no FROM table_name_20 WHERE year = "1892" AND lner_no = "7347–7356" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21350934_2 (result VARCHAR, attendance VARCHAR)
### Question:
How many results have 14,381 as the attendance?
### Answer:
SELECT COUNT(result) FROM table_21350934_2 WHERE attendance = "14,381" |
Below is an context that describes a sql 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 (total INTEGER, b_score VARCHAR, gymnast VARCHAR)
### Question:
What is the total when the B Score was 9.15 for Cheng Fei ( chn )?
### Answer:
SELECT AVG(total) FROM table_name_70 WHERE b_score = 9.15 AND gymnast = "cheng fei ( chn )" |
Below is an context that describes a sql 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 (gdp__ppp__$m_usd VARCHAR, area__km²_ VARCHAR)
### Question:
How much is the GDP for an area of 116?
### Answer:
SELECT gdp__ppp__$m_usd FROM table_name_26 WHERE area__km²_ = "116" |
Below is an context that describes a sql 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 (time VARCHAR, competition VARCHAR, opponent VARCHAR)
### Question:
What is the time of the tim trophy competition where juventus was the opponent?
### Answer:
SELECT time FROM table_name_4 WHERE competition = "tim trophy" AND opponent = "juventus" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_72 (water_park VARCHAR, rank VARCHAR)
### Question:
what is the water park with the rank 20?
### Answer:
SELECT water_park FROM table_name_72 WHERE rank = 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_99 (player VARCHAR, pick__number VARCHAR)
### Question:
Who is Pick #41?
### Answer:
SELECT player FROM table_name_99 WHERE pick__number = "41" |
Below is an context that describes a sql 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 (doctor VARCHAR, format VARCHAR, title VARCHAR)
### Question:
What is Doctor, when Format is CD, and when Title is The Relics Of Time?
### Answer:
SELECT doctor FROM table_name_98 WHERE format = "cd" AND title = "the relics of time" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_36 (carries INTEGER, touchdowns INTEGER)
### Question:
What is the average number of carries that have more than 72 touchdowns?
### Answer:
SELECT AVG(carries) FROM table_name_36 WHERE touchdowns > 72 |
Below is an context that describes a sql 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 (venue VARCHAR, away_team VARCHAR)
### Question:
Where was the game against the away team Footscray held?
### Answer:
SELECT venue FROM table_name_49 WHERE away_team = "footscray" |
Below is an context that describes a sql 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 (position VARCHAR, college VARCHAR)
### Question:
what is the position of the player from florida?
### Answer:
SELECT position FROM table_name_63 WHERE college = "florida" |
Below is an context that describes a sql 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 (venue VARCHAR, away_team VARCHAR)
### Question:
Where was the game played where Collingwood was the away team?
### Answer:
SELECT venue FROM table_name_99 WHERE away_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_11677100_4 (hometown VARCHAR, school VARCHAR)
### Question:
What town is Brighton High School in?
### Answer:
SELECT hometown FROM table_11677100_4 WHERE school = "Brighton 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_name_31 (second VARCHAR, fourth VARCHAR)
### Question:
Who was in Second Place with Isabelle Brayley came in Fourth?
### Answer:
SELECT second FROM table_name_31 WHERE fourth = "isabelle brayley" |
Subsets and Splits