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_75 (venue VARCHAR, away_team VARCHAR)
### Question:
Where did Geelong play as the away team?
### Answer:
SELECT venue FROM table_name_75 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_65 (touchdowns VARCHAR, yds_att VARCHAR, net_yds VARCHAR, long VARCHAR)
### Question:
How many touchdowns did the player with less than 4495 yards, long of less than 80, and yds/att less than 5.5 have?
### Answer:
SELECT COUNT(touchdowns) FROM table_name_65 WHERE net_yds < 4495 AND long < 80 AND yds_att < 5.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_96 (rank VARCHAR, team VARCHAR, points VARCHAR)
### Question:
Which rank has a team of Suzuki with under 16 points?
### Answer:
SELECT rank FROM table_name_96 WHERE team = "suzuki" AND points < 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_22 (entrant VARCHAR, rank VARCHAR)
### Question:
Which entrant has 25th as the rank?
### Answer:
SELECT entrant FROM table_name_22 WHERE rank = "25th" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_23 (cfl_team VARCHAR, player VARCHAR)
### Question:
which CFL team has a player called Peter Hogarth?
### Answer:
SELECT cfl_team FROM table_name_23 WHERE player = "peter hogarth" |
Below is an context that describes a sql 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 (driver VARCHAR, entrant VARCHAR)
### Question:
Who is the drive for an Entrant of Scuderia Ambrosiana?
### Answer:
SELECT driver FROM table_name_65 WHERE entrant = "scuderia ambrosiana" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE party (party_name VARCHAR, party_id VARCHAR); CREATE TABLE Member (member_name VARCHAR, party_id VARCHAR)
### Question:
List member names and their party names.
### Answer:
SELECT T1.member_name, T2.party_name FROM Member AS T1 JOIN party AS T2 ON T1.party_id = T2.party_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_20107762_1 (team VARCHAR, ft_percentage VARCHAR)
### Question:
Who is the team with the ft% of 77.6?
### Answer:
SELECT team FROM table_20107762_1 WHERE ft_percentage = "77.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 matches (YEAR VARCHAR)
### Question:
Find the number of matches happened in each year.
### Answer:
SELECT COUNT(*), YEAR FROM matches GROUP BY YEAR |
Below is an context that describes a sql 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 (event VARCHAR, opponent VARCHAR)
### Question:
What was the event for vinny magalhães?
### Answer:
SELECT event FROM table_name_74 WHERE opponent = "vinny magalhães" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_20278716_2 (county VARCHAR, others__number VARCHAR)
### Question:
What county had 915 third party voters?
### Answer:
SELECT county FROM table_20278716_2 WHERE others__number = 915 |
Below is an context that describes a sql 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 (iata VARCHAR, icao VARCHAR)
### Question:
Name the IATA of wmkk
### Answer:
SELECT iata FROM table_name_20 WHERE icao = "wmkk" |
Below is an context that describes a sql 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 (attendance VARCHAR, week VARCHAR)
### Question:
What was the attendance for the week 1 game?
### Answer:
SELECT attendance FROM table_name_9 WHERE week = 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_27700375_8 (record VARCHAR, high_assists VARCHAR)
### Question:
How many record data were written when Devin Harris (6) was High Assists?
### Answer:
SELECT COUNT(record) FROM table_27700375_8 WHERE high_assists = "Devin Harris (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_28 (tournament VARCHAR)
### Question:
What is the 2010 value for the Australian Open?
### Answer:
SELECT 2010 FROM table_name_28 WHERE tournament = "australian open" |
Below is an context that describes a sql 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 (away_team VARCHAR, home_team VARCHAR)
### Question:
Waht was the away team when the home team is colchester united?
### Answer:
SELECT away_team FROM table_name_95 WHERE home_team = "colchester united" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2701851_3 (title VARCHAR, production_code VARCHAR)
### Question:
how many times is the production code is 201a?
### Answer:
SELECT COUNT(title) FROM table_2701851_3 WHERE production_code = "201a" |
Below is an context that describes a sql 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:
Name the tournament for 2009 2r
### Answer:
SELECT tournament FROM table_name_32 WHERE 2009 = "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_14 (name VARCHAR, event VARCHAR)
### Question:
Who set the record in the 500 metres event?
### Answer:
SELECT name FROM table_name_14 WHERE event = "500 metres" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_14747043_1 (class_a VARCHAR, class_aA VARCHAR, Marion VARCHAR)
### Question:
Which is the class A when Marion was the class AA
### Answer:
SELECT class_a FROM table_14747043_1 WHERE class_aA = Marion |
Below is an context that describes a 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_2 (title VARCHAR, written_by VARCHAR)
### Question:
How many episode were written by Brett Conrad?
### Answer:
SELECT COUNT(title) FROM table_25740548_2 WHERE written_by = "Brett Conrad" |
Below is an context that describes a sql 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 (team VARCHAR, points VARCHAR, games VARCHAR)
### Question:
What team scored more than 572 points and had more than 29 games?
### Answer:
SELECT team FROM table_name_44 WHERE points > 572 AND games > 29 |
Below is an context that describes a sql 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 (week INTEGER, attendance VARCHAR)
### Question:
Which week had an attendance of 55,158?
### Answer:
SELECT SUM(week) FROM table_name_42 WHERE attendance = "55,158" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_90 (year_s__of_manufacture VARCHAR, quantity VARCHAR, type VARCHAR)
### Question:
Which Year(s) of manufacture has a Quantity larger than 39, and a Type of 1′c1′ h2t?
### Answer:
SELECT year_s__of_manufacture FROM table_name_90 WHERE quantity > 39 AND type = "1′c1′ h2t" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12896884_1 (first_season INTEGER, institution VARCHAR)
### Question:
What year did University of Saskatchewan have their first season?
### Answer:
SELECT MAX(first_season) FROM table_12896884_1 WHERE institution = "University of Saskatchewan" |
Below is an context that describes a sql 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 (driver VARCHAR, chassis VARCHAR, rounds VARCHAR)
### Question:
What driver went 14 rounds with a 193 Chassis?
### Answer:
SELECT driver FROM table_name_55 WHERE chassis = "193" AND rounds = "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_23211041_5 (game VARCHAR, team VARCHAR)
### Question:
How many games were played against houston?
### Answer:
SELECT COUNT(game) FROM table_23211041_5 WHERE team = "Houston" |
Below is an context that describes a sql 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 (winner VARCHAR, team VARCHAR, circuit VARCHAR)
### Question:
What is Winner, when Team is "R.J.MacArthur Onslow", and when Circuit is "Oran Park Raceway"?
### Answer:
SELECT winner FROM table_name_29 WHERE team = "r.j.macarthur onslow" AND circuit = "oran park raceway" |
Below is an context that describes a sql 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 (ont VARCHAR, nb VARCHAR, normal_total VARCHAR)
### Question:
Name the Ont of N.B. of 10 and normal total of 77
### Answer:
SELECT ont FROM table_name_5 WHERE nb = "10" AND normal_total = "77" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_206419_3 (shareholder VARCHAR, percent_of_capital VARCHAR)
### Question:
What shareholder has 3.63 percent of capital?
### Answer:
SELECT shareholder FROM table_206419_3 WHERE percent_of_capital = "3.63" |
Below is an context that describes a sql 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 (current_club VARCHAR, player VARCHAR, first_team_appearances VARCHAR, position VARCHAR)
### Question:
What is the name of the club that has ongoing first-team appearances, a midfielder, and whose player is Samir Carruthers?
### Answer:
SELECT current_club FROM table_name_28 WHERE first_team_appearances = "ongoing" AND position = "midfielder" AND player = "samir carruthers" |
Below is an context that describes a sql 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 (party VARCHAR, office VARCHAR)
### Question:
Which Party has a Office of majority floor leader
### Answer:
SELECT party FROM table_name_46 WHERE office = "majority floor leader" |
Below is an context that describes a sql 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 (ra___j2000__ VARCHAR, name VARCHAR)
### Question:
Which R.A. (J2000) has a Name of ngc 1515?
### Answer:
SELECT ra___j2000__ FROM table_name_64 WHERE name = "ngc 1515" |
Below is an context that describes a sql 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 (pali VARCHAR, english VARCHAR)
### Question:
Which Pali has an English of meditative concentration?
### Answer:
SELECT pali FROM table_name_74 WHERE english = "meditative concentration" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_76 (bsu_head_coach VARCHAR, opponent VARCHAR, year VARCHAR)
### Question:
Who is the BSU head coach of the tournament after 1994 with louisville as the opponent?
### Answer:
SELECT bsu_head_coach FROM table_name_76 WHERE opponent = "louisville" 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_55 (declination___j2000__ VARCHAR, right_ascension___j2000__ VARCHAR, constellation VARCHAR, apparent_magnitude VARCHAR)
### Question:
Tell me the declination for consellaion of ophiuchus and apparent magnitude less than 8.6 with right ascension of 16h47m14.5s
### Answer:
SELECT declination___j2000__ FROM table_name_55 WHERE constellation = "ophiuchus" AND apparent_magnitude < 8.6 AND right_ascension___j2000__ = "16h47m14.5s" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_16010376_1 (muzzle_energy VARCHAR, cartridge VARCHAR)
### Question:
When using a .375 Winchester, what is the muzzle energy?
### Answer:
SELECT muzzle_energy FROM table_16010376_1 WHERE cartridge = ".375 Winchester" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_19412902_1 (pos VARCHAR, member_association VARCHAR)
### Question:
how many posiitions did saudi arabia land on
### Answer:
SELECT COUNT(pos) FROM table_19412902_1 WHERE member_association = "Saudi Arabia" |
Below is an context that describes a sql 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 (town VARCHAR, population_rank VARCHAR, municipality VARCHAR, population__2001_ VARCHAR)
### Question:
What town is from the molėtai district municipality and has a population rank of 187 and a population less than 470 in 2001?
### Answer:
SELECT town FROM table_name_81 WHERE municipality = "molėtai district municipality" AND population__2001_ < 470 AND population_rank = 187 |
Below is an context that describes a sql 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 (visiting_team VARCHAR, stadium VARCHAR)
### Question:
Who was the visiting team at the matchup at the RCA Dome?
### Answer:
SELECT visiting_team FROM table_name_99 WHERE stadium = "rca dome" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_24 (lane INTEGER, nationality VARCHAR, split__50m_ VARCHAR)
### Question:
What is the total of lane(s) for swimmers from Sweden with a 50m split of faster than 26.25?
### Answer:
SELECT SUM(lane) FROM table_name_24 WHERE nationality = "sweden" AND split__50m_ < 26.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_70 (points_against VARCHAR, points_diff VARCHAR)
### Question:
What is points sgsinst when points diff is +96?
### Answer:
SELECT points_against FROM table_name_70 WHERE points_diff = "+96" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_7 (player VARCHAR, round VARCHAR, nationality VARCHAR, position VARCHAR)
### Question:
Which Player has United States as Nationality, forward as Position and a greater than 5 Round?
### Answer:
SELECT player FROM table_name_7 WHERE nationality = "united states" AND position = "forward" AND round > 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_12 (reg_season VARCHAR, year VARCHAR)
### Question:
What was the Rampage's regular season in 1997?
### Answer:
SELECT reg_season FROM table_name_12 WHERE year = 1997 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_23 (director VARCHAR, original_title VARCHAR)
### Question:
what is the director of la ronde
### Answer:
SELECT director FROM table_name_23 WHERE original_title = "la ronde" |
Below is an context that describes a sql 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, name_of_system VARCHAR, traction_type VARCHAR)
### Question:
At what location did the event that used electric traction and system name ATM (1880–1911) GETA (1911–1944) occur?
### Answer:
SELECT location FROM table_name_5 WHERE name_of_system = "atm (1880–1911) geta (1911–1944)" AND traction_type = "electric" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_262505_1 (founded VARCHAR, current_conference VARCHAR)
### Question:
Name the founded for school closed in 2005
### Answer:
SELECT founded FROM table_262505_1 WHERE current_conference = "school closed in 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_14253123_1 (population__2010___rank_ VARCHAR, area_sq_mi__km_2____rank_ VARCHAR)
### Question:
When the area sq mi (km 2 ) (rank) is sqmi (km2) (5) what is the population (2010) (rank)?
### Answer:
SELECT population__2010___rank_ FROM table_14253123_1 WHERE area_sq_mi__km_2____rank_ = "sqmi (km2) (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_15624586_2 (uranium_required_2006_08 VARCHAR, country VARCHAR)
### Question:
How much uranium did Russia use in 2006 to 2008?
### Answer:
SELECT uranium_required_2006_08 FROM table_15624586_2 WHERE country = "Russia" |
Below is an context that describes a sql 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 (opponent VARCHAR, week VARCHAR)
### Question:
Who was the opponent in week 6?
### Answer:
SELECT opponent FROM table_name_89 WHERE week = 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_51 (date VARCHAR, opponent VARCHAR)
### Question:
What day did they play cambridge united?
### Answer:
SELECT date FROM table_name_51 WHERE opponent = "cambridge united" |
Below is an context that describes a sql 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 (home_team VARCHAR, away_team VARCHAR)
### Question:
What is the Home team with an Away team that is oxford united?
### Answer:
SELECT home_team FROM table_name_87 WHERE away_team = "oxford united" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_15187735_8 (segment_a VARCHAR, series_ep VARCHAR)
### Question:
Name the segment a for 8-08
### Answer:
SELECT segment_a FROM table_15187735_8 WHERE series_ep = "8-08" |
Below is an context that describes a sql 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 (number VARCHAR, inning VARCHAR, length VARCHAR)
### Question:
What number home run was in the 8th inning and went 410'?
### Answer:
SELECT number FROM table_name_3 WHERE inning = "8th" AND length = "410'" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE Has_allergy (allergy VARCHAR); CREATE TABLE Allergy_type (allergy VARCHAR, allergytype VARCHAR)
### Question:
How many students have a food allergy?
### Answer:
SELECT COUNT(*) FROM Has_allergy AS T1 JOIN Allergy_type AS T2 ON T1.allergy = T2.allergy WHERE T2.allergytype = "food" |
Below is an context that describes a sql 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 (nationality VARCHAR, player VARCHAR)
### Question:
Which Nationality has a Player of rudy poeschek?
### Answer:
SELECT nationality FROM table_name_51 WHERE player = "rudy poeschek" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_15430606_1 (no_disc INTEGER, directed_by VARCHAR)
### Question:
Name the maximum number of disc for bill gereghty
### Answer:
SELECT MAX(no_disc) FROM table_15430606_1 WHERE directed_by = "Bill Gereghty" |
Below is an context that describes a sql 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 (streak VARCHAR, date VARCHAR)
### Question:
Which Streak has a Date of january 7?
### Answer:
SELECT streak FROM table_name_53 WHERE date = "january 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_81 (pastoral_region VARCHAR, episcopal_vicar VARCHAR)
### Question:
What Pastoral Region has Episcopal Vicar Robert Francis Hennessey?
### Answer:
SELECT pastoral_region FROM table_name_81 WHERE episcopal_vicar = "robert francis hennessey" |
Below is an context that describes a 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_5 (title VARCHAR, original_air_date VARCHAR)
### Question:
What is the name of the episode that aired originally on November 10, 1998?
### Answer:
SELECT title FROM table_228973_5 WHERE original_air_date = "November 10, 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_5 (total_dismissals INTEGER, tests VARCHAR, catches VARCHAR)
### Question:
What is the average dismissals of 83 test and catches less than 33?
### Answer:
SELECT AVG(total_dismissals) FROM table_name_5 WHERE tests = 83 AND catches < 33 |
Below is an context that describes a sql 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 (monounsaturated_fat VARCHAR, saturated_fat VARCHAR, polyunsaturated_fat VARCHAR, smoke_point VARCHAR, total_fat VARCHAR)
### Question:
What is the monounsaturated fat with a smoke point of °c (), a total fat of 100g, 11g of polyunsaturated fat, and 14g of saturated fat?
### Answer:
SELECT monounsaturated_fat FROM table_name_85 WHERE smoke_point = "°c ()" AND total_fat = "100g" AND polyunsaturated_fat = "11g" AND saturated_fat = "14g" |
Below is an context that describes a sql 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 (high_rebounds VARCHAR, date VARCHAR)
### Question:
What was the high rebounds from the date of April 14?
### Answer:
SELECT high_rebounds FROM table_name_29 WHERE date = "april 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_89 (location VARCHAR)
### Question:
Which Location has a Time of time?
### Answer:
SELECT location FROM table_name_89 WHERE "time" = "time" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1507852_5 (attribute VARCHAR, cancelable VARCHAR)
### Question:
what's the attribute with cancelable being yes
### Answer:
SELECT attribute FROM table_1507852_5 WHERE cancelable = "Yes" |
Below is an context that describes a sql 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 (mdt___6_utc_ VARCHAR, edt___4_utc_ VARCHAR, pdt___7_utc_ VARCHAR)
### Question:
What time is MDT when EDT is set and PDT is 6:00 a.m.?
### Answer:
SELECT mdt___6_utc_ FROM table_name_58 WHERE edt___4_utc_ = "set" AND pdt___7_utc_ = "6:00 a.m." |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_54 (away_team VARCHAR, venue VARCHAR)
### Question:
Which away team is based at glenferrie oval?
### Answer:
SELECT away_team FROM table_name_54 WHERE venue = "glenferrie 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_23 (film VARCHAR, category VARCHAR, lost_to VARCHAR)
### Question:
which Film has a Category of best actress – musical or comedy, and a Lost to of nicole kidman ( moulin rouge! )?
### Answer:
SELECT film FROM table_name_23 WHERE category = "best actress – musical or comedy" AND lost_to = "nicole kidman ( moulin rouge! )" |
Below is an context that describes a sql 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 (attendance INTEGER, result VARCHAR)
### Question:
What was the Attendance at the Game with a Result of w 21–7?
### Answer:
SELECT AVG(attendance) FROM table_name_71 WHERE result = "w 21–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_15 (notes VARCHAR, country VARCHAR)
### Question:
What are the notes for the athlete from South Africa?
### Answer:
SELECT notes FROM table_name_15 WHERE country = "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_2015453_1 (res VARCHAR, team__number2 VARCHAR)
### Question:
What was the res for the game against Payam?
### Answer:
SELECT res FROM table_2015453_1 WHERE team__number2 = "Payam" |
Below is an context that describes a sql 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 (stadium VARCHAR, result VARCHAR)
### Question:
What stadium was the game played at when the result was hunter mariners def. sheffield eagles?
### Answer:
SELECT stadium FROM table_name_43 WHERE result = "hunter mariners def. sheffield 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_39 (gnis_feature_id INTEGER, county VARCHAR)
### Question:
What is the lowest GNIS Feature ID from County of sheridan?
### Answer:
SELECT MIN(gnis_feature_id) FROM table_name_39 WHERE county = "sheridan" |
Below is an context that describes a sql 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 (telugu_తెలుగు VARCHAR, tamil_தமிழ் VARCHAR)
### Question:
Which Telugu తెలుగు has a Tamil தமிழ் of pūrāṭam பூராடம்?
### Answer:
SELECT telugu_తెలుగు FROM table_name_68 WHERE tamil_தமிழ் = "pūrāṭam பூராடம்" |
Below is an context that describes a sql 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 (starts INTEGER, tournament VARCHAR, wins VARCHAR)
### Question:
In the tournament of HSBC Champions, what was the sum of the Starts with Wins lower than 0?
### Answer:
SELECT SUM(starts) FROM table_name_52 WHERE tournament = "hsbc champions" AND wins < 0 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE train (Name VARCHAR, Arrival VARCHAR)
### Question:
What are the names and arrival times of trains?
### Answer:
SELECT Name, Arrival FROM train |
Below is an context that describes a sql 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 (high_rebounds VARCHAR, game VARCHAR, date VARCHAR)
### Question:
Who had the highest rebounds of the game with a game number higher than 65 on March 28?
### Answer:
SELECT high_rebounds FROM table_name_73 WHERE game > 65 AND date = "march 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_27 (school_club_team_country VARCHAR, years_for_rockets VARCHAR)
### Question:
Who is the school, club, team or country that the Rockets played for 1967-68?
### Answer:
SELECT school_club_team_country FROM table_name_27 WHERE years_for_rockets = "1967-68" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_20866024_2 (model_type VARCHAR, model_designation VARCHAR)
### Question:
What model type has 97100 model designation?
### Answer:
SELECT model_type FROM table_20866024_2 WHERE model_designation = "97100" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_14903999_1 (year INTEGER, mixed_doubles VARCHAR)
### Question:
What was the last year árni þór hallgrímsson drífa harðardóttir won mixed doubles
### Answer:
SELECT MAX(year) FROM table_14903999_1 WHERE mixed_doubles = "Árni Þór Hallgrímsson Drífa Harðardóttir" |
Below is an context that describes a sql 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 (record VARCHAR, date VARCHAR)
### Question:
What was the record on Feb 25?
### Answer:
SELECT record FROM table_name_83 WHERE date = "feb 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_48 (score_in_the_final VARCHAR, partner VARCHAR)
### Question:
What is Partner Tomas Behrend's Score in the final?
### Answer:
SELECT score_in_the_final FROM table_name_48 WHERE partner = "tomas behrend" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1952057_5 (afc_championships VARCHAR, playoff_berths VARCHAR)
### Question:
If the playoff berth is 17, what is the AFC championship number?
### Answer:
SELECT afc_championships FROM table_1952057_5 WHERE playoff_berths = 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_69 (hanzi VARCHAR, launch VARCHAR, name VARCHAR)
### Question:
What is the Hanzi of Phoenix Television Chinese that launched in 1996?
### Answer:
SELECT hanzi FROM table_name_69 WHERE launch = "1996" AND name = "phoenix television chinese" |
Below is an context that describes a sql 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 (ship VARCHAR, launched VARCHAR)
### Question:
Name the ship launched 29 may 1934
### Answer:
SELECT ship FROM table_name_22 WHERE launched = "29 may 1934" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_10812938_5 (cfl_team VARCHAR, college VARCHAR)
### Question:
What's the team of the player from St. Francis Xavier College?
### Answer:
SELECT cfl_team FROM table_10812938_5 WHERE college = "St. Francis Xavier" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_17 (d_41_√ VARCHAR, d_44_o VARCHAR)
### Question:
Name the D 41 √ with D 44 O of r 13
### Answer:
SELECT d_41_√ FROM table_name_17 WHERE d_44_o = "r 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_67 (location VARCHAR, result VARCHAR)
### Question:
Which Location has a result of L 31-52?
### Answer:
SELECT location FROM table_name_67 WHERE result = "l 31-52" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_43 (player VARCHAR, score VARCHAR)
### Question:
What player has a score of 69-68-68=205?
### Answer:
SELECT player FROM table_name_43 WHERE score = 69 - 68 - 68 = 205 |
Below is an context that describes a sql 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 (fleet_series__quantity_ VARCHAR, order_year VARCHAR, model VARCHAR)
### Question:
Which Fleet Series (Quantity) has an Order Year of 2010, and a Model of de40lfr?
### Answer:
SELECT fleet_series__quantity_ FROM table_name_60 WHERE order_year = "2010" AND model = "de40lfr" |
Below is an context that describes a sql 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 (crowd INTEGER, home_team VARCHAR)
### Question:
What is the average crowd size for the home team essendon?
### Answer:
SELECT AVG(crowd) FROM table_name_6 WHERE home_team = "essendon" |
Below is an context that describes a sql 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 (civil_liberties_2013 VARCHAR, political_rights_2011 VARCHAR, political_rights_2010 VARCHAR, civil_liberties_2012 VARCHAR)
### Question:
How many civil liberties 2013 values are associated with a 2010 political rights value of 6, civil liberties 2012 values over 5, and political rights 2011 under 6?
### Answer:
SELECT COUNT(civil_liberties_2013) FROM table_name_42 WHERE political_rights_2010 = 6 AND civil_liberties_2012 > 5 AND political_rights_2011 < 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_80 (viewers__m_ VARCHAR, rank__night_ VARCHAR, timeslot VARCHAR)
### Question:
What is the total number of Viewers with a Rank (Night) of n/a, and a Timeslot of 8:30 p.m.?
### Answer:
SELECT COUNT(viewers__m_) FROM table_name_80 WHERE rank__night_ = "n/a" AND timeslot = "8:30 p.m." |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_77 (regional_seats VARCHAR, party VARCHAR, total_seats VARCHAR)
### Question:
How many regional seats were there with the SNP party and where the number of total seats was bigger than 46?
### Answer:
SELECT COUNT(regional_seats) FROM table_name_77 WHERE party = "snp" AND total_seats > 46 |
Below is an context that describes a sql 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 (glyph INTEGER, hexadecimal VARCHAR, binary VARCHAR, octal VARCHAR)
### Question:
What is the sum of the glyph with a binary less than 111001, an octal less than 65, and a hexadecimal less than 30?
### Answer:
SELECT SUM(glyph) FROM table_name_96 WHERE binary < 111001 AND octal < 65 AND hexadecimal < 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_46 (other_ VARCHAR, c_ VARCHAR, fa_cup VARCHAR)
### Question:
With a FA Cup of 0 44 0 (0), the other [C] is listed as what?
### Answer:
SELECT other_[c_] FROM table_name_46 WHERE fa_cup = "0 44 0 (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_23 (fleet_number VARCHAR, model VARCHAR)
### Question:
What is the fleet number of Model Orion 01.507?
### Answer:
SELECT fleet_number FROM table_name_23 WHERE model = "orion 01.507" |
Below is an context that describes a sql 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 (country VARCHAR, value_in_usd VARCHAR, currency VARCHAR)
### Question:
Which country uses pound sterling with a value higher than 1.33 USD?
### Answer:
SELECT country FROM table_name_66 WHERE value_in_usd > 1.33 AND currency = "pound sterling" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_26301697_2 (represents VARCHAR, contestant VARCHAR)
### Question:
Name the total number of represents for clary sermina delgado cid
### Answer:
SELECT COUNT(represents) FROM table_26301697_2 WHERE contestant = "Clary Sermina Delgado Cid" |
Below is an context that describes a sql 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 (date VARCHAR, opponent VARCHAR)
### Question:
What day did Yugoslavia play Luxembourg?
### Answer:
SELECT date FROM table_name_56 WHERE opponent = "luxembourg" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.