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_23 (match_report VARCHAR, date VARCHAR)
### Question:
What is the match report from the game played on 28 february 2009?
### Answer:
SELECT match_report FROM table_name_23 WHERE date = "28 february 2009" |
Below is an context that describes a sql 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 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
### Question:
What is the Original title of Children of Sarajevo?
### Answer:
SELECT original_title FROM table_name_42 WHERE film_title_used_in_nomination = "children of sarajevo" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_49 (state VARCHAR, city VARCHAR, aam_accredited VARCHAR, astc_member VARCHAR)
### Question:
What is State, when AAM Accredited is No, when ASTC Member is No, and when City is Tulsa?
### Answer:
SELECT state FROM table_name_49 WHERE aam_accredited = "no" AND astc_member = "no" AND city = "tulsa" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_35 (game INTEGER, opponent VARCHAR)
### Question:
What is the lowest Game, when Opponent is "Boston Bruins"?
### Answer:
SELECT MIN(game) FROM table_name_35 WHERE opponent = "boston bruins" |
Below is an context that describes a sql 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 (notes VARCHAR, country VARCHAR)
### Question:
Poland has what notes?
### Answer:
SELECT notes FROM table_name_75 WHERE country = "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_name_66 (head_linesman VARCHAR, game VARCHAR)
### Question:
Who is the head linesman at game xxxv?
### Answer:
SELECT head_linesman FROM table_name_66 WHERE game = "xxxv" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2562572_44 (dominant_religion__2002_ VARCHAR, settlement VARCHAR)
### Question:
What was the dominant religion in 2002 in lokve?
### Answer:
SELECT dominant_religion__2002_ FROM table_2562572_44 WHERE settlement = "Lokve" |
Below is an context that describes a sql 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 (venue VARCHAR, away_team VARCHAR)
### Question:
Name the venue for geelong away team
### Answer:
SELECT venue FROM table_name_54 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_19897294_10 (location_s_ VARCHAR, family_families VARCHAR)
### Question:
In how many locations was the episode with the Bailey family filmed?
### Answer:
SELECT COUNT(location_s_) FROM table_19897294_10 WHERE family_families = "The Bailey Family" |
Below is an context that describes a sql 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 (crowd INTEGER, venue VARCHAR)
### Question:
What was the smallest crowd at junction oval?
### Answer:
SELECT MIN(crowd) FROM table_name_61 WHERE venue = "junction 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_89 (opponent VARCHAR, location VARCHAR)
### Question:
Who was the opposing team during a game in the Pontiac Silverdome?
### Answer:
SELECT opponent FROM table_name_89 WHERE location = "pontiac silverdome" |
Below is an context that describes a sql 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 (grid INTEGER, driver VARCHAR)
### Question:
What is the largest Grid with a Driver of piers courage?
### Answer:
SELECT MAX(grid) FROM table_name_31 WHERE driver = "piers courage" |
Below is an context that describes a sql 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 (best_actor VARCHAR, best_director VARCHAR)
### Question:
Which Best Actor has a Best Director of takeshi kitano for outrage beyond?
### Answer:
SELECT best_actor FROM table_name_44 WHERE best_director = "takeshi kitano for outrage beyond" |
Below is an context that describes a sql 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 (competition VARCHAR, score VARCHAR, goal VARCHAR)
### Question:
What is the Competition where the Score was 3–0, and the was Goal larger than 4?
### Answer:
SELECT competition FROM table_name_59 WHERE score = "3–0" AND goal > 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_56 (rank INTEGER, notes VARCHAR, time VARCHAR)
### Question:
What is the highest rank for a 6:52.70 time and notes of sa/b?
### Answer:
SELECT MAX(rank) FROM table_name_56 WHERE notes = "sa/b" AND time = "6:52.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_92 (points VARCHAR, chassis VARCHAR)
### Question:
How many points for the simtek s951 chassis?
### Answer:
SELECT COUNT(points) FROM table_name_92 WHERE chassis = "simtek s951" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_79 (title VARCHAR, year VARCHAR)
### Question:
What is the title in 1991?
### Answer:
SELECT title FROM table_name_79 WHERE year = "1991" |
Below is an context that describes a sql 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 (paper_type VARCHAR, first_day_cover_cancellation VARCHAR)
### Question:
What is the Paper Type with a First Day Cover Cancellation with ottawa, on?
### Answer:
SELECT paper_type FROM table_name_11 WHERE first_day_cover_cancellation = "ottawa, on" |
Below is an context that describes a sql 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 (arrival VARCHAR, station_name VARCHAR)
### Question:
What is the Arrival time of the Patna Junction Station?
### Answer:
SELECT arrival FROM table_name_62 WHERE station_name = "patna junction" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2419754_1 (left INTEGER)
### Question:
In what year did the teams leave the conference?
### Answer:
SELECT MAX(left) FROM table_2419754_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 (character_s_ VARCHAR, first_appearance VARCHAR)
### Question:
Which character first appeared in Amazing Fantasy #15?
### Answer:
SELECT character_s_ FROM table_name_89 WHERE first_appearance = "amazing fantasy #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_24 (date_of_vacancy VARCHAR, team VARCHAR, date_of_appointment VARCHAR)
### Question:
What is the date of vacancy of team fc bayern munich, which had a date of appointment on 27 April 2009?
### Answer:
SELECT date_of_vacancy FROM table_name_24 WHERE team = "fc bayern munich" AND date_of_appointment = "27 april 2009" |
Below is an context that describes a sql 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 (completions VARCHAR, yards VARCHAR)
### Question:
Which Completions has Yards of 10,098?
### Answer:
SELECT completions FROM table_name_36 WHERE yards = "10,098" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1277350_1 (thursday_iuppiter__jupiter_ VARCHAR, tuesday_mars__mars_ VARCHAR)
### Question:
what's the thursday iuppiter (jupiter) with tuesday mars (mars) being marterì
### Answer:
SELECT thursday_iuppiter__jupiter_ FROM table_1277350_1 WHERE tuesday_mars__mars_ = "Marterì" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_25386974_1 (f_laps VARCHAR, series VARCHAR)
### Question:
How many f/laps did Pedro Nunes have when he was at the gp3 series?
### Answer:
SELECT f_laps FROM table_25386974_1 WHERE series = "GP3 series" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_21 (total INTEGER, snatch VARCHAR, event VARCHAR, clean_ VARCHAR, _jerk VARCHAR)
### Question:
What is the lowest total that had less than 170 snatches, 56 kg events and less than 145 clean & jerk?
### Answer:
SELECT MIN(total) FROM table_name_21 WHERE snatch < 170 AND event = "56 kg" AND clean_ & _jerk < 145 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11839306_2 (track VARCHAR, rōmaji_title VARCHAR)
### Question:
How many tracks are titled Mō Sukoshi Tōku?
### Answer:
SELECT COUNT(track) FROM table_11839306_2 WHERE rōmaji_title = "Mō Sukoshi Tōku" |
Below is an context that describes a sql 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 (party VARCHAR, incumbent VARCHAR)
### Question:
Which party is tobias a. plants the incumbent?
### Answer:
SELECT party FROM table_name_11 WHERE incumbent = "tobias a. plants" |
Below is an context that describes a sql 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, february VARCHAR, opponent VARCHAR)
### Question:
Which Record has a February smaller than 8, and an Opponent of montreal canadiens?
### Answer:
SELECT record FROM table_name_51 WHERE february < 8 AND opponent = "montreal canadiens" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE shop (address VARCHAR, open_year VARCHAR)
### Question:
Show the shop addresses ordered by their opening year.
### Answer:
SELECT address FROM shop ORDER BY open_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_19 (attendance INTEGER, opponent VARCHAR, week VARCHAR)
### Question:
What was the highest attendance when the Atlanta Falcons played for a week smaller than 10?
### Answer:
SELECT MAX(attendance) FROM table_name_19 WHERE opponent = "atlanta falcons" AND 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_170958_2 (population VARCHAR, area_km_2 VARCHAR)
### Question:
What is the total number of population in the land with an area of 149.32 km2?
### Answer:
SELECT COUNT(population) FROM table_170958_2 WHERE area_km_2 = "149.32" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_25794532_1 (points VARCHAR, car_no VARCHAR)
### Question:
Name the points for car number 4
### Answer:
SELECT points FROM table_25794532_1 WHERE car_no = 4 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2668374_13 (district VARCHAR, incumbent VARCHAR)
### Question:
What district had an election with incumbent john smilie?
### Answer:
SELECT district FROM table_2668374_13 WHERE incumbent = "John Smilie" |
Below is an context that describes a sql 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 (rider VARCHAR, laps VARCHAR, grid VARCHAR)
### Question:
Which Rider has less than 18 laps, and a Grid of 24?
### Answer:
SELECT rider FROM table_name_73 WHERE laps < 18 AND grid = 24 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_28 (goals_for INTEGER, lost VARCHAR, played VARCHAR)
### Question:
Which Goals For has a Lost of 12, and a Played larger than 34?
### Answer:
SELECT MAX(goals_for) FROM table_name_28 WHERE lost = 12 AND played > 34 |
Below is an context that describes a sql 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 (bulgarian_commander VARCHAR, battle VARCHAR, date VARCHAR)
### Question:
What is the Bulgarian Commander in Autumn 1040 at the Battle of Thessalonica?
### Answer:
SELECT bulgarian_commander FROM table_name_41 WHERE battle = "battle of thessalonica" AND date = "autumn 1040" |
Below is an context that describes a sql 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 (type VARCHAR, position VARCHAR, location VARCHAR)
### Question:
what is the type when the position is ambassador and the location is rabat?
### Answer:
SELECT type FROM table_name_62 WHERE position = "ambassador" AND location = "rabat" |
Below is an context that describes a sql 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 (date VARCHAR, home_team VARCHAR)
### Question:
On which date was Essendon the home team?
### Answer:
SELECT date FROM table_name_13 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_23308178_4 (record VARCHAR, date VARCHAR)
### Question:
What was the record on October 17?
### Answer:
SELECT record FROM table_23308178_4 WHERE date = "October 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_53 (constructor VARCHAR, driver VARCHAR)
### Question:
Who was Albino Buticchi's constructor?
### Answer:
SELECT constructor FROM table_name_53 WHERE driver = "albino buticchi" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1342359_39 (party VARCHAR, district VARCHAR)
### Question:
What is the party for south carolina 3?
### Answer:
SELECT party FROM table_1342359_39 WHERE district = "South Carolina 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_54 (date VARCHAR, week VARCHAR)
### Question:
What Date is Week 1?
### Answer:
SELECT date FROM table_name_54 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_name_36 (tournament VARCHAR, runner_up VARCHAR)
### Question:
Which Tournament has Pat Cash as a runner-up?
### Answer:
SELECT tournament FROM table_name_36 WHERE runner_up = "pat cash" |
Below is an context that describes a sql 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 (rank INTEGER, time VARCHAR)
### Question:
What is the rank for the team with a Time of 1:12.40.28?
### Answer:
SELECT SUM(rank) FROM table_name_94 WHERE time = "1:12.40.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 people (Name VARCHAR, Birth_Date VARCHAR)
### Question:
List the names and birth dates of people in ascending alphabetical order of name.
### Answer:
SELECT Name, Birth_Date FROM people ORDER BY 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_12 (hdtv VARCHAR, television_service VARCHAR)
### Question:
What is the HDTV status of the r-light television service?
### Answer:
SELECT hdtv FROM table_name_12 WHERE television_service = "r-light" |
Below is an context that describes a sql 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 (member_countries VARCHAR, area__km²_ VARCHAR)
### Question:
Which country has an area of 871,980 square km?
### Answer:
SELECT member_countries FROM table_name_15 WHERE area__km²_ = "871,980" |
Below is an context that describes a sql 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 (player VARCHAR, début VARCHAR, opposition VARCHAR, last_game VARCHAR)
### Question:
Which player debuted in 1973 against Limerick and played his last game at the Munster semi-final?
### Answer:
SELECT player FROM table_name_18 WHERE opposition = "limerick" AND last_game = "munster semi-final" AND début = 1973 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_24776075_2 (final_score VARCHAR, date VARCHAR)
### Question:
How many final score datas are there on Sunday, May 12?
### Answer:
SELECT COUNT(final_score) FROM table_24776075_2 WHERE date = "Sunday, May 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_23 (score VARCHAR, home VARCHAR, visitor VARCHAR)
### Question:
What was the score of the game that Washington played at home against Florida?
### Answer:
SELECT score FROM table_name_23 WHERE home = "washington" AND visitor = "florida" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_32 (Id VARCHAR)
### Question:
What is the 2009 value with A in 2012 and q2 in 2011?
### Answer:
SELECT 2009 FROM table_name_32 WHERE 2012 = "a" AND 2011 = "q2" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_26 (city VARCHAR, rank VARCHAR)
### Question:
What was the 2010 population of frankfort which has a rank smaller than 14?
### Answer:
SELECT AVG(2010 AS _pop) FROM table_name_26 WHERE city = "frankfort" AND rank < 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_45 (industrial_and_commercial_panel VARCHAR, cultural_and_educational_panel VARCHAR, labour_panel VARCHAR, nominated_by_the_taoiseach VARCHAR)
### Question:
What is the total of Industrial and Commercial Panels that have a Labour Panel greater than 1, a Nominated by the Taoiseach lesss than 11 and a Cultural and Educational Panel smaller than 0
### Answer:
SELECT COUNT(industrial_and_commercial_panel) FROM table_name_45 WHERE labour_panel > 1 AND nominated_by_the_taoiseach < 11 AND cultural_and_educational_panel < 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_76 (wins INTEGER, top_25 VARCHAR, events VARCHAR)
### Question:
What is the highest number of wins that has a top-25 of 13 and events less than 32?
### Answer:
SELECT MAX(wins) FROM table_name_76 WHERE top_25 = 13 AND events < 32 |
Below is an context that describes a sql 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 (nationality VARCHAR, name VARCHAR, group VARCHAR, result VARCHAR)
### Question:
Alana Boyd of group B with a 4.30 result has what nationality?
### Answer:
SELECT nationality FROM table_name_24 WHERE group = "b" AND result = "4.30" AND name = "alana boyd" |
Below is an context that describes a sql 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 (att INTEGER, long VARCHAR, yards VARCHAR)
### Question:
Tell me the most Att with a long of 27 with yards longer than 27
### Answer:
SELECT MAX(att) FROM table_name_24 WHERE long = 27 AND yards > 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_50 (date VARCHAR, away_team VARCHAR)
### Question:
On what date was Richmond hosted as the away team?
### Answer:
SELECT date FROM table_name_50 WHERE away_team = "richmond" |
Below is an context that describes a sql 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 (week INTEGER, result VARCHAR, attendance VARCHAR)
### Question:
What week ended in a result of w 30-3, and had an attendance less than 62,795?
### Answer:
SELECT MIN(week) FROM table_name_53 WHERE result = "w 30-3" AND attendance < 62 OFFSET 795 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_10722506_6 (record VARCHAR, round_of_32 VARCHAR, conference VARCHAR)
### Question:
What is the record when round of 32 is 0 and metro atlantic conference?
### Answer:
SELECT record FROM table_10722506_6 WHERE round_of_32 = 0 AND conference = "Metro Atlantic" |
Below is an context that describes a sql 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 (kilometer INTEGER, average_climb___percentage_ VARCHAR, name VARCHAR, pavement VARCHAR, length__m_ VARCHAR)
### Question:
What is the Kilometer of the Berendries asphalt course with an Average climb less than 7 and Length (m) longer than 645?
### Answer:
SELECT AVG(kilometer) FROM table_name_15 WHERE pavement = "asphalt" AND length__m_ > 645 AND name = "berendries" AND average_climb___percentage_ < 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_49 (owner VARCHAR, time VARCHAR, year VARCHAR)
### Question:
Which owner has the time 2:03.00 and the year of 1991 kd?
### Answer:
SELECT owner FROM table_name_49 WHERE time = "2:03.00" AND year = "1991 kd" |
Below is an context that describes a sql 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 (agricultural_panel INTEGER, industrial_and_commercial_panel VARCHAR, national_university_of_ireland VARCHAR)
### Question:
What was the lowest number of members on the Agricultural Panel, when the Industrial and Commercial Panel had 9 members, and when the National University of Ireland had more than 3 members?
### Answer:
SELECT MIN(agricultural_panel) FROM table_name_29 WHERE industrial_and_commercial_panel = 9 AND national_university_of_ireland > 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_58 (glendale_principal VARCHAR, year VARCHAR, ms_principal VARCHAR, hs_principal VARCHAR)
### Question:
Who is the Glendale principal with Greg Smorel as m.s. principal and Joleen Reinholz as H.S. principal during 2006-2007?
### Answer:
SELECT glendale_principal FROM table_name_58 WHERE ms_principal = "greg smorel" AND hs_principal = "joleen reinholz" AND year = "2006-2007" |
Below is an context that describes a sql 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 (to_par VARCHAR, score VARCHAR)
### Question:
Which To par has a Score of 67-72-71-75=285?
### Answer:
SELECT to_par FROM table_name_40 WHERE score = 67 - 72 - 71 - 75 = 285 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22860698_8 (carpet_w_l VARCHAR, year VARCHAR)
### Question:
What were the carpet w-l in 1993?
### Answer:
SELECT carpet_w_l FROM table_22860698_8 WHERE year = 1993 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_66 (silver VARCHAR, total VARCHAR)
### Question:
Who has a total number of 76 silver medals?
### Answer:
SELECT COUNT(silver) FROM table_name_66 WHERE total = 76 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_10470082_3 (writer VARCHAR, us_air_date VARCHAR)
### Question:
How many writers had an US air date of september 25, 1993?
### Answer:
SELECT COUNT(writer) FROM table_10470082_3 WHERE us_air_date = "September 25, 1993" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_55 (passenger VARCHAR, season VARCHAR, races VARCHAR)
### Question:
Who is the passenger in 2009 season with 17 races?
### Answer:
SELECT passenger FROM table_name_55 WHERE season = "2009" AND races = 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_2508633_9 (nfl_team VARCHAR, college VARCHAR)
### Question:
What NFL team picked a player from Jackson State?
### Answer:
SELECT nfl_team FROM table_2508633_9 WHERE college = "Jackson State" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_10 (date VARCHAR, partnering VARCHAR, opponent_in_final VARCHAR)
### Question:
What is the Date, when Partnering is "Francesca Lubiani", and when Opponent in Final is "Yuliya Beygelzimer / Jennifer Hopkins"?
### Answer:
SELECT date FROM table_name_10 WHERE partnering = "francesca lubiani" AND opponent_in_final = "yuliya beygelzimer / jennifer hopkins" |
Below is an context that describes a sql 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 (date VARCHAR, record VARCHAR)
### Question:
What is the date of the match with a 28-15 record?
### Answer:
SELECT date FROM table_name_24 WHERE record = "28-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 customers (customer_email VARCHAR, customer_name VARCHAR, payment_method VARCHAR)
### Question:
List the names and emails of customers who payed by Visa card.
### Answer:
SELECT customer_email, customer_name FROM customers WHERE payment_method = 'Visa' |
Below is an context that describes a sql 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 (land_area__km²_ INTEGER, country VARCHAR, population_density__pop_per_km²_ VARCHAR)
### Question:
What is the land area of Switzerland with a population density fewer than 188 km²?
### Answer:
SELECT AVG(land_area__km²_) FROM table_name_98 WHERE country = "switzerland" AND population_density__pop_per_km²_ < 188 |
Below is an context that describes a sql 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 (previous_conference VARCHAR, ihsaa_class___football_soccer VARCHAR, year_joined VARCHAR)
### Question:
Which Previous Conference has an IHSAA Class/ Football/ Soccer of 4a/5a/2a, and a Year Joined larger than 1926?
### Answer:
SELECT previous_conference FROM table_name_22 WHERE ihsaa_class___football_soccer = "4a/5a/2a" AND year_joined > 1926 |
Below is an context that describes a sql 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 (gold_coast VARCHAR, melbourne VARCHAR, auckland VARCHAR)
### Question:
Which Gold Coast has Melbourne yes, and Auckland yes?
### Answer:
SELECT gold_coast FROM table_name_8 WHERE melbourne = "yes" AND auckland = "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_22170495_6 (original_airing_on_channel_4 VARCHAR, title VARCHAR)
### Question:
When is the original airing on channel 4 with being alive as the title?
### Answer:
SELECT original_airing_on_channel_4 FROM table_22170495_6 WHERE title = "Being Alive" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_26211058_1 (calculated_activity___bq__ VARCHAR, specimen_weight_size VARCHAR)
### Question:
If the specimen weight/size is 1000 g / 8.79 cm, what is the calculated activity?
### Answer:
SELECT COUNT(calculated_activity___bq__) FROM table_26211058_1 WHERE specimen_weight_size = "1000 g / 8.79 cm" |
Below is an context that describes a sql 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 (Id VARCHAR)
### Question:
What is the 1988 result that has a 1994 result of A, and 3r as the 1987 result?
### Answer:
SELECT 1988 FROM table_name_19 WHERE 1994 = "a" AND 1987 = "3r" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_10592536_8 (replaced_by VARCHAR, position_in_table VARCHAR)
### Question:
Who replaced when position in table is pre-season?
### Answer:
SELECT replaced_by FROM table_10592536_8 WHERE position_in_table = "Pre-season" |
Below is an context that describes a sql 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 (laps VARCHAR, team VARCHAR)
### Question:
How many Laps did Team Primagaz Competition have?
### Answer:
SELECT laps FROM table_name_14 WHERE team = "primagaz competition" |
Below is an context that describes a sql 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 (score VARCHAR, record VARCHAR)
### Question:
What is the Score of the game with a Record of 12–12?
### Answer:
SELECT score FROM table_name_93 WHERE record = "12–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 mountain (prominence INTEGER, country VARCHAR)
### Question:
What are the average prominence of the mountains in country 'Morocco'?
### Answer:
SELECT AVG(prominence) FROM mountain WHERE country = 'Morocco' |
Below is an context that describes a sql 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 (week_4 VARCHAR, week_2 VARCHAR)
### Question:
What kind of Week 4 has a Week 2 of tiffany logan?
### Answer:
SELECT week_4 FROM table_name_65 WHERE week_2 = "tiffany logan" |
Below is an context that describes a sql 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 (silver VARCHAR, rank VARCHAR, total VARCHAR)
### Question:
What is the total number of silver medals of the team ranked 7 with more than 1 total medal?
### Answer:
SELECT COUNT(silver) FROM table_name_59 WHERE rank = "7" AND total > 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_10966926_2 (player_name VARCHAR, college VARCHAR)
### Question:
Which player went to Michigan State?
### Answer:
SELECT player_name FROM table_10966926_2 WHERE college = "Michigan State" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_79 (name VARCHAR, type VARCHAR, date VARCHAR)
### Question:
What is the Name of the Historic House of the 18th Century?
### Answer:
SELECT name FROM table_name_79 WHERE type = "historic house" AND date = "18th century" |
Below is an context that describes a sql 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 (party VARCHAR, votes_cast VARCHAR, seats_won VARCHAR, percent_of_seats VARCHAR)
### Question:
Which party won less than 21 seats, has 0 percent of seats, and 69757 votes cast?
### Answer:
SELECT party FROM table_name_94 WHERE seats_won < 21 AND percent_of_seats = 0 AND votes_cast = 69757 |
Below is an context that describes a sql 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 (capacity__thousands_of_metric_tons_ VARCHAR, operator VARCHAR)
### Question:
What is the capacity of the mine that is operated by Cyprus Amax minerals?
### Answer:
SELECT capacity__thousands_of_metric_tons_ FROM table_name_83 WHERE operator = "cyprus amax minerals" |
Below is an context that describes a sql 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 (name VARCHAR, delivered VARCHAR)
### Question:
What is the name where the delivered date is 1839/08?
### Answer:
SELECT name FROM table_name_22 WHERE delivered = "1839/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_43 (play_offs INTEGER, fa_cup VARCHAR)
### Question:
What is the least number of goals scored in the play-offs among the players that have scored 2 in the FA Cup?
### Answer:
SELECT MIN(play_offs) FROM table_name_43 WHERE fa_cup = 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_25220821_3 (fri_4_june VARCHAR, wed_2_june VARCHAR)
### Question:
What is Friday 4 June if Wednesday 2 June is 20' 11.98 112.071mph?
### Answer:
SELECT fri_4_june FROM table_25220821_3 WHERE wed_2_june = "20' 11.98 112.071mph" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_182298_5 (total VARCHAR, country VARCHAR)
### Question:
How many are the total winners from South Korea?
### Answer:
SELECT total FROM table_182298_5 WHERE country = "South Korea" |
Below is an context that describes a sql 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 (erp___power_w VARCHAR, frequency VARCHAR, facility_id VARCHAR)
### Question:
Name the total number of ERP/Power W for frequency of 89.3 fm and facility ID less than 40430
### Answer:
SELECT COUNT(erp___power_w) FROM table_name_34 WHERE frequency = "89.3 fm" AND facility_id < 40430 |
Below is an context that describes a sql 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 (starts INTEGER, cuts_made VARCHAR, top_10 VARCHAR)
### Question:
What is the average number of starts when 11 cuts were made and the top 10 ranking is larger than 4?
### Answer:
SELECT AVG(starts) FROM table_name_33 WHERE cuts_made = 11 AND top_10 > 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_1748444_1 (disposition VARCHAR, date_built VARCHAR)
### Question:
Name the disposition for date built is march 1909
### Answer:
SELECT disposition FROM table_1748444_1 WHERE date_built = "March 1909" |
Below is an context that describes a sql 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 (draws INTEGER, club VARCHAR, goals_for VARCHAR)
### Question:
What is the lowest amount of draws club ud lérida, which has less than 41 goals, has?
### Answer:
SELECT MIN(draws) FROM table_name_86 WHERE club = "ud lérida" AND goals_for < 41 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12451376_2 (original_airdate VARCHAR, production_code VARCHAR)
### Question:
What is the number of the original airdate with the production code 208.
### Answer:
SELECT COUNT(original_airdate) FROM table_12451376_2 WHERE production_code = 208 |
Below is an context that describes a sql 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 (away_team VARCHAR, tie_no VARCHAR)
### Question:
Which away team that had 48 as a Tie no?
### Answer:
SELECT away_team FROM table_name_46 WHERE tie_no = "48" |
Below is an context that describes a sql 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 (name VARCHAR, country VARCHAR)
### Question:
What is the name of the person whose country is West Indies.
### Answer:
SELECT name FROM table_name_53 WHERE country = "west indies" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.