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_5 (manufacturer VARCHAR, rider VARCHAR)
### Question:
Can you tell me the Manufacturer that has the Rider of stefan bradl?
### Answer:
SELECT manufacturer FROM table_name_5 WHERE rider = "stefan bradl" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_68 (time VARCHAR, opponent VARCHAR)
### Question:
What time was Opponent Fredson Paixão beaten in?
### Answer:
SELECT time FROM table_name_68 WHERE opponent = "fredson paixão" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_89 (home_team VARCHAR, venue VARCHAR)
### Question:
What's the home team's score at lake oval?
### Answer:
SELECT home_team AS score FROM table_name_89 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_84 (floors INTEGER, name VARCHAR)
### Question:
Which Floors is the highest one that has a Name of one indiana square?
### Answer:
SELECT MAX(floors) FROM table_name_84 WHERE name = "one indiana square" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_10477224_1 (sepal_width VARCHAR, species VARCHAR, petal_length VARCHAR)
### Question:
Name the sepal width for i.virginica with petal length of 5.1
### Answer:
SELECT sepal_width FROM table_10477224_1 WHERE species = "I.virginica" AND petal_length = "5.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 Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Student_Course_Enrolment (course_id VARCHAR)
### Question:
What is the name of each course and the corresponding number of student enrollment?
### Answer:
SELECT T1.course_name, COUNT(*) FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_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_63 (ret_number VARCHAR, records VARCHAR)
### Question:
what pitcher scored 4
### Answer:
SELECT ret_number FROM table_name_63 WHERE records = "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_28 (length VARCHAR, remarks VARCHAR)
### Question:
What is the length of the highway with remarks that it was replaced by lp 20?
### Answer:
SELECT length FROM table_name_28 WHERE remarks = "replaced by lp 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_78 (area VARCHAR, authority VARCHAR, roll VARCHAR)
### Question:
Which area has state authority and a roll fewer than 18?
### Answer:
SELECT area FROM table_name_78 WHERE authority = "state" AND roll < 18 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_77 (driver VARCHAR, position VARCHAR, season VARCHAR)
### Question:
What is Driver, when Position is 2nd, and when Season is 2001?
### Answer:
SELECT driver FROM table_name_77 WHERE position = "2nd" AND season = 2001 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1341453_44 (incumbent VARCHAR, first_elected VARCHAR)
### Question:
Which incumbent was first elected in 1984?
### Answer:
SELECT incumbent FROM table_1341453_44 WHERE first_elected = 1984 |
Below is an context that describes a sql 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 (opponent VARCHAR, event VARCHAR)
### Question:
Which Opponent has the Event of Sengoku 1?
### Answer:
SELECT opponent FROM table_name_94 WHERE event = "sengoku 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_83 (label VARCHAR, date VARCHAR)
### Question:
What label released a record on December 19, 2001?
### Answer:
SELECT label FROM table_name_83 WHERE date = "december 19, 2001" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_71 (year INTEGER, location VARCHAR)
### Question:
What is the earliest year that the tournament was played in Cape Town, South Africa?
### Answer:
SELECT MIN(year) FROM table_name_71 WHERE location = "cape town, south africa" |
Below is an context that describes a sql 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 (score VARCHAR, outcome VARCHAR, partner VARCHAR)
### Question:
What is the Score with an Outcome of runner-up, and a Partner that is elizabeth little?
### Answer:
SELECT score FROM table_name_1 WHERE outcome = "runner-up" AND partner = "elizabeth little" |
Below is an context that describes a sql 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 (season VARCHAR, position VARCHAR)
### Question:
What season had a 14th position?
### Answer:
SELECT season FROM table_name_47 WHERE position = "14th" |
Below is an context that describes a sql 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 (born VARCHAR, ordained_bishop VARCHAR)
### Question:
When was the archbishop that was ordained as a bishop on November 30, 1925 born?
### Answer:
SELECT born FROM table_name_3 WHERE ordained_bishop = "november 30, 1925" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_15 (date VARCHAR, year VARCHAR, location VARCHAR, result VARCHAR, competition VARCHAR)
### Question:
What is the date of the game with a loss result in the Europe/Africa Group I, Round Robin competition in Murcia (esp) after 1998?
### Answer:
SELECT date FROM table_name_15 WHERE result = "loss" AND competition = "europe/africa group i, round robin" AND location = "murcia (esp)" AND year > 1998 |
Below is an context that describes a sql 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 (country VARCHAR, player VARCHAR, score VARCHAR)
### Question:
What country did Bart Bryant with a score of 69-70=139 belong to?
### Answer:
SELECT country FROM table_name_37 WHERE score = 69 - 70 = 139 AND player = "bart bryant" |
Below is an context that describes a sql 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 (opening_date VARCHAR, classification VARCHAR, theatre VARCHAR)
### Question:
What is the opening date of the musical at the adelphi theatre?
### Answer:
SELECT opening_date FROM table_name_6 WHERE classification = "musical" AND theatre = "adelphi theatre" |
Below is an context that describes a sql 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 (date_from VARCHAR, date_to VARCHAR, name VARCHAR)
### Question:
What was the Date From for Theo Robinson, who was with the team until the end of season?
### Answer:
SELECT date_from FROM table_name_30 WHERE date_to = "end of season" AND name = "theo robinson" |
Below is an context that describes a sql 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 (home VARCHAR, visitor VARCHAR)
### Question:
Name the home with visitor of kings
### Answer:
SELECT home FROM table_name_81 WHERE visitor = "kings" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE election (Committee VARCHAR, Party VARCHAR); CREATE TABLE party (Party_ID VARCHAR, Party VARCHAR)
### Question:
Return all the committees that have delegates from Democratic party.
### Answer:
SELECT T1.Committee FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T2.Party = "Democratic" |
Below is an context that describes a sql 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 (height VARCHAR, player VARCHAR)
### Question:
What's the heigh of nolan smith?
### Answer:
SELECT height FROM table_name_83 WHERE player = "nolan smith" |
Below is an context that describes a sql 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 (kilgore__r_ VARCHAR, potts__i_ VARCHAR)
### Question:
What was Kilgore's (R) percentage when Potts (I) polled at 1%?
### Answer:
SELECT kilgore__r_ FROM table_name_95 WHERE potts__i_ = "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_13 (street_address VARCHAR, architect VARCHAR)
### Question:
What was the address of the building with architects Edmund Woolley and Andrew Hamilton?
### Answer:
SELECT street_address FROM table_name_13 WHERE architect = "edmund woolley and andrew hamilton" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_31 (player VARCHAR, place VARCHAR)
### Question:
Which Player has a Place of t2?
### Answer:
SELECT player FROM table_name_31 WHERE place = "t2" |
Below is an context that describes a sql 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 (sport VARCHAR, name VARCHAR)
### Question:
what is the sport for wolfgang schattauer?
### Answer:
SELECT sport FROM table_name_69 WHERE name = "wolfgang schattauer" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11381701_3 (date VARCHAR, bada VARCHAR)
### Question:
On which dates was the value of Bada 0.05%?
### Answer:
SELECT date FROM table_11381701_3 WHERE bada = "0.05%" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1213511_7 (position VARCHAR, player VARCHAR)
### Question:
what are all the position where player is al simmons
### Answer:
SELECT position FROM table_1213511_7 WHERE player = "Al Simmons" |
Below is an context that describes a sql 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 (sample_size VARCHAR, poll_source VARCHAR, margin_of_error VARCHAR)
### Question:
What si the total sample size at rasmussen reports when the margin of error was bigger than 4.5?
### Answer:
SELECT COUNT(sample_size) FROM table_name_59 WHERE poll_source = "rasmussen reports" AND margin_of_error > 4.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_51 (record VARCHAR, date VARCHAR)
### Question:
Which Record is on november 16?
### Answer:
SELECT record FROM table_name_51 WHERE date = "november 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_70 (silver INTEGER, gold INTEGER)
### Question:
what is the lowest amount of silver when the gold is less than 0?
### Answer:
SELECT MIN(silver) FROM table_name_70 WHERE 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_name_70 (year VARCHAR, film VARCHAR)
### Question:
In what Year was the Film Your National Gallery winner?
### Answer:
SELECT year FROM table_name_70 WHERE film = "your national gallery" |
Below is an context that describes a sql 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 (volume VARCHAR, artist VARCHAR, weeks_on_top VARCHAR)
### Question:
What is Volume:Issue, when Artist is Elton John, and when Weeks on Top is 4?
### Answer:
SELECT volume AS :issue FROM table_name_86 WHERE artist = "elton john" AND weeks_on_top = 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_68 (dutch VARCHAR, Groningen VARCHAR, høvd VARCHAR, høvur VARCHAR)
### Question:
What is the Dutch waord for høvd / høvur?
### Answer:
SELECT dutch FROM table_name_68 WHERE LOW_GERMAN(Groningen) = høvd / høvur |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_42 (uci_points INTEGER, cyclist VARCHAR)
### Question:
What is the sum of UCI points for Kim Kirchen?
### Answer:
SELECT SUM(uci_points) FROM table_name_42 WHERE cyclist = "kim kirchen" |
Below is an context that describes a sql 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 (producer_director VARCHAR, film VARCHAR)
### Question:
Who was the Producer/Director of Fear Beneath?
### Answer:
SELECT producer_director FROM table_name_40 WHERE film = "fear beneath" |
Below is an context that describes a sql 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 (attendance VARCHAR, week VARCHAR)
### Question:
What was the Attendance in Week 10?
### Answer:
SELECT attendance FROM table_name_59 WHERE week = 10 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_22 (gold INTEGER, rank VARCHAR)
### Question:
How many total Gold medals did the nation ranked #3 receive?
### Answer:
SELECT SUM(gold) FROM table_name_22 WHERE rank = "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_36 (tie_no VARCHAR, home_team VARCHAR)
### Question:
What is the tie no of the game where exeter city was the home team?
### Answer:
SELECT tie_no FROM table_name_36 WHERE home_team = "exeter city" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_96 (points INTEGER, player VARCHAR)
### Question:
What are the highest points that Emmitt Smith had?
### Answer:
SELECT MAX(points) FROM table_name_96 WHERE player = "emmitt smith" |
Below is an context that describes a sql 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 (total VARCHAR, player VARCHAR, to_par VARCHAR)
### Question:
What is the total for a to par bigger than 7 and a player of al geiberger?
### Answer:
SELECT COUNT(total) FROM table_name_58 WHERE player = "al geiberger" AND to_par > 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 countries (country_name VARCHAR, country_id VARCHAR); CREATE TABLE departments (department_id VARCHAR, location_id VARCHAR); CREATE TABLE locations (location_id VARCHAR, country_id VARCHAR); CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, employee_id VARCHAR, department_id VARCHAR)
### Question:
display the full name (first and last name ) of employee with ID and name of the country presently where (s)he is working.
### Answer:
SELECT T1.first_name, T1.last_name, T1.employee_id, T4.country_name FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id JOIN locations AS T3 ON T2.location_id = T3.location_id JOIN countries AS T4 ON T3.country_id = T4.country_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_62 (safari VARCHAR, firefox VARCHAR)
### Question:
What percentage of browsers were using Safari during the period in which 31.27% were using Firefox?
### Answer:
SELECT safari FROM table_name_62 WHERE firefox = "31.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_58 (hand VARCHAR)
### Question:
What does full house have as a 5 credits?
### Answer:
SELECT 5 AS _credits FROM table_name_58 WHERE hand = "full house" |
Below is an context that describes a sql 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 (consistency_ VARCHAR, _participation VARCHAR, pareto_efficiency VARCHAR, condorcet VARCHAR)
### Question:
what is the consistency & participation when pareto efficiency is yes and condorcet is no?
### Answer:
SELECT consistency_ & _participation FROM table_name_83 WHERE pareto_efficiency = "yes" AND condorcet = "no" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12441518_1 (recurring_cast_seasons VARCHAR, character VARCHAR)
### Question:
What seasons does Nick Lucas appear in?
### Answer:
SELECT recurring_cast_seasons FROM table_12441518_1 WHERE character = "Nick Lucas" |
Below is an context that describes a sql 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 (pure_tamil VARCHAR, how_other_iyers_say_it VARCHAR)
### Question:
Name the pure tamil for enga athilae
### Answer:
SELECT pure_tamil FROM table_name_97 WHERE how_other_iyers_say_it = "enga athilae" |
Below is an context that describes a sql 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 (venue VARCHAR, losing_team VARCHAR)
### Question:
Which venue had a losing team of south sydney rabbitohs?
### Answer:
SELECT venue FROM table_name_16 WHERE losing_team = "south sydney rabbitohs" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1745843_10 (class VARCHAR, part_4 VARCHAR)
### Question:
What class is the verb wich its part 4 is frosinn
### Answer:
SELECT class FROM table_1745843_10 WHERE part_4 = "frosinn" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_14342210_14 (touchdowns__5_points_ VARCHAR, extra_points_1_point VARCHAR)
### Question:
How many touchdowns were made by the person with 7 extra points?
### Answer:
SELECT COUNT(touchdowns__5_points_) FROM table_14342210_14 WHERE extra_points_1_point = 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_24784769_1 (team VARCHAR, total_points VARCHAR)
### Question:
Which team had 342 total points?
### Answer:
SELECT team FROM table_24784769_1 WHERE total_points = 342 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1341453_37 (results VARCHAR, first_elected VARCHAR)
### Question:
What was the result of the election in which the incumbent was first elected in 1984?
### Answer:
SELECT results FROM table_1341453_37 WHERE first_elected = 1984 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_10408617_5 (bts_retail_price__regulated_ VARCHAR, tariff_code VARCHAR)
### Question:
What is the bts retail price (regulated) for tariff code g10?
### Answer:
SELECT bts_retail_price__regulated_ FROM table_10408617_5 WHERE tariff_code = "g10" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1342393_42 (first_elected INTEGER, incumbent VARCHAR)
### Question:
What was the total number of votes for Tom Connally
### Answer:
SELECT MIN(first_elected) FROM table_1342393_42 WHERE incumbent = "Tom Connally" |
Below is an context that describes a sql 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 (line VARCHAR, stopping_pattern VARCHAR)
### Question:
Which Line has a Stopping pattern of all stations, A, b, p?
### Answer:
SELECT line FROM table_name_59 WHERE stopping_pattern = "all stations, a, b, p" |
Below is an context that describes a sql 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 (location VARCHAR, entered_service VARCHAR, customer VARCHAR)
### Question:
What location entered service in 1999 and had a customer of Anadarko?
### Answer:
SELECT location FROM table_name_5 WHERE entered_service = "1999" AND customer = "anadarko" |
Below is an context that describes a sql 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 (airport VARCHAR, iata VARCHAR)
### Question:
Which Airport has a IATA of erz?
### Answer:
SELECT airport FROM table_name_63 WHERE iata = "erz" |
Below is an context that describes a sql 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 (authority VARCHAR, name VARCHAR)
### Question:
What is the Whakamaru school's authority?
### Answer:
SELECT authority FROM table_name_32 WHERE name = "whakamaru school" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_51 (team VARCHAR, driver VARCHAR, engine VARCHAR, manufacturer VARCHAR)
### Question:
What Team has the Engine of Chevrolet 6.0 V8, the Manufacturer of Opel, and the Driver Chris Jackson?
### Answer:
SELECT team FROM table_name_51 WHERE engine = "chevrolet 6.0 v8" AND manufacturer = "opel" AND driver = "chris jackson" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_93 (week INTEGER, date VARCHAR)
### Question:
What is the Week number on October 5, 2003?
### Answer:
SELECT MIN(week) FROM table_name_93 WHERE date = "october 5, 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_14871601_2 (losses INTEGER, scored VARCHAR)
### Question:
What was the number of losses when the scored value was 25?
### Answer:
SELECT MAX(losses) FROM table_14871601_2 WHERE scored = 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_22815568_6 (population INTEGER)
### Question:
What is the population maximum?
### Answer:
SELECT MAX(population) FROM table_22815568_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_46 (location VARCHAR, date_of_demolition VARCHAR, church_name VARCHAR)
### Question:
What is the location that has a date of demolition of 1940 and has a church named Christ Church Greyfriars?
### Answer:
SELECT location FROM table_name_46 WHERE date_of_demolition = 1940 AND church_name = "christ church greyfriars" |
Below is an context that describes a sql 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 (points VARCHAR, goals_scored INTEGER)
### Question:
What were the total number of points when the amount of goals scored was less than 20?
### Answer:
SELECT COUNT(points) FROM table_name_39 WHERE goals_scored < 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 (diameter__km_ INTEGER, name VARCHAR)
### Question:
What is the smallest diameter for Eirene Tholus?
### Answer:
SELECT MIN(diameter__km_) FROM table_name_97 WHERE name = "eirene 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_name_68 (weekday VARCHAR, against VARCHAR)
### Question:
What weekday has an against of kashima antlers?
### Answer:
SELECT weekday FROM table_name_68 WHERE against = "kashima antlers" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE Student_Course_Enrolment (student_id VARCHAR)
### Question:
How many distinct students are enrolled in courses?
### Answer:
SELECT COUNT(DISTINCT student_id) FROM Student_Course_Enrolment |
Below is an context that describes a sql 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 (country VARCHAR, place VARCHAR, player VARCHAR)
### Question:
What country was the player, rod pampling, from who placed t10?
### Answer:
SELECT country FROM table_name_43 WHERE place = "t10" AND player = "rod pampling" |
Below is an context that describes a sql 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 (played VARCHAR, tries_against VARCHAR)
### Question:
What is the played number when the tries against shows correct as of 18:13 26 May 2008?
### Answer:
SELECT played FROM table_name_1 WHERE tries_against = "correct as of 18:13 26 may 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_61 (record VARCHAR, score VARCHAR)
### Question:
Name the record for 9-4 score
### Answer:
SELECT record FROM table_name_61 WHERE score = "9-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 invoices (billing_country VARCHAR, total INTEGER)
### Question:
A list of the top 8 countries by gross/total invoice size. List country name and gross invoice size.
### Answer:
SELECT billing_country, SUM(total) FROM invoices GROUP BY billing_country ORDER BY SUM(total) DESC LIMIT 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_20887670_1 (year_joined INTEGER)
### Question:
What is the most recent year joined?
### Answer:
SELECT MAX(year_joined) FROM table_20887670_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_24330803_1 (position VARCHAR, points VARCHAR)
### Question:
How many positions were given when 30 points were won?
### Answer:
SELECT COUNT(position) FROM table_24330803_1 WHERE points = "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_62 (general_classification VARCHAR, team_classification VARCHAR, stage VARCHAR)
### Question:
What is the classification with a Team classification of la vie claire and a Stage of 12?
### Answer:
SELECT general_classification FROM table_name_62 WHERE team_classification = "la vie claire" AND stage = "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_5 (cuts_made INTEGER, wins INTEGER)
### Question:
Tell me the highest cuts made with wins more than 1
### Answer:
SELECT MAX(cuts_made) FROM table_name_5 WHERE 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_22597626_17 (partner VARCHAR, opponents_in_the_final VARCHAR)
### Question:
What was the partner count when the opponents in the final was forget leconte?
### Answer:
SELECT COUNT(partner) FROM table_22597626_17 WHERE opponents_in_the_final = "Forget Leconte" |
Below is an context that describes a sql 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 (bleeding_time VARCHAR, platelet_count VARCHAR, condition VARCHAR)
### Question:
Name the bleeding time with platelet count of unaffected and condition of factor xii deficiency
### Answer:
SELECT bleeding_time FROM table_name_83 WHERE platelet_count = "unaffected" AND condition = "factor xii deficiency" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_15 (winning_driver VARCHAR, circuit VARCHAR)
### Question:
Who was the winning driver of the Circuit of Lausitzring?
### Answer:
SELECT winning_driver FROM table_name_15 WHERE circuit = "lausitzring" |
Below is an context that describes a sql 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 (points VARCHAR, games VARCHAR)
### Question:
How many points were scored by the player who played 363 games?
### Answer:
SELECT points FROM table_name_86 WHERE games = "363" |
Below is an context that describes a sql 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 (competition VARCHAR, score VARCHAR, result VARCHAR)
### Question:
What competition had a score of 3-0, and a result of 4-1?
### Answer:
SELECT competition FROM table_name_8 WHERE score = "3-0" AND result = "4-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_58 (player VARCHAR, pick VARCHAR, round VARCHAR)
### Question:
What Player was picked after Round 2 with a Pick number larger than 33?
### Answer:
SELECT player FROM table_name_58 WHERE pick > 33 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_name_34 (alpha VARCHAR, ia64 VARCHAR)
### Question:
Which Alpha contains ia64 with discontinued 3.5-3.8 4.1-4.7?
### Answer:
SELECT alpha FROM table_name_34 WHERE ia64 = "discontinued 3.5-3.8 4.1-4.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_59 (games VARCHAR, medal VARCHAR, event VARCHAR)
### Question:
At which games did Tunisia win a bronze in the men's 1500 m freestyle?
### Answer:
SELECT games FROM table_name_59 WHERE medal = "bronze" AND event = "men's 1500 m freestyle" |
Below is an context that describes a sql 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 (date INTEGER, cores_per_die___dies_per_module VARCHAR, clock VARCHAR)
### Question:
What is the latest date with Cores per die / Dies per module of 2 / 1, and a Clock of 1.4-1.6ghz?
### Answer:
SELECT MAX(date) FROM table_name_64 WHERE cores_per_die___dies_per_module = "2 / 1" AND clock = "1.4-1.6ghz" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_25216791_3 (january_15_16 VARCHAR, august_21_22 VARCHAR)
### Question:
How many datas were recorded on January 15-16 if August 21-22 is 155?
### Answer:
SELECT COUNT(january_15_16) FROM table_25216791_3 WHERE august_21_22 = "155" |
Below is an context that describes a sql 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 (outcome VARCHAR, score_in_final VARCHAR)
### Question:
What was the outcome for the match that ended in a score of 5–7, 6–4, [10–7]?
### Answer:
SELECT outcome FROM table_name_84 WHERE score_in_final = "5–7, 6–4, [10–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_1990460_1 (division INTEGER, regular_season VARCHAR)
### Question:
What's the lowest division number of the 6th, Great Lakes season?
### Answer:
SELECT MIN(division) FROM table_1990460_1 WHERE regular_season = "6th, Great Lakes" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_90 (player VARCHAR, venue VARCHAR)
### Question:
What player was at Albion?
### Answer:
SELECT player FROM table_name_90 WHERE venue = "albion" |
Below is an context that describes a sql 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 (station VARCHAR, zone_2010 VARCHAR)
### Question:
Which Station has a Zone 2010 of 7?
### Answer:
SELECT station FROM table_name_65 WHERE zone_2010 = "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_18 (club VARCHAR, losing_bonus VARCHAR)
### Question:
Which Club has 1 Losing bonus?
### Answer:
SELECT club FROM table_name_18 WHERE losing_bonus = "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_46 (score VARCHAR, record VARCHAR)
### Question:
What is the score of the game that resulted in a 15-9 record?
### Answer:
SELECT score FROM table_name_46 WHERE record = "15-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_70 (year INTEGER, english_title VARCHAR)
### Question:
What is the Year of submission of the Film The Art of Crying?
### Answer:
SELECT MIN(year) FROM table_name_70 WHERE english_title = "the art of crying" |
Below is an context that describes a sql 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 (round INTEGER, overall VARCHAR, position VARCHAR)
### Question:
What is the lowest round for an offensive guard when the overall is smaller than 150?
### Answer:
SELECT MIN(round) FROM table_name_59 WHERE overall < 150 AND position = "offensive 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_13762472_4 (high_rebounds VARCHAR, high_assists VARCHAR)
### Question:
who had all the high rebounds when high assists is by dwyane wade (9)
### Answer:
SELECT high_rebounds FROM table_13762472_4 WHERE high_assists = "Dwyane Wade (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_73 (theme VARCHAR, week__number VARCHAR)
### Question:
What was the theme during the week # of top 24 (12 men)
### Answer:
SELECT theme FROM table_name_73 WHERE week__number = "top 24 (12 men)" |
Below is an context that describes a sql 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 (Id VARCHAR)
### Question:
What is 1997, when 1996 is "1R", when 1990 is "2R", and when 1991 is "F"?
### Answer:
SELECT 1997 FROM table_name_63 WHERE 1996 = "1r" AND 1990 = "2r" AND 1991 = "f" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_221315_3 (usaf_space_flights VARCHAR, max_speed__mph_ VARCHAR)
### Question:
What were all USAF space flights when the aximum speed was 3822?
### Answer:
SELECT usaf_space_flights FROM table_221315_3 WHERE max_speed__mph_ = 3822 |
Below is an context that describes a sql 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 (actor VARCHAR, character VARCHAR)
### Question:
What actor plays Marie-Rose De Putter?
### Answer:
SELECT actor FROM table_name_73 WHERE character = "marie-rose de putter" |
Subsets and Splits