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_32 (lost INTEGER, played INTEGER)
### Question:
what is the average lost when played is more than 14?
### Answer:
SELECT AVG(lost) FROM table_name_32 WHERE played > 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_1792122_11 (status_at_production VARCHAR, project VARCHAR)
### Question:
What is the status of the London Aquatics Centre project at the time of production?
### Answer:
SELECT status_at_production FROM table_1792122_11 WHERE project = "London Aquatics Centre" |
Below is an context that describes a sql 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 (wins VARCHAR, tournament VARCHAR, top_25 VARCHAR)
### Question:
What is the number of Tournament of U.S. Open wins with a Top-25 smaller than 4?
### Answer:
SELECT COUNT(wins) FROM table_name_79 WHERE tournament = "u.s. open" AND top_25 < 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_28768469_5 (game INTEGER)
### Question:
What is the most amount of games played this season?
### Answer:
SELECT MAX(game) FROM table_28768469_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_41 (label VARCHAR, english_title VARCHAR)
### Question:
What is Another She's Label?
### Answer:
SELECT label FROM table_name_41 WHERE english_title = "another she" |
Below is an context that describes a sql 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 (road_team VARCHAR, home_team VARCHAR, result VARCHAR)
### Question:
Which Road Team has a Home Team of rochester, and a Result of 89-92?
### Answer:
SELECT road_team FROM table_name_9 WHERE home_team = "rochester" AND result = "89-92" |
Below is an context that describes a sql 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 (date VARCHAR, competition VARCHAR, venue VARCHAR, goals VARCHAR)
### Question:
What is the date of the k-league cup, which has less than 28 goals, at the jeonju venue?
### Answer:
SELECT date FROM table_name_93 WHERE venue = "jeonju" AND goals < 28 AND competition = "k-league 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_19 (length__miles_ INTEGER, name VARCHAR)
### Question:
what is the length (miles) when the name is l-56g?
### Answer:
SELECT MAX(length__miles_) FROM table_name_19 WHERE name = "l-56g" |
Below is an context that describes a sql 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 (points INTEGER, place VARCHAR, draw VARCHAR)
### Question:
What is the average of points for 8th place with draw more than 8?
### Answer:
SELECT AVG(points) FROM table_name_55 WHERE place = "8th" AND draw > 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 trust (target_u_id VARCHAR); CREATE TABLE useracct (name VARCHAR, u_id VARCHAR)
### Question:
Find each target user's name and average trust score.
### Answer:
SELECT T1.name, AVG(trust) FROM useracct AS T1 JOIN trust AS T2 ON T1.u_id = T2.target_u_id GROUP BY T2.target_u_id |
Below is an context that describes a sql 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 (xenon VARCHAR, neon VARCHAR)
### Question:
Which Xenon has Neon of 20.1797(6)?
### Answer:
SELECT xenon FROM table_name_25 WHERE neon = "20.1797(6)" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_87 (city___state VARCHAR, winner VARCHAR)
### Question:
What is the city/state of the circuit where Russell Ingall Larry Perkins was the winner?
### Answer:
SELECT city___state FROM table_name_87 WHERE winner = "russell ingall larry perkins" |
Below is an context that describes a sql 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, country VARCHAR)
### Question:
What is Top Par, when Country is Sweden?
### Answer:
SELECT to_par FROM table_name_71 WHERE country = "sweden" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_10026563_1 (entered_office_as_head_of_state_or_government VARCHAR, office VARCHAR)
### Question:
When did the Prime Minister of Italy take office?
### Answer:
SELECT entered_office_as_head_of_state_or_government FROM table_10026563_1 WHERE office = "Prime Minister of 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_85 (round INTEGER, school_club_team VARCHAR, pick VARCHAR)
### Question:
Which Round has a School/Club Team of indiana, and a Pick smaller than 198?
### Answer:
SELECT AVG(round) FROM table_name_85 WHERE school_club_team = "indiana" AND pick < 198 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22853654_9 (result VARCHAR, opponent VARCHAR)
### Question:
Name the result for alexander shvec
### Answer:
SELECT result FROM table_22853654_9 WHERE opponent = "Alexander Shvec" |
Below is an context that describes a sql 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 (height VARCHAR, stories VARCHAR)
### Question:
How tall is the 52 story building?
### Answer:
SELECT height FROM table_name_82 WHERE stories = 52 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_28768469_9 (high_points VARCHAR, date VARCHAR)
### Question:
Who had the most points in the game on March 7?
### Answer:
SELECT high_points FROM table_28768469_9 WHERE date = "March 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_5 (game INTEGER, record VARCHAR)
### Question:
What is the average number of games with a record of 20-12?
### Answer:
SELECT AVG(game) FROM table_name_5 WHERE record = "20-12" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_84 (nation VARCHAR, record VARCHAR)
### Question:
Which Nation has a Record of 15.16 m?
### Answer:
SELECT nation FROM table_name_84 WHERE record = "15.16 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_27712702_11 (game INTEGER, date VARCHAR)
### Question:
What was the game number on march 27?
### Answer:
SELECT MIN(game) FROM table_27712702_11 WHERE date = "March 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_name_6 (name VARCHAR, avg_g VARCHAR)
### Question:
Who averaged 201.3 yards passing per game?
### Answer:
SELECT name FROM table_name_6 WHERE avg_g = 201.3 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_86 (driver VARCHAR, time_retired VARCHAR)
### Question:
What Driver has a +1.027 Time/Retired?
### Answer:
SELECT driver FROM table_name_86 WHERE time_retired = "+1.027" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_16799784_12 (year_named INTEGER, name VARCHAR)
### Question:
What is the highest year named for the name Tie Fluctus?
### Answer:
SELECT MAX(year_named) FROM table_16799784_12 WHERE name = "Tie Fluctus" |
Below is an context that describes a sql 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 (opponent VARCHAR, week VARCHAR)
### Question:
What is Opponent, when Week is "5"?
### Answer:
SELECT opponent FROM table_name_70 WHERE week = 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_4 (attendance VARCHAR, date VARCHAR)
### Question:
What attendance is listed against the date of bye?
### Answer:
SELECT attendance FROM table_name_4 WHERE date = "bye" |
Below is an context that describes a sql 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 (notes VARCHAR, country VARCHAR)
### Question:
What is the notes for the rowers from denmark?
### Answer:
SELECT notes FROM table_name_26 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_name_47 (cuts_made INTEGER, top_10 VARCHAR, wins VARCHAR)
### Question:
What is the highest number of Cuts made that has a Top 10 smaller than 8 and Wins larger than 0?
### Answer:
SELECT MAX(cuts_made) FROM table_name_47 WHERE top_10 < 8 AND wins > 0 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_51 (extra INTEGER, meeting VARCHAR, year VARCHAR)
### Question:
What is the highest extra total before 2003 at the Meeting of all africa games?
### Answer:
SELECT MAX(extra) FROM table_name_51 WHERE meeting = "all africa games" AND year < 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_59 (date VARCHAR, record VARCHAR)
### Question:
What day is the team 17–24–5?
### Answer:
SELECT date FROM table_name_59 WHERE record = "17–24–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_5 (matches INTEGER, average VARCHAR, goals VARCHAR, team VARCHAR)
### Question:
For players with fewer than 41 goals for CA Osasuna and averages under 1.06, what is the average number of matches?
### Answer:
SELECT AVG(matches) FROM table_name_5 WHERE goals < 41 AND team = "ca osasuna" AND average < 1.06 |
Below is an context that describes a sql 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 (player VARCHAR, total VARCHAR)
### Question:
What player has a total of 158/
### Answer:
SELECT player FROM table_name_54 WHERE total = "158" |
Below is an context that describes a sql 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 (county VARCHAR)
### Question:
Which 1977 is the lowest one that has a County of zzz bucharest, and a 2011 smaller than 1883425?
### Answer:
SELECT MIN(1977) FROM table_name_23 WHERE county = "zzz bucharest" AND 2011 < 1883425 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23486853_3 (date VARCHAR, opponent VARCHAR)
### Question:
What date did they play the Florida Panthers?
### Answer:
SELECT date FROM table_23486853_3 WHERE opponent = "Florida Panthers" |
Below is an context that describes a sql 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 (player VARCHAR, pick__number VARCHAR, mls_team VARCHAR)
### Question:
Name the player for fc dallas pick number less than 3
### Answer:
SELECT player FROM table_name_69 WHERE pick__number < 3 AND mls_team = "fc dallas" |
Below is an context that describes a sql 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 (nationality VARCHAR, heat VARCHAR, name VARCHAR)
### Question:
In heat 4, what is Byun Hye-young's Nationality?
### Answer:
SELECT nationality FROM table_name_62 WHERE heat = 4 AND name = "byun hye-young" |
Below is an context that describes a sql 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 (bodyweight INTEGER, snatch INTEGER)
### Question:
What lowest Bodyweight has a Snatch smaller than 55?
### Answer:
SELECT MIN(bodyweight) FROM table_name_84 WHERE snatch < 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_55 (trofeo_fast_team VARCHAR, young_rider_classification VARCHAR, stage VARCHAR)
### Question:
Name trofeo fast team with young rider classification of francesco casagrande and stage of 10
### Answer:
SELECT trofeo_fast_team FROM table_name_55 WHERE young_rider_classification = "francesco casagrande" AND stage = "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_59 (visiting_team VARCHAR, date VARCHAR)
### Question:
Which Visiting Team is on december 23?
### Answer:
SELECT visiting_team FROM table_name_59 WHERE date = "december 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_18813011_6 (high_assists VARCHAR, record VARCHAR)
### Question:
Who had the high assist in the game where the record is 13-11?
### Answer:
SELECT high_assists FROM table_18813011_6 WHERE record = "13-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_87 (laps VARCHAR, grid INTEGER)
### Question:
When the Grids is less than 2 what are the total laps?
### Answer:
SELECT COUNT(laps) FROM table_name_87 WHERE grid < 2 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_55 (team VARCHAR, year VARCHAR, class VARCHAR, laps VARCHAR)
### Question:
What team was c1 class, had over 331 laps after 1990?
### Answer:
SELECT team FROM table_name_55 WHERE class = "c1" AND laps > 331 AND year > 1990 |
Below is an context that describes a sql 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 (bubbles VARCHAR, attribute VARCHAR)
### Question:
Name the bubbles for onscroll
### Answer:
SELECT bubbles FROM table_name_12 WHERE attribute = "onscroll" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE Ref_locations (location_name VARCHAR, location_description VARCHAR, location_code VARCHAR)
### Question:
What are the name and description for location code x?
### Answer:
SELECT location_name, location_description FROM Ref_locations WHERE location_code = "x" |
Below is an context that describes a sql 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 (semifinal VARCHAR, athlete VARCHAR)
### Question:
Hossein Ojaghi participated in what semifinal.
### Answer:
SELECT semifinal FROM table_name_4 WHERE athlete = "hossein ojaghi" |
Below is an context that describes a sql 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 (venue VARCHAR, result VARCHAR)
### Question:
Which venue had the result 7-1?
### Answer:
SELECT venue FROM table_name_50 WHERE result = "7-1" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_37 (thumb_stick VARCHAR, supplier VARCHAR, basic_shape VARCHAR, backlit VARCHAR)
### Question:
Which Thumb stick has a Basic shape of curved, a Backlit of yes, and a Supplier of genius?
### Answer:
SELECT thumb_stick FROM table_name_37 WHERE basic_shape = "curved" AND backlit = "yes" AND supplier = "genius" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_27 (races INTEGER, position VARCHAR, podiums VARCHAR)
### Question:
What's the most races with less than 10 podiums and 1st position?
### Answer:
SELECT MAX(races) FROM table_name_27 WHERE position = "1st" AND podiums < 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_49 (date VARCHAR, attendance INTEGER)
### Question:
What date were there more than 19,600 people in attendance?
### Answer:
SELECT date FROM table_name_49 WHERE attendance > 19 OFFSET 600 |
Below is an context that describes a sql 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 (tv_season VARCHAR, households__in_millions_ VARCHAR)
### Question:
Which TV season has Households (in millions) of 30.503 (34.9 rating)?
### Answer:
SELECT tv_season FROM table_name_80 WHERE households__in_millions_ = "30.503 (34.9 rating)" |
Below is an context that describes a sql 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 (date VARCHAR, score VARCHAR)
### Question:
On what Date was the Score 105-128?
### Answer:
SELECT date FROM table_name_14 WHERE score = "105-128" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE TV_Channel (LANGUAGE VARCHAR)
### Question:
List each language and the number of TV Channels using it.
### Answer:
SELECT LANGUAGE, COUNT(*) FROM TV_Channel GROUP BY LANGUAGE |
Below is an context that describes a sql 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 (round VARCHAR, event VARCHAR)
### Question:
The K-1 MMA Romanex event went how many rounds?
### Answer:
SELECT COUNT(round) FROM table_name_38 WHERE event = "k-1 mma romanex" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_26538035_1 (title_and_source VARCHAR, developer VARCHAR)
### Question:
How many titles/sources have a developer of Clover Studio?
### Answer:
SELECT COUNT(title_and_source) FROM table_26538035_1 WHERE developer = "Clover Studio" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23915_4 (translation VARCHAR, ipa___são_paulo__ VARCHAR)
### Question:
What is the original of the ipa ( são paulo ) translation dɐ̃ːˈtɕiɣɐ ˈtɐ̃ʊ̯̃ ɐ̃ˈmadɐ ˈsuɐ ɦõ̞ˈmənə?
### Answer:
SELECT translation FROM table_23915_4 WHERE ipa___são_paulo__ = "dɐ̃ːˈtɕiɣɐ ˈtɐ̃ʊ̯̃ ɐ̃ˈmadɐ ˈsuɐ ɦõ̞ˈmə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_name_74 (dist__f_ INTEGER, odds VARCHAR, placing VARCHAR)
### Question:
Name the highest Dist (f) with Odds of 11/4 and a Placing larger than 1?
### Answer:
SELECT MAX(dist__f_) FROM table_name_74 WHERE odds = "11/4" AND placing > 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_85 (Id VARCHAR)
### Question:
What shows for 2002 when 2010 shows 69?
### Answer:
SELECT 2002 FROM table_name_85 WHERE 2010 = "69" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_45 (country VARCHAR, previous_team__league_ VARCHAR, player VARCHAR)
### Question:
What is Country, when Previous Team (League) is "Kingston Frontenacs ( OHL )", and when Player is "Anthony Stewart Category:Articles with hCards"?
### Answer:
SELECT country FROM table_name_45 WHERE previous_team__league_ = "kingston frontenacs ( ohl )" AND player = "anthony stewart 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_84 (gold INTEGER, nation VARCHAR, bronze VARCHAR)
### Question:
What is the total gold in Norway with more than 1 bronze?
### Answer:
SELECT SUM(gold) FROM table_name_84 WHERE nation = "norway" 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_1729366_2 (championship VARCHAR, opponents_in_the_final VARCHAR)
### Question:
Which championship had the final opponents of nathalie dechy andy ram?
### Answer:
SELECT championship FROM table_1729366_2 WHERE opponents_in_the_final = "Nathalie Dechy Andy Ram" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_25030512_12 (candidates VARCHAR, district VARCHAR, first_elected VARCHAR)
### Question:
When 2010 is the first elected and Florida 7 is the district who are the candidates?
### Answer:
SELECT candidates FROM table_25030512_12 WHERE district = "Florida 7" AND first_elected = "2010" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27277284_27 (voltage VARCHAR, order_part_number VARCHAR)
### Question:
What is the operating voltage of part number amql64dam22gg?
### Answer:
SELECT voltage FROM table_27277284_27 WHERE order_part_number = "AMQL64DAM22GG" |
Below is an context that describes a sql 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 (population INTEGER, area VARCHAR)
### Question:
What is the population with an area of 1,126.84?
### Answer:
SELECT MIN(population) FROM table_name_44 WHERE area = 1 OFFSET 126.84 |
Below is an context that describes a sql 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 (longitude VARCHAR, name VARCHAR)
### Question:
What is the longitude of Angerona Tholus?
### Answer:
SELECT longitude FROM table_name_35 WHERE name = "angerona tholus" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_29039942_1 (title VARCHAR, director VARCHAR)
### Question:
What episode did tomoyuki furumaya
### Answer:
SELECT title FROM table_29039942_1 WHERE director = "Tomoyuki Furumaya" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE Person (name VARCHAR, age INTEGER); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR)
### Question:
Find the name of the person who has friends with age above 40 but not under age 30?
### Answer:
SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age > 40) EXCEPT SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age < 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_65 (number_of_contestants VARCHAR, winner VARCHAR)
### Question:
How many contestants were there in a season where alejandra espinoza won?
### Answer:
SELECT COUNT(number_of_contestants) FROM table_name_65 WHERE winner = "alejandra espinoza" |
Below is an context that describes a sql 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 (attendance INTEGER, away VARCHAR)
### Question:
Which Attendance has an Away of real juventud?
### Answer:
SELECT SUM(attendance) FROM table_name_50 WHERE away = "real juventud" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE stadium (average_attendance VARCHAR, capacity_percentage INTEGER)
### Question:
What is the average attendance of stadiums with capacity percentage higher than 100%?
### Answer:
SELECT average_attendance FROM stadium WHERE capacity_percentage > 100 |
Below is an context that describes a sql 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 (format VARCHAR, label VARCHAR)
### Question:
What is the format for the MCA label?
### Answer:
SELECT format FROM table_name_40 WHERE label = "mca" |
Below is an context that describes a sql 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 (total VARCHAR, nation VARCHAR, silver VARCHAR)
### Question:
What is the total number for a total when the nation is netherlands and silver is larger than 0?
### Answer:
SELECT COUNT(total) FROM table_name_12 WHERE nation = "netherlands" AND silver > 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_12206918_2 (name VARCHAR, titles VARCHAR)
### Question:
What is the name of the title winner in the ring light heavyweight (175) division?
### Answer:
SELECT name FROM table_12206918_2 WHERE titles = "The Ring Light heavyweight (175)" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_19061741_1 (season VARCHAR, name VARCHAR)
### Question:
When luz mcclinton is the name what is the season?
### Answer:
SELECT season FROM table_19061741_1 WHERE name = "Luz McClinton" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27744844_7 (high_rebounds VARCHAR, date VARCHAR)
### Question:
Who had the most rebounds and how many did they have on January 19?
### Answer:
SELECT high_rebounds FROM table_27744844_7 WHERE date = "January 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 Sportsinfo (StuID VARCHAR, sex VARCHAR, sportname VARCHAR); CREATE TABLE Student (StuID VARCHAR, sex VARCHAR, sportname VARCHAR)
### Question:
Show all male student ids who don't play football.
### Answer:
SELECT StuID FROM Student WHERE sex = 'M' EXCEPT SELECT StuID FROM Sportsinfo WHERE sportname = "Football" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_10908676_7 (title VARCHAR, written_by VARCHAR)
### Question:
What is the title written by David Mamet?
### Answer:
SELECT title FROM table_10908676_7 WHERE written_by = "David Mamet" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2139390_2 (team VARCHAR, date VARCHAR)
### Question:
Name the team for june 20
### Answer:
SELECT team FROM table_2139390_2 WHERE date = "June 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_97 (pct INTEGER, years VARCHAR, lost VARCHAR)
### Question:
What is the average percent for the coach from 1905 and more than 7 losses?
### Answer:
SELECT AVG(pct) FROM table_name_97 WHERE years = "1905" 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_11677100_17 (hometown VARCHAR, player VARCHAR)
### Question:
What is the hometown of Bubba Starling?
### Answer:
SELECT hometown FROM table_11677100_17 WHERE player = "Bubba Starling" |
Below is an context that describes a sql 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 (year INTEGER, team VARCHAR, points VARCHAR)
### Question:
What year did the King team have fewer than 10 points?
### Answer:
SELECT AVG(year) FROM table_name_66 WHERE team = "king" AND points < 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 festival_detail (Festival_Name VARCHAR, LOCATION VARCHAR)
### Question:
What are the names and locations of festivals?
### Answer:
SELECT Festival_Name, LOCATION FROM festival_detail |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_27 (location VARCHAR, established VARCHAR)
### Question:
What is the location of the school established in 2013?
### Answer:
SELECT location FROM table_name_27 WHERE established = 2013 |
Below is an context that describes a sql 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 (date VARCHAR, attendance VARCHAR)
### Question:
On what date was the attendance of the crowd 78,431?
### Answer:
SELECT date FROM table_name_54 WHERE attendance = "78,431" |
Below is an context that describes a sql 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 (round VARCHAR, player VARCHAR)
### Question:
What round is player phil graham in?
### Answer:
SELECT round FROM table_name_8 WHERE player = "phil graham" |
Below is an context that describes a sql 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 (visitor VARCHAR, record VARCHAR)
### Question:
Who was the visiting team when the record was 51–12–4?
### Answer:
SELECT visitor FROM table_name_26 WHERE record = "51–12–4" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_49 (home_team VARCHAR, tie_no VARCHAR)
### Question:
What is Home Team, when Tie No is 4?
### Answer:
SELECT home_team FROM table_name_49 WHERE tie_no = "4" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_93 (result VARCHAR, date VARCHAR)
### Question:
What was the result of the match played on 13 October 1993?
### Answer:
SELECT result FROM table_name_93 WHERE date = "13 october 1993" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_84 (name VARCHAR, position VARCHAR)
### Question:
What is the Name of the Center?
### Answer:
SELECT name FROM table_name_84 WHERE position = "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_65 (record VARCHAR, date VARCHAR)
### Question:
what team scored on november 7
### Answer:
SELECT record FROM table_name_65 WHERE date = "november 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_28181401_4 (round VARCHAR, scorers VARCHAR)
### Question:
when roberts 86' is the scorer what is the round?
### Answer:
SELECT round FROM table_28181401_4 WHERE scorers = "Roberts 86'" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2581397_3 (race VARCHAR, weight__kg_ VARCHAR)
### Question:
List the weight for 56.5 kilograms.
### Answer:
SELECT race FROM table_2581397_3 WHERE weight__kg_ = "56.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_13 (score VARCHAR, away_team VARCHAR)
### Question:
What was the score for the away team southport?
### Answer:
SELECT score FROM table_name_13 WHERE away_team = "southport" |
Below is an context that describes a sql 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 (draws INTEGER, against VARCHAR, losses VARCHAR)
### Question:
What is the sum of draws for teams with against of 1731 and under 10 losses?
### Answer:
SELECT SUM(draws) FROM table_name_67 WHERE against = 1731 AND losses < 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_98 (Id VARCHAR)
### Question:
What is the value for 2005 when A is 2009 and 2000?
### Answer:
SELECT 2005 FROM table_name_98 WHERE 2009 = "a" AND 2000 = "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_17323042_11 (location_attendance VARCHAR, high_assists VARCHAR)
### Question:
What was the location and attendance of the game when High Assists were Andre Miller (7)?
### Answer:
SELECT location_attendance FROM table_17323042_11 WHERE high_assists = "Andre Miller (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_41 (date_of_birth__age_ VARCHAR, caps VARCHAR, position VARCHAR)
### Question:
What is the date of birth of the player that has 11 caps and plays the prop position?
### Answer:
SELECT date_of_birth__age_ FROM table_name_41 WHERE caps = 11 AND position = "prop" |
Below is an context that describes a sql 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 (story VARCHAR, issue VARCHAR)
### Question:
What story title was included in Issue #8?
### Answer:
SELECT story FROM table_name_47 WHERE issue = "#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_12 (song VARCHAR, lead_supporting_vocal VARCHAR)
### Question:
What is the song name that featured Marcus Temu as the lead supporting vocalist?
### Answer:
SELECT song FROM table_name_12 WHERE lead_supporting_vocal = "marcus temu" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_87 (opponent VARCHAR, week VARCHAR, date VARCHAR)
### Question:
Who was the opponent for the game taht was before week 5 on October 10, 1954?
### Answer:
SELECT opponent FROM table_name_87 WHERE week < 5 AND date = "october 10, 1954" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21197135_1 (date VARCHAR, record VARCHAR)
### Question:
How many opponents were there when the record was 6-0?
### Answer:
SELECT date FROM table_21197135_1 WHERE record = "6-0" |
Subsets and Splits