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_54 (postseason VARCHAR, rank VARCHAR, win_percentage VARCHAR, games VARCHAR)
### Question:
What postseason has a win% between 0.40700000000000003 and 108 with a rank of 1?
### Answer:
SELECT postseason FROM table_name_54 WHERE win_percentage > 0.40700000000000003 AND games < 108 AND rank = 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_8 (report VARCHAR, date VARCHAR)
### Question:
What Report has the Date September 3, 2005?
### Answer:
SELECT report FROM table_name_8 WHERE date = "september 3, 2005" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_88 (competition VARCHAR, venue VARCHAR, opponent VARCHAR)
### Question:
When the venue is away and the opponents are the bracknell bees, what is the competition?
### Answer:
SELECT competition FROM table_name_88 WHERE venue = "away" AND opponent = "bracknell bees" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1601935_1 (archive VARCHAR, viewers__in_millions_ VARCHAR)
### Question:
What was the archive for episode with 6.6 million viewers?
### Answer:
SELECT archive FROM table_1601935_1 WHERE viewers__in_millions_ = "6.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_85 (swimsuit INTEGER, interview VARCHAR, evening_gown VARCHAR)
### Question:
What is the lowest swimsuit score where the contestant scored less than 8.56 in the interview and greater than 8.54 in the evening gown?
### Answer:
SELECT MIN(swimsuit) FROM table_name_85 WHERE interview < 8.56 AND evening_gown > 8.54 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_17359181_1 (points_2 INTEGER, goal_average_1 VARCHAR)
### Question:
What is the highest value for Points 2 when the goal average 1 is 0.65?
### Answer:
SELECT MAX(points_2) FROM table_17359181_1 WHERE goal_average_1 = "0.65" |
Below is an context that describes a sql 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 (game INTEGER, opponent VARCHAR)
### Question:
Can you tell me the highest Game that has the Opponent of atlanta hawks?
### Answer:
SELECT MAX(game) FROM table_name_56 WHERE opponent = "atlanta hawks" |
Below is an context that describes a sql 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 (venue VARCHAR, score VARCHAR)
### Question:
What is the Venue of the Competition with a Score of 2–0?
### Answer:
SELECT venue FROM table_name_89 WHERE score = "2–0" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_70 (finished INTEGER, post INTEGER)
### Question:
What is the lowest Finished, when Post is less than 2?
### Answer:
SELECT MIN(finished) FROM table_name_70 WHERE post < 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_44 (Id VARCHAR)
### Question:
What shows for 1991 when 2002 is 2R?
### Answer:
SELECT 1991 FROM table_name_44 WHERE 2002 = "2r" |
Below is an context that describes a sql 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 (week INTEGER, date VARCHAR)
### Question:
What was the attendance on October 27, 1968?
### Answer:
SELECT MAX(week) FROM table_name_9 WHERE date = "october 27, 1968" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_17413485_1 (graemes_guest VARCHAR, episode VARCHAR)
### Question:
what is the name of the graemest guest of episode 1x03
### Answer:
SELECT graemes_guest FROM table_17413485_1 WHERE episode = "1x03" |
Below is an context that describes a sql 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 (matches INTEGER, bonus_pts VARCHAR, total_points VARCHAR)
### Question:
What is the smallest number of matches with Bonus Pts of 19 and Total Points greater than 421?
### Answer:
SELECT MIN(matches) FROM table_name_36 WHERE bonus_pts = 19 AND total_points > 421 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_48 (home_team VARCHAR, venue VARCHAR)
### Question:
What's the Home teams Venue near Victoria Park?
### Answer:
SELECT home_team FROM table_name_48 WHERE venue = "victoria park" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_91 (catalog VARCHAR, region VARCHAR)
### Question:
What is the Catalog number for the region of Japan?
### Answer:
SELECT catalog FROM table_name_91 WHERE region = "japan" |
Below is an context that describes a sql 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, chassis VARCHAR, year VARCHAR)
### Question:
What are the highest points with a Chassis of gordini t16, and a Year smaller than 1954?
### Answer:
SELECT MAX(points) FROM table_name_41 WHERE chassis = "gordini t16" AND year < 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_name_83 (pop_dens VARCHAR, population INTEGER)
### Question:
What is the population density of the area with a population larger than 92,719?
### Answer:
SELECT COUNT(pop_dens) FROM table_name_83 WHERE population > 92 OFFSET 719 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_13759592_2 (founded VARCHAR, location VARCHAR)
### Question:
What year was Kirkland founded?
### Answer:
SELECT founded FROM table_13759592_2 WHERE location = "Kirkland" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_88 (points INTEGER, chassis VARCHAR)
### Question:
What is the total sum of points of entrants with a reynard 92d chassis?
### Answer:
SELECT SUM(points) FROM table_name_88 WHERE chassis = "reynard 92d" |
Below is an context that describes a sql 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 (code__iata_icao_ VARCHAR)
### Question:
What is the average in 2010 of the team with a code of (IATA/ICAO) or cra/lrcv?
### Answer:
SELECT 2010 FROM table_name_20 WHERE code__iata_icao_ = "cra/lrcv" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1439096_1 (title VARCHAR, original_air_date__atv_ VARCHAR)
### Question:
What is the title of the episode with the original air date of 28 September 1969?
### Answer:
SELECT title FROM table_1439096_1 WHERE original_air_date__atv_ = "28 September 1969" |
Below is an context that describes a sql 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 (week INTEGER, date VARCHAR)
### Question:
What week had a game that was played on November 11, 1962?
### Answer:
SELECT AVG(week) FROM table_name_86 WHERE date = "november 11, 1962" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22171978_1 (school_colors VARCHAR, location VARCHAR)
### Question:
How many entries are shown for school colors for the location of naga , camarines sur?
### Answer:
SELECT COUNT(school_colors) FROM table_22171978_1 WHERE location = "Naga , Camarines Sur" |
Below is an context that describes a sql 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 (frequency VARCHAR, branding VARCHAR)
### Question:
Which frequency belongs to the beat branding?
### Answer:
SELECT frequency FROM table_name_58 WHERE branding = "the beat" |
Below is an context that describes a 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 (chairman VARCHAR, captain VARCHAR)
### Question:
Who is the chairman when teh captain is fawzi bashir?
### Answer:
SELECT chairman FROM table_27631756_2 WHERE captain = "Fawzi Bashir" |
Below is an context that describes a sql 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 (wins INTEGER, points VARCHAR, draws VARCHAR, club VARCHAR)
### Question:
What is the highest number of wins for club Cd Orense, with points greater than 36 and more than 4 draws?
### Answer:
SELECT MAX(wins) FROM table_name_82 WHERE draws > 4 AND club = "cd orense" AND points > 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_45 (north VARCHAR, south VARCHAR)
### Question:
What is the north with sb rosenheim as the south?
### Answer:
SELECT north FROM table_name_45 WHERE south = "sb rosenheim" |
Below is an context that describes a sql 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 (name VARCHAR, spouse VARCHAR)
### Question:
Which member of house of Habsburg-Lorraine had the spouse Charles II?
### Answer:
SELECT name FROM table_name_40 WHERE spouse = "charles ii" |
Below is an context that describes a sql 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 (streak VARCHAR, location_attendance VARCHAR, score VARCHAR)
### Question:
which Streak has a Location/Attendance of staples center, and a Score of 67–89?
### Answer:
SELECT streak FROM table_name_1 WHERE location_attendance = "staples center" AND score = "67–89" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1341586_39 (district VARCHAR, first_elected VARCHAR)
### Question:
what's the district with first elected being 1972
### Answer:
SELECT district FROM table_1341586_39 WHERE first_elected = 1972 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_33 (year INTEGER, pts VARCHAR)
### Question:
What is the earliest year with 16 points?
### Answer:
SELECT MIN(year) FROM table_name_33 WHERE pts = "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_29 (score VARCHAR, tie_no VARCHAR)
### Question:
What is the score when the tie is 9?
### Answer:
SELECT score FROM table_name_29 WHERE tie_no = "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_24901152_4 (championship VARCHAR, score VARCHAR)
### Question:
Which championship was the score 6–4, 5–7, 6–2?
### Answer:
SELECT championship FROM table_24901152_4 WHERE score = "6–4, 5–7, 6–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_97 (date VARCHAR, type VARCHAR, round VARCHAR)
### Question:
When has a Type of tko, and a Round of 1 (6)
### Answer:
SELECT date FROM table_name_97 WHERE type = "tko" AND round = "1 (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_37 (opponent VARCHAR, record VARCHAR)
### Question:
Who was the opponent when the Maroons record was 11–4–1?
### Answer:
SELECT opponent FROM table_name_37 WHERE record = "11–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_89 (name VARCHAR, snatch VARCHAR, bodyweight VARCHAR, total__kg_ VARCHAR, clean_ VARCHAR, _jerk VARCHAR)
### Question:
Which name had a bodyweight bigger than 89.64, a total (kg) bigger than 310, a clean and jerk less than 207.5, and a snatch that is bigger than 165?
### Answer:
SELECT name FROM table_name_89 WHERE bodyweight > 89.64 AND total__kg_ > 310 AND clean_ & _jerk < 207.5 AND snatch > 165 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1590652_4 (no INTEGER, tournament VARCHAR)
### Question:
Name the most number when tournament is madrid masters
### Answer:
SELECT MAX(no) FROM table_1590652_4 WHERE tournament = "Madrid Masters" |
Below is an context that describes a sql 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 (year_made VARCHAR, wheel_arrangement VARCHAR)
### Question:
What is the sum number of years where the wheel arrangement of 0-4-0t?
### Answer:
SELECT COUNT(year_made) FROM table_name_18 WHERE wheel_arrangement = "0-4-0t" |
Below is an context that describes a sql 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, record VARCHAR)
### Question:
When the team had their record of 16–14, what was the total attendance?
### Answer:
SELECT COUNT(attendance) FROM table_name_74 WHERE record = "16–14" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_72 (year VARCHAR, points INTEGER)
### Question:
In which year were the points more than 0?
### Answer:
SELECT year FROM table_name_72 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_32 (score VARCHAR, game VARCHAR)
### Question:
What was the score of Game 13?
### Answer:
SELECT score FROM table_name_32 WHERE game = "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_27132791_3 (pro_team VARCHAR, position VARCHAR, nfl_team VARCHAR)
### Question:
If the NFL team is the Houston Oilers and the position is DT, who is the Pro team?
### Answer:
SELECT pro_team FROM table_27132791_3 WHERE position = "DT" AND nfl_team = "Houston Oilers" |
Below is an context that describes a sql 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 (new_council VARCHAR, previous_council VARCHAR, seats_up_for_election VARCHAR)
### Question:
Which number of New Councils had a previous council number of 19 and the seats up for election were bigger than 6?
### Answer:
SELECT COUNT(new_council) FROM table_name_14 WHERE previous_council = 19 AND seats_up_for_election < 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_42 (lane INTEGER, rank VARCHAR, nationality VARCHAR)
### Question:
What is the highest lane for the poland swimmer who ranked under 6?
### Answer:
SELECT MAX(lane) FROM table_name_42 WHERE rank < 6 AND nationality = "poland" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_15780718_9 (record VARCHAR, team VARCHAR)
### Question:
What is the Raptors' record against New Jersey?
### Answer:
SELECT record FROM table_15780718_9 WHERE team = "New Jersey" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_26448179_3 (no_in_season INTEGER, production_code VARCHAR)
### Question:
What season number in the season has production code 210?
### Answer:
SELECT MIN(no_in_season) FROM table_26448179_3 WHERE production_code = "210" |
Below is an context that describes a sql 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 (school_club_team VARCHAR, overall VARCHAR)
### Question:
What School or Club team has an overall score of 21?
### Answer:
SELECT school_club_team FROM table_name_15 WHERE overall = 21 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_86 (transfer_fee VARCHAR, name VARCHAR)
### Question:
What is the transfer fee for Paolo Vanoli?
### Answer:
SELECT transfer_fee FROM table_name_86 WHERE name = "paolo vanoli" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_92 (year_began VARCHAR, userpics_paid VARCHAR, userpics_free VARCHAR)
### Question:
What is the year began for the site with free userpics cost of $1 and a userpics paid value of N/A?
### Answer:
SELECT year_began FROM table_name_92 WHERE userpics_paid = "n/a" AND userpics_free = "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_32 (tournament VARCHAR)
### Question:
What tournament shows 2013 as 2r, and a 2010 as 1r?
### Answer:
SELECT tournament FROM table_name_32 WHERE 2013 = "2r" AND 2010 = "1r" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_5 (year INTEGER, music_director_s_ VARCHAR)
### Question:
WHich Year has a Music director(s) of anu malik?
### Answer:
SELECT SUM(year) FROM table_name_5 WHERE music_director_s_ = "anu malik" |
Below is an context that describes a sql 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 (gold VARCHAR, nation VARCHAR, rank VARCHAR)
### Question:
How many gold medals for germany (GER) having a rank less than 15?
### Answer:
SELECT COUNT(gold) FROM table_name_64 WHERE nation = "germany (ger)" AND rank < 15 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_72 (start_source VARCHAR, ended VARCHAR)
### Question:
What was the start source that ended on 4 May?
### Answer:
SELECT start_source FROM table_name_72 WHERE ended = "4 may" |
Below is an context that describes a sql 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 (points INTEGER, drawn VARCHAR, position VARCHAR, team VARCHAR)
### Question:
Which Points is the highest one that has a Position smaller than 4, and a Team of são paulo, and Drawn larger than 12?
### Answer:
SELECT MAX(points) FROM table_name_80 WHERE position < 4 AND team = "são paulo" AND drawn > 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_52 (score VARCHAR, opponent VARCHAR, game VARCHAR, february VARCHAR)
### Question:
What is the score of the game before 56 held after February 18 against the Chicago Black Hawks.
### Answer:
SELECT score FROM table_name_52 WHERE game < 56 AND february > 18 AND opponent = "chicago black hawks" |
Below is an context that describes a sql 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 (country VARCHAR, score VARCHAR)
### Question:
What country did the player who scored 73-73-65=211 come from?
### Answer:
SELECT country FROM table_name_6 WHERE score = 73 - 73 - 65 = 211 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE Cartoon (Title VARCHAR, Directed_by VARCHAR)
### Question:
List all cartoon directed by "Ben Jones".
### Answer:
SELECT Title FROM Cartoon WHERE Directed_by = "Ben Jones" |
Below is an context that describes a sql 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 (score VARCHAR, player VARCHAR)
### Question:
What is Score, when Player is "Bob Murphy"?
### Answer:
SELECT score FROM table_name_9 WHERE player = "bob murphy" |
Below is an context that describes a sql 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 (goals_for INTEGER, draws VARCHAR, played VARCHAR)
### Question:
How many goals have more than 38 played and more than 9 draws?
### Answer:
SELECT SUM(goals_for) FROM table_name_5 WHERE draws > 9 AND played > 38 |
Below is an context that describes a sql 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 (outgoing_manager VARCHAR, team VARCHAR)
### Question:
Who was the outgoing manager for the team, necaxa?
### Answer:
SELECT outgoing_manager FROM table_name_28 WHERE team = "necaxa" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11545282_5 (player VARCHAR, years_for_jazz VARCHAR)
### Question:
Which player played the years for Jazz in 1995-2000, 2004-05
### Answer:
SELECT player FROM table_11545282_5 WHERE years_for_jazz = "1995-2000, 2004-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_name_94 (against VARCHAR, team VARCHAR, position VARCHAR)
### Question:
What is the Total againsts for the Sant'Anna team with a position number greater than 10?
### Answer:
SELECT COUNT(against) FROM table_name_94 WHERE team = "sant'anna" AND position > 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_94 (series INTEGER, premiere VARCHAR, episodes VARCHAR)
### Question:
Which season premiered on 29 October 1990 and had more than 6 episodes?
### Answer:
SELECT MAX(series) FROM table_name_94 WHERE premiere = "29 october 1990" AND episodes > 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_21062353_1 (opponent VARCHAR, game VARCHAR)
### Question:
Who were the the opponents of the Wildcats for game 8 of the season?
### Answer:
SELECT opponent FROM table_21062353_1 WHERE game = 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_37 (population INTEGER, median_family_income VARCHAR, number_of_households VARCHAR)
### Question:
Which Population is the lowest one that has a Median family income of $74,905, and a Number of households smaller than 145,790?
### Answer:
SELECT MIN(population) FROM table_name_37 WHERE median_family_income = "$74,905" AND number_of_households < 145 OFFSET 790 |
Below is an context that describes a sql 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 (attendance INTEGER, week INTEGER)
### Question:
What is the average attendance after week 16?
### Answer:
SELECT AVG(attendance) FROM table_name_10 WHERE week > 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_19210115_1 (location VARCHAR, nickname VARCHAR)
### Question:
Where is the University that is also called Owls?
### Answer:
SELECT location FROM table_19210115_1 WHERE nickname = "Owls" |
Below is an context that describes a sql 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 (season VARCHAR, against VARCHAR)
### Question:
Which season did not qualify for UEFA competitions?
### Answer:
SELECT season FROM table_name_70 WHERE against = "did not qualify for uefa competitions" |
Below is an context that describes a sql 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 (competition VARCHAR, venue VARCHAR)
### Question:
Which competition was in Dubai?
### Answer:
SELECT competition FROM table_name_80 WHERE venue = "dubai" |
Below is an context that describes a sql 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 (authority VARCHAR, roll VARCHAR)
### Question:
Which is the Authority that has a Roll of 70?
### Answer:
SELECT authority FROM table_name_4 WHERE roll = "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_94 (census_ranking VARCHAR, area_km_2 VARCHAR, official_name VARCHAR)
### Question:
Which Census Ranking has an Area km 2 larger than 753.06, and an Official Name of stanley?
### Answer:
SELECT census_ranking FROM table_name_94 WHERE area_km_2 > 753.06 AND official_name = "stanley" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE Payments (Payment_Method_Code VARCHAR, Date_Payment_Made VARCHAR, Amount_Payment VARCHAR)
### Question:
List the method, date and amount of all the payments, in ascending order of date.
### Answer:
SELECT Payment_Method_Code, Date_Payment_Made, Amount_Payment FROM Payments ORDER BY Date_Payment_Made |
Below is an context that describes a sql 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 (opponent VARCHAR, date VARCHAR)
### Question:
Which Opponent is on april 28?
### Answer:
SELECT opponent FROM table_name_19 WHERE date = "april 28" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_11 (result VARCHAR, date VARCHAR)
### Question:
What was the results on September 24, 1995?
### Answer:
SELECT result FROM table_name_11 WHERE date = "september 24, 1995" |
Below is an context that describes a sql 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 (player VARCHAR, college VARCHAR)
### Question:
Which player has a College of arizona?
### Answer:
SELECT player FROM table_name_83 WHERE college = "arizona" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27487310_5 (name VARCHAR, host_s_ VARCHAR)
### Question:
What is the name of the series with the unknown host?
### Answer:
SELECT name FROM table_27487310_5 WHERE host_s_ = "unknown" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27913160_3 (driver VARCHAR, round VARCHAR)
### Question:
Who was the driver in round 4?
### Answer:
SELECT driver FROM table_27913160_3 WHERE round = 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_19704392_1 (modified_hp VARCHAR, standard_torque__lb_ft_ VARCHAR)
### Question:
When the standard torque (lb/ft) is 11.53 how much does more is the modified hp?
### Answer:
SELECT modified_hp FROM table_19704392_1 WHERE standard_torque__lb_ft_ = "11.53" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_32 (record_company VARCHAR, conductor VARCHAR)
### Question:
What record company has robert craft conducting?
### Answer:
SELECT record_company FROM table_name_32 WHERE conductor = "robert craft" |
Below is an context that describes a sql 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 (worldwide_gross VARCHAR, rank VARCHAR)
### Question:
What is the Worldwide Gross of the Film with a Rank of 3?
### Answer:
SELECT worldwide_gross FROM table_name_38 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_17340355_9 (record VARCHAR, date VARCHAR)
### Question:
After the March 15 game, what was the team's record?
### Answer:
SELECT record FROM table_17340355_9 WHERE date = "March 15" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12146637_1 (episode_title VARCHAR, writer_s_ VARCHAR)
### Question:
What is the name of the episode written by Sheila Lawrence & Henry Alonso Myers?
### Answer:
SELECT episode_title FROM table_12146637_1 WHERE writer_s_ = "Sheila Lawrence & Henry Alonso Myers" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_14058433_5 (won VARCHAR, points_for VARCHAR)
### Question:
what's the won with points for being 596
### Answer:
SELECT won FROM table_14058433_5 WHERE points_for = "596" |
Below is an context that describes a sql 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 (score VARCHAR, player VARCHAR)
### Question:
What was gary player's score?
### Answer:
SELECT score FROM table_name_25 WHERE player = "gary player" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_11 (hometown VARCHAR, player VARCHAR)
### Question:
Which hometown is the played Dajuan Wagner from?
### Answer:
SELECT hometown FROM table_name_11 WHERE player = "dajuan wagner" |
Below is an context that describes a sql 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 (winning__percentage VARCHAR, years VARCHAR)
### Question:
what is the winning % for the years 2006-11?
### Answer:
SELECT winning__percentage FROM table_name_98 WHERE years = "2006-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_45 (rank INTEGER, population_density___km_2__ VARCHAR, _percentage_growth__2006_11_ VARCHAR)
### Question:
What was the highest rank of an area with a population density larger than 5.7 and a 2006–2011 percentage growth of 5.7%?
### Answer:
SELECT MAX(rank) FROM table_name_45 WHERE population_density___km_2__ > 5.7 AND _percentage_growth__2006_11_ = "5.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_27776266_1 (title VARCHAR, production_code VARCHAR)
### Question:
What was the title of the episode with a production code of 3x6404?
### Answer:
SELECT title FROM table_27776266_1 WHERE production_code = "3X6404" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_11 (total_matches INTEGER, points_won VARCHAR, year VARCHAR)
### Question:
Can you tell me the lowest Total natches that has the Points won of 3, and the Year of 1994?
### Answer:
SELECT MIN(total_matches) FROM table_name_11 WHERE points_won = 3 AND year = "1994" |
Below is an context that describes a sql 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 (part_4 VARCHAR, part_2 VARCHAR)
### Question:
What is Part 4, when Part 2 is "hljóp"?
### Answer:
SELECT part_4 FROM table_name_65 WHERE part_2 = "hljó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_48 (date VARCHAR, label VARCHAR)
### Question:
What is Date, when Label is Jugoton?
### Answer:
SELECT date FROM table_name_48 WHERE label = "jugoton" |
Below is an context that describes a sql 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 (opponent_in_the_final VARCHAR, year VARCHAR)
### Question:
Name the opponent in the final for year of 1888
### Answer:
SELECT opponent_in_the_final FROM table_name_36 WHERE year = 1888 |
Below is an context that describes a sql 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 (year_built INTEGER, sub_parish__sogn_ VARCHAR)
### Question:
what is the year built of kyrkjebø?
### Answer:
SELECT AVG(year_built) FROM table_name_20 WHERE sub_parish__sogn_ = "kyrkjebø" |
Below is an context that describes a sql 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 (round INTEGER, player VARCHAR, pick VARCHAR)
### Question:
WHAT IS THE HIGHEST ROUND FOR MIKE TAYLOR, WITH PICK HIGHER THAN 55?
### Answer:
SELECT MAX(round) FROM table_name_86 WHERE player = "mike taylor" AND pick > 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_93 (attendance VARCHAR, opponent VARCHAR)
### Question:
What was the attendance when they played the New Orleans Saints?
### Answer:
SELECT attendance FROM table_name_93 WHERE opponent = "new orleans saints" |
Below is an context that describes a sql 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 (overall_rank INTEGER, lane VARCHAR, time VARCHAR)
### Question:
Tell me the highest overall rank for lane less than 8 and time less than 27.16
### Answer:
SELECT MAX(overall_rank) FROM table_name_37 WHERE lane < 8 AND time < 27.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 (deaths VARCHAR, name VARCHAR)
### Question:
How many deaths did eseta cause?
### Answer:
SELECT deaths FROM table_name_34 WHERE name = "eseta" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22962745_35 (no INTEGER, against VARCHAR)
### Question:
What is the number when against is rajasthan royals?
### Answer:
SELECT MAX(no) FROM table_22962745_35 WHERE against = "Rajasthan Royals" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_14948647_1 (total_points VARCHAR, oberstdorf__rk_ VARCHAR)
### Question:
How many points in total were scored by the player whose Oberstdork score and rank were 252.6 (11)?
### Answer:
SELECT total_points FROM table_14948647_1 WHERE oberstdorf__rk_ = "252.6 (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_71 (studio VARCHAR, rank VARCHAR, director VARCHAR)
### Question:
Which Studio has a Rank smaller than 3, and a Director of adrian lyne?
### Answer:
SELECT studio FROM table_name_71 WHERE rank < 3 AND director = "adrian lyne" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.