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_22496344_1 (name VARCHAR, year VARCHAR, _number VARCHAR) ### Question: What is the name when senior is the year with the # less than 10.0? ### Answer: SELECT name FROM table_22496344_1 WHERE year = "Senior" AND _number < 10.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 (laps INTEGER, grid VARCHAR, points VARCHAR) ### Question: What is the top lap that had 2 grids and more than 26 points? ### Answer: SELECT MAX(laps) FROM table_name_9 WHERE grid = "2" AND points > 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_name_99 (title VARCHAR, pages VARCHAR) ### Question: Tell me the title for pages of 96 ### Answer: SELECT title FROM table_name_99 WHERE pages = 96
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_15038373_1 (license VARCHAR, software VARCHAR) ### Question: How many licenses have mind workstation software? ### Answer: SELECT COUNT(license) FROM table_15038373_1 WHERE software = "Mind WorkStation"
Below is an context that describes a sql 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 (stadium VARCHAR, sport VARCHAR, league VARCHAR) ### Question: Which stadium is for football with the China League One? ### Answer: SELECT stadium FROM table_name_34 WHERE sport = "football" AND league = "china league one"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1672976_6 (winner VARCHAR, challenge_leader VARCHAR) ### Question: Who won the game where the Challenge Leader is ACC (2-1)? ### Answer: SELECT winner FROM table_1672976_6 WHERE challenge_leader = "ACC (2-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_75 (score VARCHAR, opponent VARCHAR, record VARCHAR) ### Question: what score has the opponent of tigers and a record of 78-64? ### Answer: SELECT score FROM table_name_75 WHERE opponent = "tigers" AND record = "78-64"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_44 (cuts_made INTEGER, top_25 VARCHAR, events VARCHAR) ### Question: How many cuts did he make in the tournament with 3 top 25s and under 13 events? ### Answer: SELECT MAX(cuts_made) FROM table_name_44 WHERE top_25 = 3 AND events < 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_66 (starts INTEGER, winnings VARCHAR, avg_start VARCHAR) ### Question: How many starts had an avg start of less than 37 and won $1,636,827? ### Answer: SELECT SUM(starts) FROM table_name_66 WHERE winnings = "$1,636,827" AND avg_start < 37
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_43 (winner_and_score VARCHAR, semifinalists VARCHAR) ### Question: Who is the winner and score of the tournament with semifinalists goran prpić sergi bruguera? ### Answer: SELECT winner_and_score FROM table_name_43 WHERE semifinalists = "goran prpić sergi bruguera"
Below is an context that describes a sql 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 (voltage VARCHAR, frequency VARCHAR, release_date VARCHAR) ### Question: What kind of Voltage has a Frequency of 2000mhz, and a Release date in q3 2008? ### Answer: SELECT voltage FROM table_name_64 WHERE frequency = "2000mhz" AND release_date = "q3 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_60 (played INTEGER, lost VARCHAR, drawn VARCHAR, difference VARCHAR) ### Question: What is the highest played that has a drawn less than 9, 36 as the difference, with a lost greater than 7? ### Answer: SELECT MAX(played) FROM table_name_60 WHERE drawn < 9 AND difference = "36" AND lost > 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_58 (name VARCHAR, club VARCHAR) ### Question: Which player is on the roster for the Sydney University Lions? ### Answer: SELECT name FROM table_name_58 WHERE club = "sydney university lions"
Below is an context that describes a sql 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 (home_team VARCHAR, venue VARCHAR) ### Question: Which Home team has a Venue of mcg? ### Answer: SELECT home_team FROM table_name_32 WHERE venue = "mcg"
Below is an context that describes a sql 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 (third VARCHAR, skip VARCHAR) ### Question: What is the name of the third who has Barbora Vojtusova as Skip? ### Answer: SELECT third FROM table_name_47 WHERE skip = "barbora vojtusova"
Below is an context that describes a sql 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 (books VARCHAR, gender VARCHAR, animal_name VARCHAR) ### Question: What are the male Bounder books? ### Answer: SELECT books FROM table_name_23 WHERE gender = "male" AND animal_name = "bounder"
Below is an context that describes a sql 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 (year VARCHAR, event VARCHAR, position VARCHAR) ### Question: What year did she place 8th in the junior race? ### Answer: SELECT year FROM table_name_9 WHERE event = "junior race" AND position = "8th"
Below is an context that describes a sql 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 (position VARCHAR, level VARCHAR, nationality VARCHAR) ### Question: What is the Position of the Level 3 winner from Saint Kitts and Nevis? ### Answer: SELECT position FROM table_name_51 WHERE level = 3 AND nationality = "saint kitts and nevis"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27218002_2 (originalairdate VARCHAR, written_by VARCHAR) ### Question: What date did the episode that was written by Fintan Ryan originally air? ### Answer: SELECT originalairdate FROM table_27218002_2 WHERE written_by = "Fintan Ryan"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE station (lat INTEGER, long INTEGER, city VARCHAR) ### Question: What is the average latitude and longitude of stations located in San Jose city? ### Answer: SELECT AVG(lat), AVG(long) FROM station WHERE city = "San Jose"
Below is an context that describes a sql 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 (athlete VARCHAR, date VARCHAR) ### Question: Date of 10 july 2009 includes what athlete? ### Answer: SELECT athlete FROM table_name_92 WHERE date = "10 july 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_27329061_2 (default_desktop_environment VARCHAR, code_base VARCHAR, edition VARCHAR) ### Question: What is the default desktop environment when the code base is ubuntu 8.04 and edition is fluxbox ce? ### Answer: SELECT default_desktop_environment FROM table_27329061_2 WHERE code_base = "Ubuntu 8.04" AND edition = "Fluxbox CE"
Below is an context that describes a sql 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 (grand_prix VARCHAR, pole_position VARCHAR) ### Question: Name the Grand Prix for pole position of kimi räikkönen ### Answer: SELECT grand_prix FROM table_name_23 WHERE pole_position = "kimi räikkönen"
Below is an context that describes a sql 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 (opponent VARCHAR, loss VARCHAR) ### Question: Who was the opponent at the game that had a loss of Westbrook (2-2)? ### Answer: SELECT opponent FROM table_name_74 WHERE loss = "westbrook (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_20098199_2 (representative VARCHAR, religion VARCHAR, prior_background VARCHAR) ### Question: Who has a religion of United Methodist and a prior background of a Congressional Aide? ### Answer: SELECT representative FROM table_20098199_2 WHERE religion = "United Methodist" AND prior_background = "Congressional aide"
Below is an context that describes a sql 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 (score VARCHAR, attendance VARCHAR) ### Question: What was the Score that has an Attendance of 39,446? ### Answer: SELECT score FROM table_name_3 WHERE attendance = "39,446"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2771237_1 (overall_attendance VARCHAR, average_attendance VARCHAR) ### Question: How many times was the overall attendance 17807? ### Answer: SELECT COUNT(overall_attendance) FROM table_2771237_1 WHERE average_attendance = 17807
Below is an context that describes a sql 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 (rank VARCHAR, bronze VARCHAR, gold VARCHAR) ### Question: What is the rank of the team with 1 bronze and 0 gold medals? ### Answer: SELECT rank FROM table_name_2 WHERE bronze = 1 AND gold = 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_22825679_1 (road_record VARCHAR, team VARCHAR) ### Question: Name the number of road record for team ole miss ### Answer: SELECT COUNT(road_record) FROM table_22825679_1 WHERE team = "Ole Miss"
Below is an context that describes a sql 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 (winning_driver VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR) ### Question: When the fastest lap was carlos pace and jackie stewart was the pole position, who was the winning driver? ### Answer: SELECT winning_driver FROM table_name_12 WHERE pole_position = "jackie stewart" AND fastest_lap = "carlos pace"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_83 (location_attendance VARCHAR, score VARCHAR) ### Question: What is the location and attendance when the score as w 117–109 (ot)? ### Answer: SELECT location_attendance FROM table_name_83 WHERE score = "w 117–109 (ot)"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE film (directed_by VARCHAR) ### Question: Show all directors. ### Answer: SELECT DISTINCT directed_by FROM film
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE web_client_accelerator (name VARCHAR, id VARCHAR); CREATE TABLE accelerator_compatible_browser (accelerator_id VARCHAR, browser_id VARCHAR); CREATE TABLE browser (id VARCHAR, market_share INTEGER) ### Question: What distinct accelerator names are compatible with the browswers that have market share higher than 15? ### Answer: SELECT DISTINCT T1.name FROM web_client_accelerator AS T1 JOIN accelerator_compatible_browser AS T2 ON T2.accelerator_id = T1.id JOIN browser AS T3 ON T2.browser_id = T3.id WHERE T3.market_share > 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_12165999_1 (college VARCHAR, player VARCHAR) ### Question: Which college did Dennis Byrd come from? ### Answer: SELECT college FROM table_12165999_1 WHERE player = "Dennis Byrd"
Below is an context that describes a sql 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 (constructor VARCHAR, driver VARCHAR) ### Question: Tell me the constructor for david coulthard ### Answer: SELECT constructor FROM table_name_10 WHERE driver = "david coulthard"
Below is an context that describes a sql 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 (athlete VARCHAR, nationality VARCHAR, rank VARCHAR, lane VARCHAR) ### Question: Which Athlete has a Rank larger than 1, and a Lane larger than 7, and a Nationality of china? ### Answer: SELECT athlete FROM table_name_97 WHERE rank > 1 AND lane > 7 AND nationality = "china"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_20799587_1 (mccain_percentage VARCHAR, county VARCHAR) ### Question: What percentage of the votes did McCain get in Hinds? ### Answer: SELECT mccain_percentage FROM table_20799587_1 WHERE county = "Hinds"
Below is an context that describes a sql 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 (week_5 VARCHAR, week_3 VARCHAR) ### Question: Felicia Taylor was cyber girl in week 3, so who was the cyber girl in week 5? ### Answer: SELECT week_5 FROM table_name_95 WHERE week_3 = "felicia 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_300283_1 (official_name VARCHAR, name_in_spanish VARCHAR) ### Question: What is the official name of the municipality whose name in Spanish is Cripán? ### Answer: SELECT official_name FROM table_300283_1 WHERE name_in_spanish = "Cripán"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_10818465_1 (max_memory VARCHAR, model VARCHAR) ### Question: What is the max memory of the t5120 model? ### Answer: SELECT max_memory FROM table_10818465_1 WHERE model = "T5120"
Below is an context that describes a sql 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 (goals INTEGER, seasons VARCHAR, order VARCHAR) ### Question: What is the low goal for orders more than 939 during Seasons of 1996 – 2001? ### Answer: SELECT MIN(goals) FROM table_name_17 WHERE seasons = "1996 – 2001" AND order > 939
Below is an context that describes a sql 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 (laps INTEGER, driver VARCHAR, grid VARCHAR) ### Question: When the driver peter gethin has a grid less than 25, what is the average number of laps? ### Answer: SELECT AVG(laps) FROM table_name_4 WHERE driver = "peter gethin" AND grid < 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_20278716_2 (mccain__percentage VARCHAR, county VARCHAR) ### Question: What percentage of voters choise McCain in Burlington? ### Answer: SELECT mccain__percentage FROM table_20278716_2 WHERE county = "Burlington"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_28715942_2 (track_no VARCHAR, track VARCHAR) ### Question: How many tracks have the title let love be your energy? ### Answer: SELECT COUNT(track_no) FROM table_28715942_2 WHERE track = "Let Love Be Your Energy"
Below is an context that describes a sql 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 (date_of_appointment VARCHAR, outgoing_manager VARCHAR) ### Question: What is the date of appointment for the outgoing manager edoardo reja? ### Answer: SELECT date_of_appointment FROM table_name_49 WHERE outgoing_manager = "edoardo reja"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (fname VARCHAR, lname VARCHAR, stuid VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR, position VARCHAR) ### Question: Who is the "CTO" of club "Hopkins Student Enterprises"? Show the first name and last name. ### Answer: SELECT t3.fname, t3.lname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Hopkins Student Enterprises" AND t2.position = "CTO"
Below is an context that describes a sql 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 (score VARCHAR, date VARCHAR) ### Question: What was the score for the date of 15/6/03 ### Answer: SELECT score FROM table_name_84 WHERE date = "15/6/03"
Below is an context that describes a sql 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 (weight__kg_ INTEGER, birthplace VARCHAR) ### Question: What is the sum of Weight for the person born in virginia, minnesota? ### Answer: SELECT SUM(weight__kg_) FROM table_name_39 WHERE birthplace = "virginia, minnesota"
Below is an context that describes a sql 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 (position VARCHAR, level VARCHAR, season VARCHAR) ### Question: Which Position has a Level of tier 3 and a Season smaller than 1999? ### Answer: SELECT position FROM table_name_38 WHERE level = "tier 3" AND season < 1999
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_44 (manufacturer VARCHAR, laps VARCHAR, time_retired VARCHAR) ### Question: WHAT IS THE MANUFACTURER WITH 24 LAPS, AND +1.965 TIME/RETIRED? ### Answer: SELECT manufacturer FROM table_name_44 WHERE laps = "24" AND time_retired = "+1.965"
Below is an context that describes a sql 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 (height VARCHAR, players VARCHAR) ### Question: How tall is Ye Fei? ### Answer: SELECT height FROM table_name_36 WHERE players = "ye fei"
Below is an context that describes a sql 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 (location VARCHAR, year VARCHAR, country VARCHAR) ### Question: What is the location for Egypt in 2013? ### Answer: SELECT location FROM table_name_81 WHERE year = "2013" AND country = "egypt"
Below is an context that describes a sql 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 (position VARCHAR, total_apps VARCHAR) ### Question: Which position has 5 total apps? ### Answer: SELECT position FROM table_name_39 WHERE total_apps = "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_7 (laps VARCHAR, driver VARCHAR) ### Question: How many laps in total does the driver named Eddie Irvine have? ### Answer: SELECT COUNT(laps) FROM table_name_7 WHERE driver = "eddie irvine"
Below is an context that describes a sql 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 (week VARCHAR, result VARCHAR) ### Question: Which week was there a w 23–14 result? ### Answer: SELECT week FROM table_name_1 WHERE result = "w 23–14"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_79 (season VARCHAR, final_placing VARCHAR, podiums VARCHAR) ### Question: Which Season has a Final Place of 8th and 8 Podiums? ### Answer: SELECT season FROM table_name_79 WHERE final_placing = "8th" AND podiums = "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_22 (arena VARCHAR, date VARCHAR) ### Question: At what arena was the September 21 game? ### Answer: SELECT arena FROM table_name_22 WHERE date = "september 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_name_97 (pl_gp INTEGER, pick__number VARCHAR, reg_gp VARCHAR) ### Question: Tell me the highest PI GP with pick # greater than 159 and reg GP more than 0 ### Answer: SELECT MAX(pl_gp) FROM table_name_97 WHERE pick__number > 159 AND reg_gp > 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_20 (mascot VARCHAR, location VARCHAR) ### Question: What is bedford's mascot? ### Answer: SELECT mascot FROM table_name_20 WHERE location = "bedford"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_94 (college VARCHAR, player VARCHAR) ### Question: What college has Lance Moore Category:articles with hcards? ### Answer: SELECT college FROM table_name_94 WHERE player = "lance moore 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_17971449_2 (military_expenditures__2011 VARCHAR, _us$_millions_ VARCHAR, country VARCHAR) ### Question: Name the military expenditures for 2011 for romania ### Answer: SELECT military_expenditures__2011, _us$_millions_ FROM table_17971449_2 WHERE country = "Romania"
Below is an context that describes a sql 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 (score VARCHAR, date VARCHAR) ### Question: Date of april 3, 2007 had what score? ### Answer: SELECT score FROM table_name_2 WHERE date = "april 3, 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_16034882_3 (points VARCHAR, club VARCHAR) ### Question: how many times were points counted for fk prienai ### Answer: SELECT COUNT(points) FROM table_16034882_3 WHERE club = "FK Prienai"
Below is an context that describes a sql 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 (tries_against VARCHAR, losing_bonus VARCHAR) ### Question: How many tries against have a losing bonus of 9? ### Answer: SELECT tries_against FROM table_name_72 WHERE losing_bonus = "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_26 (place VARCHAR, score VARCHAR) ### Question: Where was the score 67-71-70=208? ### Answer: SELECT place FROM table_name_26 WHERE score = 67 - 71 - 70 = 208
Below is an context that describes a sql 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 (rank INTEGER, time VARCHAR) ### Question: What was the rank when then time was 7:52.53? ### Answer: SELECT MIN(rank) FROM table_name_10 WHERE time = "7:52.53"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE airports (city VARCHAR) ### Question: List the cities which have more than 2 airports sorted by the number of airports. ### Answer: SELECT city FROM airports GROUP BY city HAVING COUNT(*) > 2 ORDER BY COUNT(*)
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2562572_7 (population__1991_ INTEGER, cyrillic_name VARCHAR) ### Question: What is the population (1991) when cyrillic name is панчево? ### Answer: SELECT MIN(population__1991_) FROM table_2562572_7 WHERE cyrillic_name = "Панчево"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_56 (record VARCHAR, visitor VARCHAR) ### Question: What is the record when St. Louis is the visitor? ### Answer: SELECT record FROM table_name_56 WHERE visitor = "st. louis"
Below is an context that describes a sql 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 (province VARCHAR, airport VARCHAR) ### Question: Which province is Luogang International Airport located in? ### Answer: SELECT province FROM table_name_63 WHERE airport = "luogang international airport"
Below is an context that describes a sql 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 (time VARCHAR, score VARCHAR) ### Question: What was the time when the score was 0–3? ### Answer: SELECT time FROM table_name_67 WHERE score = "0–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_20174050_23 (company VARCHAR, author VARCHAR) ### Question: which company uses pinborough, sarah sarah pinborough? ### Answer: SELECT company FROM table_20174050_23 WHERE author = "Pinborough, Sarah Sarah Pinborough"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1620397_5 (doctor VARCHAR, author VARCHAR) ### Question: What was the doctor when the author was Gary Hopkins category:articles with hcards? ### Answer: SELECT doctor FROM table_1620397_5 WHERE author = "Gary Hopkins 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_67 (prominence__m_ INTEGER, elevation__m_ VARCHAR) ### Question: Which Prominence (m) has an Elevation (m) of 3,095? ### Answer: SELECT MIN(prominence__m_) FROM table_name_67 WHERE elevation__m_ = 3 OFFSET 095
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_12379297_1 (power__kw_ VARCHAR, ch__number VARCHAR, callsign VARCHAR) ### Question: What is the power when ch# is tv-26 and dyfj-tv? ### Answer: SELECT power__kw_ FROM table_12379297_1 WHERE ch__number = "TV-26" AND callsign = "DYFJ-TV"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_24639086_3 (original_air_date VARCHAR, viewers__in_millions_ VARCHAR) ### Question: If the amount of viewers is 2.48 million, what is the original air date? ### Answer: SELECT original_air_date FROM table_24639086_3 WHERE viewers__in_millions_ = "2.48"
Below is an context that describes a sql 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 (rank INTEGER, airline VARCHAR) ### Question: What is the average rank of gol on airlines? ### Answer: SELECT AVG(rank) FROM table_name_45 WHERE airline = "gol"
Below is an context that describes a sql 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 (nationality VARCHAR, year VARCHAR, player VARCHAR) ### Question: After 2009, what's the nationality of a player named Dwayne de Rosario Category:articles with hcards? ### Answer: SELECT nationality FROM table_name_78 WHERE year > 2009 AND player = "dwayne de rosario 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_8 (status VARCHAR, country VARCHAR, transfer_window VARCHAR) ### Question: What is the status of bel with a Transfer window of winter? ### Answer: SELECT status FROM table_name_8 WHERE country = "bel" AND transfer_window = "winter"
Below is an context that describes a sql 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 (Id VARCHAR) ### Question: What is the value in 2012 if it is 2R in 2013, 1R in 2005, and 1R in 2008? ### Answer: SELECT 2012 FROM table_name_84 WHERE 2013 = "2r" AND 2005 = "1r" AND 2008 = "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_name_62 (money___£__ VARCHAR, score VARCHAR) ### Question: How much money does the player with a 68-67-69-71=275 score have? ### Answer: SELECT money___£__ FROM table_name_62 WHERE score = 68 - 67 - 69 - 71 = 275
Below is an context that describes a sql 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 (rider VARCHAR, speed VARCHAR) ### Question: Which Rider finished with a speed of 80.18mph? ### Answer: SELECT rider FROM table_name_61 WHERE speed = "80.18mph"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_37 (fcc_info VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR) ### Question: Name the FCC info for frequency Mhz less than 97.3 and call sign of w237br ### Answer: SELECT fcc_info FROM table_name_37 WHERE frequency_mhz < 97.3 AND call_sign = "w237br"
Below is an context that describes a sql 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 (matches_as_champion INTEGER, title_last_held VARCHAR, rank VARCHAR) ### Question: Which Matches is on 24 march 1963 with a Rank larger than 44? ### Answer: SELECT MAX(matches_as_champion) FROM table_name_6 WHERE title_last_held = "24 march 1963" AND rank > 44
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_91 (length_fuel VARCHAR, floor_styling VARCHAR, year_built VARCHAR) ### Question: What is the Length/Fuel of the bus built between 2000-2003 with a high Floor Styling? ### Answer: SELECT length_fuel FROM table_name_91 WHERE floor_styling = "high" AND year_built = "2000-2003"
Below is an context that describes a sql 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 (series VARCHAR, visitor VARCHAR, date VARCHAR) ### Question: What is the series score of the game with Vancouver as the visiting team on April 16? ### Answer: SELECT series FROM table_name_73 WHERE visitor = "vancouver" AND date = "april 16"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE STUDENTS (cell_mobile_number VARCHAR, email_address VARCHAR) ### Question: Return the cell phone number and email address for all students. ### Answer: SELECT cell_mobile_number, email_address FROM STUDENTS
Below is an context that describes a sql 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 (circuit VARCHAR, event VARCHAR) ### Question: Which Circuit has an Event of international procar meeting? ### Answer: SELECT circuit FROM table_name_10 WHERE event = "international procar meeting"
Below is an context that describes a sql 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 (Id VARCHAR) ### Question: Tell me the lowest 2005 for 2010 less than 21 for 2009 being 19 ### Answer: SELECT MIN(2005) FROM table_name_75 WHERE 2009 = 19 AND 2010 < 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_name_85 (nationality VARCHAR, position VARCHAR, school_country VARCHAR) ### Question: What nationality is the guard from ucla? ### Answer: SELECT nationality FROM table_name_85 WHERE position = "guard" AND school_country = "ucla"
Below is an context that describes a sql 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 (registrations VARCHAR, district VARCHAR) ### Question: What is the registration of the station at Cambridge? ### Answer: SELECT registrations FROM table_name_67 WHERE district = "cambridge"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_18 (dipole_moment___d__ VARCHAR, density VARCHAR) ### Question: What dipole moment has a density of 1.092 g/ml? ### Answer: SELECT dipole_moment___d__ FROM table_name_18 WHERE density = "1.092 g/ml"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1637041_2 (top_10 INTEGER, position VARCHAR) ### Question: What is the maximum number of top 10s when he finished in 63rd? ### Answer: SELECT MAX(top_10) FROM table_1637041_2 WHERE position = "63rd"
Below is an context that describes a sql 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 (senior_list VARCHAR, date_of_birth__age_when_delisted_ VARCHAR) ### Question: What is listed under Senior List for Date of Birth (Age When Delisted) of 5 June 1984 (aged 23)? ### Answer: SELECT senior_list FROM table_name_84 WHERE date_of_birth__age_when_delisted_ = "5 june 1984 (aged 23)"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_10602294_1 (dates_active VARCHAR, deaths VARCHAR) ### Question: What were the active dates for the storm that had 185km/h (115mph) deaths? ### Answer: SELECT dates_active FROM table_10602294_1 WHERE deaths = "185km/h (115mph)"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_30030477_1 (original_air_date VARCHAR, written_by VARCHAR) ### Question: What dated the episode written by is adam e. fierro & glen mazzara air? ### Answer: SELECT original_air_date FROM table_30030477_1 WHERE written_by = "Adam E. Fierro & Glen Mazzara"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_7 (pick__number VARCHAR, position VARCHAR, college VARCHAR) ### Question: What was the pick number for the wide receiver drafted from Michigan State? ### Answer: SELECT pick__number FROM table_name_7 WHERE position = "wide receiver" AND college = "michigan 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_1977630_2 (yo VARCHAR, vosotros___vosotras VARCHAR) ### Question: What are all the conjugated forms of the verb moler where the vosotros / vosotras is moláis for the yo tense? ### Answer: SELECT yo FROM table_1977630_2 WHERE vosotros___vosotras = "moláis"
Below is an context that describes a sql 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 (team VARCHAR, driver VARCHAR, schedule VARCHAR, year VARCHAR) ### Question: what is the team when the schedule is limited, year is earlier than 2007 and the driver is jason white? ### Answer: SELECT team FROM table_name_54 WHERE schedule = "limited" AND year < 2007 AND driver = "jason white"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_7 (round INTEGER, pick INTEGER) ### Question: What top round has a pick smaller than 2? ### Answer: SELECT MAX(round) FROM table_name_7 WHERE pick < 2