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_16849531_2 (ncbi_accession_number__mrna_protein_ VARCHAR, species VARCHAR)
### Question:
What is the NCBI Accession Number of the Homo Sapiens species?
### Answer:
SELECT ncbi_accession_number__mrna_protein_ FROM table_16849531_2 WHERE species = "Homo sapiens" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_177273_2 (score VARCHAR, partner VARCHAR)
### Question:
What was the score when Françoise Dürr was partner?
### Answer:
SELECT score FROM table_177273_2 WHERE partner = "Françoise Dürr" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27003186_3 (other VARCHAR, registered_voters VARCHAR)
### Question:
What is other when registered voters is 50.7%?
### Answer:
SELECT other FROM table_27003186_3 WHERE registered_voters = "50.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_24518475_1 (latitude VARCHAR, time__utc_ VARCHAR)
### Question:
What was the latitude that had a UTC time of 18:19:36?
### Answer:
SELECT latitude FROM table_24518475_1 WHERE time__utc_ = "18:19:36" |
Below is an context that describes a sql 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 (home_team VARCHAR, crowd INTEGER)
### Question:
What was the home team for the game with more than 25,000 crowd?
### Answer:
SELECT home_team FROM table_name_70 WHERE crowd > 25 OFFSET 000 |
Below is an context that describes a sql 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 (entrant VARCHAR, points VARCHAR, year VARCHAR, chassis VARCHAR)
### Question:
which entrant after 1987 had 12 points and a benetton b188 chassis?
### Answer:
SELECT entrant FROM table_name_22 WHERE year > 1987 AND chassis = "benetton b188" AND points = 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_16 (grid INTEGER, laps VARCHAR, time_retired VARCHAR)
### Question:
Which Grid has Laps larger than 26, and a Time/Retired of 44:39.467?
### Answer:
SELECT MIN(grid) FROM table_name_16 WHERE laps > 26 AND time_retired = "44:39.467" |
Below is an context that describes a sql 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 (school_club_team VARCHAR, player VARCHAR)
### Question:
Which School/Club Team does Vince Carter Play for?
### Answer:
SELECT school_club_team FROM table_name_95 WHERE player = "vince carter" |
Below is an context that describes a sql 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 (nation VARCHAR, bronze VARCHAR, total VARCHAR, silver VARCHAR)
### Question:
What nation has a total less than 11, more than 1 silver and less than 1 bronze?
### Answer:
SELECT nation FROM table_name_58 WHERE total < 11 AND 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_name_80 (score VARCHAR, record VARCHAR)
### Question:
Which score has a record of 58–15–8?
### Answer:
SELECT score FROM table_name_80 WHERE record = "58–15–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_96 (mary_davis VARCHAR, gay_mitchell VARCHAR)
### Question:
What is the Mary Davis with a Gay Mitchell that is 4.6%?
### Answer:
SELECT mary_davis FROM table_name_96 WHERE gay_mitchell = "4.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_77 (rank INTEGER, country VARCHAR)
### Question:
What is the lowest Rank for a Guam Player?
### Answer:
SELECT MIN(rank) FROM table_name_77 WHERE country = "guam" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_16 (years_in_orlando VARCHAR, school_club_team VARCHAR)
### Question:
Which Years in Orlando has a School/Club Team of seattle?
### Answer:
SELECT years_in_orlando FROM table_name_16 WHERE school_club_team = "seattle" |
Below is an context that describes a sql 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 (crowd INTEGER, away_team VARCHAR)
### Question:
How is the crowd of the team Geelong?
### Answer:
SELECT AVG(crowd) FROM table_name_35 WHERE away_team = "geelong" |
Below is an context that describes a sql 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 (retired INTEGER, poaf_serial VARCHAR, delivery VARCHAR, in_service VARCHAR)
### Question:
What is the earliest year retired delivered in 1965 with an in service in November 1971 for the PoAF Serial less than 7103?
### Answer:
SELECT MIN(retired) FROM table_name_50 WHERE delivery = "1965" AND in_service = "november 1971" AND poaf_serial < 7103 |
Below is an context that describes a sql 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 (points VARCHAR, goals_for VARCHAR, wins VARCHAR, club VARCHAR)
### Question:
What is the number of points of palamós cf, which has less than 21 wins and less than 40 goals?
### Answer:
SELECT COUNT(points) FROM table_name_60 WHERE wins < 21 AND club = "palamós cf" AND goals_for < 40 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_10361230_1 (overall INTEGER, player_name VARCHAR)
### Question:
What is Bruce Cerone overall?
### Answer:
SELECT MIN(overall) FROM table_10361230_1 WHERE player_name = "Bruce Cerone" |
Below is an context that describes a sql 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 (segment_c VARCHAR, netflix VARCHAR)
### Question:
Which Segment C has a Netflix of s08e16?
### Answer:
SELECT segment_c FROM table_name_43 WHERE netflix = "s08e16" |
Below is an context that describes a sql 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 (competition VARCHAR, date VARCHAR)
### Question:
What was being played on Nov 23, 2006?
### Answer:
SELECT competition FROM table_name_79 WHERE date = "nov 23, 2006" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_57 (segment_a VARCHAR, segment_d VARCHAR)
### Question:
Which segment A also has a segment D of kitchen shears?
### Answer:
SELECT segment_a FROM table_name_57 WHERE segment_d = "kitchen shears" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_25740548_4 (title VARCHAR, us_viewers__million_ VARCHAR)
### Question:
Which episode had 2.75 million viewers in the U.S.?
### Answer:
SELECT title FROM table_25740548_4 WHERE us_viewers__million_ = "2.75" |
Below is an context that describes a sql 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 (three VARCHAR, date VARCHAR, seven VARCHAR, four VARCHAR, five VARCHAR)
### Question:
Name the three for william prewett for four and five being richard ellis with seven being nicholas king on 5 november 1693
### Answer:
SELECT three FROM table_name_83 WHERE four = "william prewett" AND five = "richard ellis" AND seven = "nicholas king" AND date = "5 november 1693" |
Below is an context that describes a sql 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 (grid INTEGER, driver VARCHAR, laps VARCHAR)
### Question:
When Jean Alesi had laps less than 24, what was his highest grid?
### Answer:
SELECT MAX(grid) FROM table_name_75 WHERE driver = "jean alesi" AND laps < 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_2679061_4 (nhl_team VARCHAR, player VARCHAR)
### Question:
Which team drafted Esa Tikkanen?
### Answer:
SELECT nhl_team FROM table_2679061_4 WHERE player = "Esa Tikkanen" |
Below is an context that describes a sql 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 (host_city VARCHAR, silver VARCHAR, total VARCHAR)
### Question:
Which Host City has more than 6 Silver and a Total of 22?
### Answer:
SELECT host_city FROM table_name_74 WHERE silver > 6 AND total = 22 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_1 (title VARCHAR, time VARCHAR)
### Question:
Which title has a length of 4:22?
### Answer:
SELECT title FROM table_name_1 WHERE time = "4:22" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_24055352_1 (high_school VARCHAR, number VARCHAR)
### Question:
What is the high school of the player number 5?
### Answer:
SELECT high_school FROM table_24055352_1 WHERE number = 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_20 (bronze INTEGER, silver VARCHAR, total VARCHAR)
### Question:
What is the highest bronze when the silver was 3 and the total was larger than 5?
### Answer:
SELECT MAX(bronze) FROM table_name_20 WHERE silver = 3 AND total > 5 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2651755_1 (independent_regional_force VARCHAR, alliance VARCHAR)
### Question:
What is the independent regional force when alliance is (r) iván norambuena ( udi )?
### Answer:
SELECT independent_regional_force FROM table_2651755_1 WHERE alliance = "(R) Iván Norambuena ( UDI )" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_10015132_14 (no VARCHAR, school_club_team VARCHAR)
### Question:
How many number does Fordham school have?
### Answer:
SELECT COUNT(no) FROM table_10015132_14 WHERE school_club_team = "Fordham" |
Below is an context that describes a sql 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 (horse VARCHAR, faults VARCHAR, total VARCHAR)
### Question:
What horse did not start and had a total of over 16.16?
### Answer:
SELECT horse FROM table_name_10 WHERE faults = "did not start" AND total > 16.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 table_name_34 (m_r_romaja VARCHAR, capital VARCHAR)
### Question:
What is the M-R Romaja for the province having a capital of Cheongju?
### Answer:
SELECT m_r_romaja FROM table_name_34 WHERE capital = "cheongju" |
Below is an context that describes a sql 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 (losing_bonus VARCHAR, points VARCHAR)
### Question:
If the points were 0, what was the losing bonus?
### Answer:
SELECT losing_bonus FROM table_name_32 WHERE points = "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_46 (location VARCHAR, opponent VARCHAR)
### Question:
What's was the location for fight against Liam Mccarty?
### Answer:
SELECT location FROM table_name_46 WHERE opponent = "liam mccarty" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, department_id VARCHAR)
### Question:
What are the first and last name for those employees who works either in department 70 or 90?
### Answer:
SELECT first_name, last_name FROM employees WHERE department_id = 70 OR department_id = 90 |
Below is an context that describes a sql 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 (season INTEGER, team_2 VARCHAR)
### Question:
What is the earliest season that Pisico Bình ðinh is team 2?
### Answer:
SELECT MIN(season) FROM table_name_95 WHERE team_2 = "pisico bình ðinh" |
Below is an context that describes a sql 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 (bronze VARCHAR, silver VARCHAR, gold VARCHAR)
### Question:
What bronze has tatiana ryabkina as the silver, anne margrethe hausken as the gold?
### Answer:
SELECT bronze FROM table_name_55 WHERE silver = "tatiana ryabkina" AND gold = "anne margrethe hausken" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_30 (capacity INTEGER, club VARCHAR)
### Question:
What was the largest capacity when the club was F.C. Igea Virtus Barcellona?
### Answer:
SELECT MAX(capacity) FROM table_name_30 WHERE club = "f.c. igea virtus barcellona" |
Below is an context that describes a sql 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 (ground VARCHAR, away_team VARCHAR)
### Question:
What is the ground of the Geelong Away team?
### Answer:
SELECT ground FROM table_name_74 WHERE away_team = "geelong" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_28059992_6 (college VARCHAR, cfl_team VARCHAR)
### Question:
What college did the player who was drafted by Calgary go to?
### Answer:
SELECT college FROM table_28059992_6 WHERE cfl_team = "Calgary" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_10 (population__hab_ VARCHAR, distance_medellín_downtown___km__ VARCHAR)
### Question:
What is the population (hab) when the distance medellin downtown (km) is * dane?
### Answer:
SELECT population__hab_ FROM table_name_10 WHERE distance_medellín_downtown___km__ = "* dane" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23662272_4 (couple VARCHAR, number_of_dances VARCHAR)
### Question:
What was the name of the couple if the number of dances is 6?
### Answer:
SELECT couple FROM table_23662272_4 WHERE number_of_dances = 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_11222744_3 (studio VARCHAR, catalog_number VARCHAR)
### Question:
how many studios have the catalog number "cal03 / 0091037137333"?
### Answer:
SELECT COUNT(studio) FROM table_11222744_3 WHERE catalog_number = "CAL03 / 0091037137333" |
Below is an context that describes a sql 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 (year INTEGER, points INTEGER)
### Question:
Name the most year for points more than 0
### Answer:
SELECT MAX(year) FROM table_name_96 WHERE points > 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_61 (date VARCHAR, opponent VARCHAR)
### Question:
What is the date of the game against Philadelphia Eagles?
### Answer:
SELECT date FROM table_name_61 WHERE opponent = "philadelphia eagles" |
Below is an context that describes a sql 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 (home_team VARCHAR, venue VARCHAR)
### Question:
Which home team played at Princes Park?
### Answer:
SELECT home_team FROM table_name_67 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 county_public_safety (Crime_rate VARCHAR, Police_officers VARCHAR)
### Question:
Show the crime rates of counties in ascending order of number of police officers.
### Answer:
SELECT Crime_rate FROM county_public_safety ORDER BY Police_officers |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1183842_1 (joined VARCHAR, location VARCHAR)
### Question:
Boca Raton, Florida had what joined amount?
### Answer:
SELECT joined FROM table_1183842_1 WHERE location = "Boca Raton, 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_95 (line VARCHAR, colour VARCHAR)
### Question:
Which line was green?
### Answer:
SELECT line FROM table_name_95 WHERE colour = "green" |
Below is an context that describes a sql 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 (original_broadway_production VARCHAR, first_us_national_tour VARCHAR)
### Question:
Which Original Broadway production has a First US National Tour of roger bart?
### Answer:
SELECT original_broadway_production FROM table_name_52 WHERE first_us_national_tour = "roger bart" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27721131_2 (score VARCHAR, high_points VARCHAR)
### Question:
What's the score in andray blatche (17) high points?
### Answer:
SELECT COUNT(score) FROM table_27721131_2 WHERE high_points = "Andray Blatche (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_40 (money___$__ VARCHAR, place VARCHAR, player VARCHAR)
### Question:
What is the Money ($) when the Place is t6, and Player is chris dimarco?
### Answer:
SELECT money___$__ FROM table_name_40 WHERE place = "t6" AND player = "chris dimarco" |
Below is an context that describes a sql 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 (date VARCHAR, winner VARCHAR)
### Question:
What is the Date, when the Winner is Aaron Gustavson?
### Answer:
SELECT date FROM table_name_79 WHERE winner = "aaron gustavson" |
Below is an context that describes a sql 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 (attendance VARCHAR, home VARCHAR, date VARCHAR)
### Question:
What is Attendance, when Home is Cleveland, and when Date is January 30?
### Answer:
SELECT attendance FROM table_name_74 WHERE home = "cleveland" AND date = "january 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_99 (local_networked VARCHAR, show_name VARCHAR)
### Question:
What Local/Networked has a Show Name of nightline?
### Answer:
SELECT local_networked FROM table_name_99 WHERE show_name = "nightline" |
Below is an context that describes a sql 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 (opponent VARCHAR, record VARCHAR)
### Question:
What opponents have a record of 90-70?
### Answer:
SELECT opponent FROM table_name_34 WHERE record = "90-70" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_16 (wins INTEGER, player VARCHAR, events VARCHAR)
### Question:
How many wins for bruce fleisher with over 31 events?
### Answer:
SELECT AVG(wins) FROM table_name_16 WHERE player = "bruce fleisher" AND events > 31 |
Below is an context that describes a sql 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 (home VARCHAR, decision VARCHAR, visitor VARCHAR)
### Question:
What is the home team of the game with a price decision and the new jersey devils as the visitor team?
### Answer:
SELECT home FROM table_name_51 WHERE decision = "price" AND visitor = "new jersey devils" |
Below is an context that describes a sql 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 (year VARCHAR, notes VARCHAR, position VARCHAR)
### Question:
What year did Naoki Tsukahara finish 3rd in the 200 m race?
### Answer:
SELECT year FROM table_name_4 WHERE notes = "200 m" AND position = "3rd" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_24348134_3 (conference VARCHAR, tournament_winner VARCHAR)
### Question:
List the tournament that kent state won?
### Answer:
SELECT conference AS Tournament FROM table_24348134_3 WHERE tournament_winner = "Kent 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_name_12 (record VARCHAR, attendance VARCHAR)
### Question:
What is the record from the 2,500 in attendance?
### Answer:
SELECT record FROM table_name_12 WHERE attendance = "2,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_41 (points INTEGER, team VARCHAR, wins VARCHAR)
### Question:
Name the Points which has a Team of sportivo luqueño, and Wins larger than 1?
### Answer:
SELECT MIN(points) FROM table_name_41 WHERE team = "sportivo luqueño" AND wins > 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_26611679_3 (average VARCHAR, category VARCHAR)
### Question:
Name the number of average for steals per game
### Answer:
SELECT COUNT(average) FROM table_26611679_3 WHERE category = "Steals per game" |
Below is an context that describes a sql 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 (date VARCHAR, opponent VARCHAR)
### Question:
What was the date of the game against the Los Angeles Rams?
### Answer:
SELECT date FROM table_name_60 WHERE opponent = "los angeles rams" |
Below is an context that describes a sql 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 (company_or_product_name VARCHAR, episode VARCHAR, investing_dragon_s_ VARCHAR)
### Question:
What is the name of the Company or Product that is Episode 3 and is suppoted by Investing Dragon Deborah Meaden?
### Answer:
SELECT company_or_product_name FROM table_name_83 WHERE episode = "episode 3" AND investing_dragon_s_ = "deborah meaden" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_14638077_2 (winning_team VARCHAR, circuit VARCHAR)
### Question:
how many winning team with circuit being road america
### Answer:
SELECT COUNT(winning_team) FROM table_14638077_2 WHERE circuit = "Road America" |
Below is an context that describes a sql 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 (attendance VARCHAR, location VARCHAR, time VARCHAR)
### Question:
yankee stadium (i), and a Time of 3:00 has what attendance for this location?
### Answer:
SELECT attendance FROM table_name_56 WHERE location = "yankee stadium (i)" AND time = "3:00" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_10647401_1 (week INTEGER, stadium VARCHAR)
### Question:
What week corresponds to the last one to be played at the memorial stadium?
### Answer:
SELECT MAX(week) FROM table_10647401_1 WHERE stadium = "Memorial stadium" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE Addresses (City_Town VARCHAR, Address_ID VARCHAR); CREATE TABLE Stores (Address_ID VARCHAR, Store_Name VARCHAR)
### Question:
Which city is the address of the store named "FJA Filming" located in?
### Answer:
SELECT T1.City_Town FROM Addresses AS T1 JOIN Stores AS T2 ON T1.Address_ID = T2.Address_ID WHERE T2.Store_Name = "FJA Filming" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_53 (silver INTEGER, gold VARCHAR, bronze VARCHAR)
### Question:
What is the average number of silver medals with more than 6 gold meals and less than 5 bronze medals?
### Answer:
SELECT AVG(silver) FROM table_name_53 WHERE gold > 6 AND bronze < 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_10650711_1 (nfl_team VARCHAR, player VARCHAR)
### Question:
what is the nfl team where player is thane gash
### Answer:
SELECT nfl_team FROM table_10650711_1 WHERE player = "Thane Gash" |
Below is an context that describes a sql 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 (december INTEGER, record VARCHAR, game VARCHAR)
### Question:
Which December has a Record of 21–7–2, and a Game larger than 30?
### Answer:
SELECT MAX(december) FROM table_name_59 WHERE record = "21–7–2" AND game > 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_228973_9 (title VARCHAR, original_air_date VARCHAR)
### Question:
If the original air date is February 4, 2003, what is the episode title?
### Answer:
SELECT title FROM table_228973_9 WHERE original_air_date = "February 4, 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_13 (character VARCHAR, actor VARCHAR)
### Question:
How long did the soap opera run in which Nadine Spruß acted in?
### Answer:
SELECT character FROM table_name_13 WHERE actor = "nadine spruß" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27631756_2 (kitmaker VARCHAR, team VARCHAR)
### Question:
How many kitmaker correspond to team ittihad kalba?
### Answer:
SELECT COUNT(kitmaker) FROM table_27631756_2 WHERE team = "Ittihad Kalba" |
Below is an context that describes a sql 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 (home_team VARCHAR)
### Question:
What did Hawthorn score as the home team?
### Answer:
SELECT home_team AS score FROM table_name_21 WHERE home_team = "hawthorn" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22754310_1 (party VARCHAR, constituency VARCHAR)
### Question:
Name the party a for sriperumbudur
### Answer:
SELECT party AS a FROM table_22754310_1 WHERE constituency = "Sriperumbudur" |
Below is an context that describes a sql 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 (points VARCHAR, entrant VARCHAR, year VARCHAR)
### Question:
In 1971, how many total points did the entrant stp march have?
### Answer:
SELECT COUNT(points) FROM table_name_56 WHERE entrant = "stp march" AND year > 1971 |
Below is an context that describes a sql 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 (margin VARCHAR, runner_s__up VARCHAR, year VARCHAR)
### Question:
What is the Margin in 1953 when Patty Berg was Runner(s)-up?
### Answer:
SELECT margin FROM table_name_29 WHERE runner_s__up = "patty berg" AND year = 1953 |
Below is an context that describes a sql 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 (played INTEGER, lost VARCHAR, position VARCHAR, goals_against VARCHAR)
### Question:
What is the lowest played that has a position greater than 6, 61 as the goals against, with a loss less than 16?
### Answer:
SELECT MIN(played) FROM table_name_58 WHERE position > 6 AND goals_against = 61 AND lost < 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 table_name_44 (pick__number INTEGER, nationality VARCHAR, team_from VARCHAR)
### Question:
Which Pick # has a Nationality of canada, and a Team from of sudbury wolves?
### Answer:
SELECT MIN(pick__number) FROM table_name_44 WHERE nationality = "canada" AND team_from = "sudbury wolves" |
Below is an context that describes a sql 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 (home VARCHAR, date VARCHAR)
### Question:
What is the home team that played on February 25?
### Answer:
SELECT home FROM table_name_43 WHERE date = "february 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_72 (college VARCHAR, position VARCHAR, round VARCHAR)
### Question:
What college was the defensive end pick that was picked in round 2?
### Answer:
SELECT college FROM table_name_72 WHERE position = "defensive end" AND round = 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_11609814_1 (permanence_of_the_body VARCHAR, constancy VARCHAR)
### Question:
what's the permanence of the body where constancy is interestedness
### Answer:
SELECT permanence_of_the_body FROM table_11609814_1 WHERE constancy = "interestedness" |
Below is an context that describes a sql 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 VARCHAR, points VARCHAR, team VARCHAR)
### Question:
Waht laps have points smaller than 1, and a team of dale coyne racing, and the grid larger than 13?
### Answer:
SELECT laps FROM table_name_87 WHERE points < 1 AND team = "dale coyne racing" AND grid > 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_59 (rank INTEGER, name VARCHAR, time VARCHAR)
### Question:
What is the highest Rank of Karen Pickering when she had a time of less than 55.71?
### Answer:
SELECT MAX(rank) FROM table_name_59 WHERE name = "karen pickering" AND time < 55.71 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21726793_1 (production_code VARCHAR, us_viewers__million_ VARCHAR)
### Question:
what is the total number o production code where us viewers is 2.76?
### Answer:
SELECT COUNT(production_code) FROM table_21726793_1 WHERE us_viewers__million_ = "2.76" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_16527640_3 (date_of_death VARCHAR, player VARCHAR)
### Question:
What day did ARchie Roberts die?
### Answer:
SELECT date_of_death FROM table_16527640_3 WHERE player = "Archie Roberts" |
Below is an context that describes a sql 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 (overall INTEGER, round VARCHAR)
### Question:
What is the highest overall number for someone from round 16?
### Answer:
SELECT MAX(overall) FROM table_name_51 WHERE round = 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 table_name_19 (points_classification VARCHAR, stage VARCHAR, trofeo_super_team VARCHAR, intergiro_classification VARCHAR, mountains_classification VARCHAR)
### Question:
What is the points classification when the Intergiro classification is Sven Krauß, and the mountains classification is koldo gil, Trofeo Super Team is Liquigas-Bianchi, and stage is 9?
### Answer:
SELECT points_classification FROM table_name_19 WHERE intergiro_classification = "sven krauß" AND mountains_classification = "koldo gil" AND trofeo_super_team = "liquigas-bianchi" AND stage = "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_81 (floor_exercise INTEGER, pommel_horse VARCHAR, horizontal_bar VARCHAR)
### Question:
what was the floor exercise score with a pommel horse score of 9.65 and horizontal bar score more than 9.475?
### Answer:
SELECT MAX(floor_exercise) FROM table_name_81 WHERE pommel_horse = 9.65 AND horizontal_bar > 9.475 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_24302700_6 (event_2_truck_pull VARCHAR, event_4_fingals_fingers VARCHAR)
### Question:
What is the score in the 2 truck pull of the player who got 1 (5 in 33.84s) in the 4 fingals fingers?
### Answer:
SELECT event_2_truck_pull FROM table_24302700_6 WHERE event_4_fingals_fingers = "1 (5 in 33.84s)" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_28 (away_team VARCHAR, venue VARCHAR)
### Question:
What is the away team at lake oval?
### Answer:
SELECT away_team FROM table_name_28 WHERE venue = "lake oval" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_69 (player VARCHAR, position VARCHAR)
### Question:
Which Player is the shooting guard?
### Answer:
SELECT player FROM table_name_69 WHERE position = "shooting guard" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_66 (record VARCHAR, date VARCHAR)
### Question:
What is the record on March 16?
### Answer:
SELECT record FROM table_name_66 WHERE date = "march 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 table_25773116_2 (location VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)
### Question:
Where was the race where Cole Morgan had the fastest lap and Daniel Erickson had pole position?
### Answer:
SELECT location FROM table_25773116_2 WHERE pole_position = "Daniel Erickson" AND fastest_lap = "Cole Morgan" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_39 (tournament VARCHAR, margin_of_victory VARCHAR, date VARCHAR)
### Question:
Which Tournament has a Margin of victory of 1 stroke, and a Date of oct 7, 1990?
### Answer:
SELECT tournament FROM table_name_39 WHERE margin_of_victory = "1 stroke" AND date = "oct 7, 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_29171931_3 (outgoing_head_coach VARCHAR, manner_of_departure VARCHAR)
### Question:
Who are the outgoing head coaches whose manner of departure is Gardening Leave 1?
### Answer:
SELECT outgoing_head_coach FROM table_29171931_3 WHERE manner_of_departure = "Gardening leave 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_56 (album VARCHAR, release_info VARCHAR)
### Question:
Which album had a release of heavenly (hvn95)?
### Answer:
SELECT album FROM table_name_56 WHERE release_info = "heavenly (hvn95)" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_18304058_2 (nickname_s_ VARCHAR, enrollment__2013_14_ VARCHAR)
### Question:
What is the nickname of the team whose 2013/2014 enrollment is 436?
### Answer:
SELECT nickname_s_ FROM table_18304058_2 WHERE enrollment__2013_14_ = 436 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.