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_22 (record VARCHAR, method VARCHAR)
### Question:
What was the record when TKO (punches and elbows) was the method?
### Answer:
SELECT record FROM table_name_22 WHERE method = "tko (punches and elbows)" |
Below is an context that describes a sql 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 (tyre VARCHAR, chassis VARCHAR, rounds VARCHAR, engine VARCHAR)
### Question:
When the engine Ford Cosworth DFV 3.0 v8 has a chassis of m23 and in rounds 14-15, what is its Tyre?
### Answer:
SELECT tyre FROM table_name_51 WHERE rounds = "14-15" AND engine = "ford cosworth dfv 3.0 v8" AND chassis = "m23" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_18686317_1 (qb_rating VARCHAR, comp__percentage VARCHAR)
### Question:
What is the Quarterback rating of the player who got a comp percentage of 62.0?
### Answer:
SELECT qb_rating FROM table_18686317_1 WHERE comp__percentage = "62.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_1341423_23 (first_elected INTEGER, incumbent VARCHAR)
### Question:
What year was incumbent jim ramstad first elected?
### Answer:
SELECT MIN(first_elected) FROM table_1341423_23 WHERE incumbent = "Jim Ramstad" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23958917_1 (stacks VARCHAR, in_service_dates VARCHAR)
### Question:
Name the stacks for 1 1969 2 1995
### Answer:
SELECT stacks FROM table_23958917_1 WHERE in_service_dates = "1 1969 2 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_214479_8 (y_ VARCHAR, _2008 VARCHAR, expression VARCHAR)
### Question:
what is the y = 2008 when the expression is easter day (julian calendar)?
### Answer:
SELECT y_ = _2008 FROM table_214479_8 WHERE expression = "Easter Day (Julian calendar)" |
Below is an context that describes a sql 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 (pick__number INTEGER, player VARCHAR)
### Question:
How many picks involved the player Joe Germanese?
### Answer:
SELECT SUM(pick__number) FROM table_name_59 WHERE player = "joe germanese" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_30 (surface VARCHAR, date VARCHAR)
### Question:
What surface was used on July 17, 1983?
### Answer:
SELECT surface FROM table_name_30 WHERE date = "july 17, 1983" |
Below is an context that describes a sql 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 (home VARCHAR, decision VARCHAR)
### Question:
Who was the Home team that had a decider of Conklin?
### Answer:
SELECT home FROM table_name_53 WHERE decision = "conklin" |
Below is an context that describes a sql 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 (time_retired VARCHAR, grid VARCHAR)
### Question:
What's the time for someone on grid 9?
### Answer:
SELECT time_retired FROM table_name_34 WHERE grid = "9" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_75 (tonnage VARCHAR, built VARCHAR)
### Question:
What tonnage was built in 2007?
### Answer:
SELECT tonnage FROM table_name_75 WHERE built = 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_26176081_29 (no_yds VARCHAR)
### Question:
What is no-yds when no.-yds is 1-13?
### Answer:
SELECT no_yds FROM table_26176081_29 WHERE no_yds = "1-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_94 (road_team VARCHAR, home_team VARCHAR, date VARCHAR)
### Question:
What is the road team playing against Boston on April 16?
### Answer:
SELECT road_team FROM table_name_94 WHERE home_team = "boston" AND date = "april 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_55 (score VARCHAR, team_2 VARCHAR)
### Question:
What was the score for the game in which Al-Qadsia was Team 2?
### Answer:
SELECT score FROM table_name_55 WHERE team_2 = "al-qadsia" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE item (title VARCHAR, i_id VARCHAR); CREATE TABLE review (i_id VARCHAR, rating INTEGER)
### Question:
Find the name and id of the item with the highest average rating.
### Answer:
SELECT T1.title, T1.i_id FROM item AS T1 JOIN review AS T2 ON T1.i_id = T2.i_id GROUP BY T2.i_id ORDER BY AVG(T2.rating) DESC LIMIT 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_64 (year INTEGER, result VARCHAR, world_rank VARCHAR)
### Question:
What Year has a Result smaller than 20.31, and a World Rank of 5th?
### Answer:
SELECT AVG(year) FROM table_name_64 WHERE result < 20.31 AND world_rank = "5th" |
Below is an context that describes a sql 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 (age__as_of_1_february_2014_ VARCHAR, rank VARCHAR, death_date VARCHAR)
### Question:
Which Age (as of 1 February 2014) has a Rank smaller than 9, and a Death date of 24 january 2007?
### Answer:
SELECT age__as_of_1_february_2014_ FROM table_name_3 WHERE rank < 9 AND death_date = "24 january 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_2076522_2 (control VARCHAR, accreditation VARCHAR)
### Question:
What is the control for the school accredited by the higher learning commission ( nca ), ccne?
### Answer:
SELECT control FROM table_2076522_2 WHERE accreditation = "The Higher Learning Commission ( NCA ), CCNE" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_16403890_1 (institution VARCHAR, team_nickname VARCHAR)
### Question:
Which school has the mascot of the Colonials?
### Answer:
SELECT institution FROM table_16403890_1 WHERE team_nickname = "Colonials" |
Below is an context that describes a sql 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 (fa_cup_apps VARCHAR, league_apps VARCHAR)
### Question:
Which FA Cup Apps have League Apps of 21?
### Answer:
SELECT fa_cup_apps FROM table_name_28 WHERE league_apps = "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_84 (year INTEGER)
### Question:
What team was in 1st plate in a year later than 1956?
### Answer:
SELECT 1 AS st_place_team FROM table_name_84 WHERE year > 1956 |
Below is an context that describes a sql 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 (career_w_l VARCHAR)
### Question:
What is the career W-L of the tournament that is listed as A in 1968 and 4R in 1974?
### Answer:
SELECT career_w_l FROM table_name_23 WHERE 1968 = "a" AND 1974 = "4r" |
Below is an context that describes a sql 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 (team VARCHAR, average VARCHAR)
### Question:
Team with average of 1.035?
### Answer:
SELECT team FROM table_name_79 WHERE average = 1.035 |
Below is an context that describes a sql 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 (roll VARCHAR, name VARCHAR, decile VARCHAR)
### Question:
Name the total number of roll for st joseph's school when decile is less than 5
### Answer:
SELECT COUNT(roll) FROM table_name_19 WHERE name = "st joseph's school" AND decile < 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_21821014_1 (chapter VARCHAR, institution VARCHAR)
### Question:
What is the chapter for Illinois Wesleyan?
### Answer:
SELECT chapter FROM table_21821014_1 WHERE institution = "Illinois Wesleyan" |
Below is an context that describes a sql 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 (party VARCHAR, result VARCHAR, incumbent VARCHAR)
### Question:
What party was re-elected as an incumbent of robert p. Kennedy?
### Answer:
SELECT party FROM table_name_69 WHERE result = "re-elected" AND incumbent = "robert p. kennedy" |
Below is an context that describes a sql 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 (iucn VARCHAR, est VARCHAR, reserve VARCHAR)
### Question:
What is the IUCN for the gales point reserve when the Est. is 1998?
### Answer:
SELECT iucn FROM table_name_96 WHERE est = 1998 AND reserve = "gales point" |
Below is an context that describes a sql 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 (opponent VARCHAR, date VARCHAR)
### Question:
Who was the opponent on November 26, 1989?
### Answer:
SELECT opponent FROM table_name_86 WHERE date = "november 26, 1989" |
Below is an context that describes a sql 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 (score VARCHAR, date VARCHAR)
### Question:
What were the scores on September 11, 2006?
### Answer:
SELECT score FROM table_name_95 WHERE date = "september 11, 2006" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_13 (height__cm_ INTEGER, weight__kg_ VARCHAR)
### Question:
What is the sum of Height (cm), when the Weight (kg) is 90?
### Answer:
SELECT SUM(height__cm_) FROM table_name_13 WHERE weight__kg_ = 90 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_41 (appearances VARCHAR, name VARCHAR, goals VARCHAR)
### Question:
how many appearances did batram suri category:articles with hcards have scoring less than 2 goals?
### Answer:
SELECT COUNT(appearances) FROM table_name_41 WHERE name = "batram suri category:articles with hcards" AND goals < 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_10361625_1 (college VARCHAR, player_name VARCHAR)
### Question:
Where is the college where Keith Hartwig plays?
### Answer:
SELECT college FROM table_10361625_1 WHERE player_name = "Keith Hartwig" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23183195_5 (free_throws INTEGER, steals VARCHAR)
### Question:
Name the most free throws for 4 steals
### Answer:
SELECT MAX(free_throws) FROM table_23183195_5 WHERE steals = 4 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_28 (greek_designation VARCHAR, city VARCHAR)
### Question:
What's the greek designation of the city riverside?
### Answer:
SELECT greek_designation FROM table_name_28 WHERE city = "riverside" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11764007_2 (member VARCHAR, week_sent_to_third_island VARCHAR)
### Question:
Who was sent to the third island in week 1?
### Answer:
SELECT member FROM table_11764007_2 WHERE week_sent_to_third_island = "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_49 (tournament VARCHAR, margin_of_victory VARCHAR)
### Question:
Which tournament had a playoff with a margin of victory?
### Answer:
SELECT tournament FROM table_name_49 WHERE margin_of_victory = "playoff" |
Below is an context that describes a sql 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 (place VARCHAR, to_par VARCHAR, score VARCHAR)
### Question:
What is the Place of the Player with a To par of +4 and Score of 70-76-71=217?
### Answer:
SELECT place FROM table_name_67 WHERE to_par = "+4" AND score = 70 - 76 - 71 = 217 |
Below is an context that describes a sql 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 (title VARCHAR, release_date VARCHAR, track_number VARCHAR, record_label VARCHAR)
### Question:
Name The Title which has a Track number of 07, and a Record label of emi on 21 april 2006?
### Answer:
SELECT title FROM table_name_73 WHERE track_number = "07" AND record_label = "emi" AND release_date = "21 april 2006" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_80 (qual VARCHAR, laps VARCHAR, year VARCHAR)
### Question:
Which qual has both 200 total laps and took place in 1957?
### Answer:
SELECT qual FROM table_name_80 WHERE laps = 200 AND year = "1957" |
Below is an context that describes a sql 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:
Which team has a home field at Glenferrie Oval?
### Answer:
SELECT home_team FROM table_name_48 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_11589522_3 (title VARCHAR, original_air_date VARCHAR)
### Question:
what's the title where original air date is january18,2009
### Answer:
SELECT title FROM table_11589522_3 WHERE original_air_date = "January18,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_59 (total INTEGER, rank VARCHAR, gold VARCHAR)
### Question:
Which Total has a Rank of 17, and a Gold larger than 0?
### Answer:
SELECT AVG(total) FROM table_name_59 WHERE rank = "17" AND gold > 0 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27615896_18 (new_points VARCHAR, rk VARCHAR)
### Question:
How many new points were earned by rk 26?
### Answer:
SELECT new_points FROM table_27615896_18 WHERE rk = 26 |
Below is an context that describes a sql 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 (score VARCHAR, team VARCHAR)
### Question:
what is the score when the team is @ cleveland?
### Answer:
SELECT score FROM table_name_20 WHERE team = "@ cleveland" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12784134_24 (perfect_stem VARCHAR, short_stem VARCHAR)
### Question:
Name the perfect stem for jo
### Answer:
SELECT COUNT(perfect_stem) FROM table_12784134_24 WHERE short_stem = "jo" |
Below is an context that describes a sql 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 (date VARCHAR, opponent VARCHAR, score VARCHAR)
### Question:
What day did the Diamondbacks go 2-7?
### Answer:
SELECT date FROM table_name_92 WHERE opponent = "diamondbacks" AND score = "2-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_88 (february INTEGER, opponent VARCHAR)
### Question:
What's the February for the game against the Montreal Canadiens?
### Answer:
SELECT SUM(february) FROM table_name_88 WHERE 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 table_name_71 (week INTEGER, game_site VARCHAR, date VARCHAR)
### Question:
Which week was the game held at Kingdome on October 13, 1991?
### Answer:
SELECT MIN(week) FROM table_name_71 WHERE game_site = "kingdome" AND date = "october 13, 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_1697190_2 (money_list_rank VARCHAR, best_finish VARCHAR)
### Question:
when Casey Martin's best finish was t-65, where did he land in the money list rankings?
### Answer:
SELECT money_list_rank FROM table_1697190_2 WHERE best_finish = "T-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_57 (played INTEGER, blackpool INTEGER)
### Question:
Which Played is the lowest one that has a Blackpool smaller than 0?
### Answer:
SELECT MIN(played) FROM table_name_57 WHERE blackpool < 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_99 (district VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
### Question:
In what district was incumbent Russ Carnahan elected after 2000?
### Answer:
SELECT district FROM table_name_99 WHERE first_elected > 2000 AND incumbent = "russ carnahan" |
Below is an context that describes a sql 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 (laps VARCHAR, year VARCHAR)
### Question:
How many laps were in 1955?
### Answer:
SELECT COUNT(laps) FROM table_name_89 WHERE year = "1955" |
Below is an context that describes a sql 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 (date VARCHAR, man_of_the_match VARCHAR)
### Question:
What is the Date of the Competition with Man of the Match Ollie Bronnimann?
### Answer:
SELECT date FROM table_name_41 WHERE man_of_the_match = "ollie bronnimann" |
Below is an context that describes a sql 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 (category VARCHAR, event_name VARCHAR)
### Question:
What is the category of the touchdown atlantic?
### Answer:
SELECT category FROM table_name_76 WHERE event_name = "touchdown 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_2933761_1 (played_by VARCHAR, occupation VARCHAR)
### Question:
Who played the mathematics student?
### Answer:
SELECT played_by FROM table_2933761_1 WHERE occupation = "Mathematics Student" |
Below is an context that describes a sql 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 (captain VARCHAR, team VARCHAR)
### Question:
Who was the team captain of the Bolton Wanderers?
### Answer:
SELECT captain FROM table_name_60 WHERE team = "bolton wanderers" |
Below is an context that describes a sql 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 (prom__m_ INTEGER, peak VARCHAR, height__m_ VARCHAR, class VARCHAR)
### Question:
What is the average prom (m) when the height (m) is more than 733, the class is Hewitt, and the peak is Kirk Fell East Top?
### Answer:
SELECT AVG(prom__m_) FROM table_name_75 WHERE height__m_ > 733 AND class = "hewitt" AND peak = "kirk fell east top" |
Below is an context that describes a sql 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 (date VARCHAR, venue VARCHAR)
### Question:
What was the date for Westport?
### Answer:
SELECT date FROM table_name_33 WHERE venue = "westport" |
Below is an context that describes a sql 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 (venue VARCHAR, home_team VARCHAR)
### Question:
Where did Collingwood play as the home team?
### Answer:
SELECT venue FROM table_name_28 WHERE home_team = "collingwood" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12419515_5 (written_by VARCHAR, series__number VARCHAR)
### Question:
Name the people who wrote number 67
### Answer:
SELECT written_by FROM table_12419515_5 WHERE series__number = 67 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_17736890_5 (tie_no INTEGER, away_team VARCHAR)
### Question:
In what tie were Leeds United the away team?
### Answer:
SELECT MAX(tie_no) FROM table_17736890_5 WHERE away_team = "Leeds 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_13 (pete_du_pont VARCHAR, pat_robertson VARCHAR)
### Question:
When Pat Robertson was at 16%, what did Pete du Pont have?
### Answer:
SELECT pete_du_pont FROM table_name_13 WHERE pat_robertson = "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_23285761_8 (high_points VARCHAR, location_attendance VARCHAR)
### Question:
Name the high points for pepsi center 19,155
### Answer:
SELECT high_points FROM table_23285761_8 WHERE location_attendance = "Pepsi Center 19,155" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_32 (score_points VARCHAR, total VARCHAR)
### Question:
With a total of 11, what is the score points?
### Answer:
SELECT score_points FROM table_name_32 WHERE total = "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 (opponent VARCHAR, date VARCHAR)
### Question:
Who was the opponent on June 15?
### Answer:
SELECT opponent FROM table_name_71 WHERE date = "june 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 airlines (country VARCHAR, name VARCHAR)
### Question:
Find the country of the airlines whose name starts with 'Orbit'.
### Answer:
SELECT country FROM airlines WHERE name LIKE 'Orbit%' |
Below is an context that describes a sql 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 (record VARCHAR, opponent VARCHAR)
### Question:
Can you tell me the Record that has the Opponent of vs. hamilton tiger cats?
### Answer:
SELECT record FROM table_name_55 WHERE opponent = "vs. hamilton tiger cats" |
Below is an context that describes a sql 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 (political_affiliation VARCHAR, deputy VARCHAR)
### Question:
What is the Political affiliation of deputy john dallat?
### Answer:
SELECT political_affiliation FROM table_name_39 WHERE deputy = "john dallat" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_15887683_8 (dar VARCHAR, language VARCHAR)
### Question:
Name the dar for cinese
### Answer:
SELECT dar FROM table_15887683_8 WHERE language = "cinese" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_63 (lost VARCHAR, against VARCHAR, played VARCHAR)
### Question:
Which Lost has an Against of 49 and a Played smaller than 20?
### Answer:
SELECT COUNT(lost) FROM table_name_63 WHERE against = 49 AND played < 20 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_16 (episode VARCHAR, year VARCHAR, nominee_s_ VARCHAR)
### Question:
Name the episode for jenny bicks and cindy chupack nominees in 2004
### Answer:
SELECT episode FROM table_name_16 WHERE year = 2004 AND nominee_s_ = "jenny bicks and cindy chupack" |
Below is an context that describes a sql 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 (date VARCHAR, attendance INTEGER)
### Question:
When was the Attendance larger than 74,382?
### Answer:
SELECT date FROM table_name_36 WHERE attendance > 74 OFFSET 382 |
Below is an context that describes a sql 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 (winner VARCHAR, event VARCHAR)
### Question:
Who was the winner from the Rip Curl Pro Search?
### Answer:
SELECT winner FROM table_name_71 WHERE event = "rip curl pro search" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22669044_9 (high_rebounds VARCHAR, location_attendance VARCHAR)
### Question:
Name the number of high rebounds for united center 19,335
### Answer:
SELECT COUNT(high_rebounds) FROM table_22669044_9 WHERE location_attendance = "United Center 19,335" |
Below is an context that describes a sql 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 (away_team VARCHAR, home_team VARCHAR)
### Question:
What is the Away team score when they played Geelong as the Home team?
### Answer:
SELECT away_team AS score FROM table_name_15 WHERE home_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_61 (game INTEGER, opponent VARCHAR, record VARCHAR)
### Question:
What is the lowest numbered game against Phoenix with a record of 29-17?
### Answer:
SELECT MIN(game) FROM table_name_61 WHERE opponent = "phoenix" AND record = "29-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_22879323_9 (high_rebounds VARCHAR, location_attendance VARCHAR)
### Question:
Name the high rebounds for american airlines center
### Answer:
SELECT high_rebounds FROM table_22879323_9 WHERE location_attendance = "American Airlines Center" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE body_builder (Snatch VARCHAR, Clean_Jerk VARCHAR)
### Question:
List the snatch score and clean jerk score of body builders in ascending order of snatch score.
### Answer:
SELECT Snatch, Clean_Jerk FROM body_builder ORDER BY Snatch |
Below is an context that describes a sql 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 (home_team VARCHAR, away_team VARCHAR)
### Question:
What was the home teams score while playing the away team of south melbourne?
### Answer:
SELECT home_team AS score FROM table_name_73 WHERE away_team = "south melbourne" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_17848578_1 (date VARCHAR, game_site VARCHAR)
### Question:
What is the date of the game at Arrowhead Stadium?
### Answer:
SELECT date FROM table_17848578_1 WHERE game_site = "Arrowhead Stadium" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_20745685_1 (opponent VARCHAR, date VARCHAR)
### Question:
Who was the opponent on February 28, 1991
### Answer:
SELECT opponent FROM table_20745685_1 WHERE date = "February 28, 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_26609690_1 (wins INTEGER)
### Question:
What is the highest number of wins?
### Answer:
SELECT MAX(wins) FROM table_26609690_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_20592988_1 (bleeding_time VARCHAR, condition VARCHAR)
### Question:
What is the status of bleeding time for thrombocytopenia?
### Answer:
SELECT bleeding_time FROM table_20592988_1 WHERE condition = "Thrombocytopenia" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_29535057_4 (time VARCHAR, location VARCHAR)
### Question:
What was the time of the games that took place at the cassell coliseum • blacksburg, va?
### Answer:
SELECT time FROM table_29535057_4 WHERE location = "Cassell Coliseum • Blacksburg, VA" |
Below is an context that describes a sql 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 (john_oxendine VARCHAR, karen_handel VARCHAR)
### Question:
What is John Oxendine at in the poll where Karen Handel is at 38%?
### Answer:
SELECT john_oxendine FROM table_name_75 WHERE karen_handel = "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_48 (last_10_meetings VARCHAR, at_norman VARCHAR)
### Question:
What is the Last 10 Meetings when Norman is ou, 18-6?
### Answer:
SELECT last_10_meetings FROM table_name_48 WHERE at_norman = "ou, 18-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_59 (machine VARCHAR, rank VARCHAR, wins VARCHAR)
### Question:
What is the name of the machine that ranked 4th and has 2 wins?
### Answer:
SELECT machine FROM table_name_59 WHERE rank = "4th" AND wins = 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_99 (home_team VARCHAR, away_team VARCHAR)
### Question:
When the Away team is essendon, what's the Home team score?
### Answer:
SELECT home_team AS score FROM table_name_99 WHERE away_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_38 (to_par INTEGER, player VARCHAR)
### Question:
What is average to par when Bud Holscher is the player?
### Answer:
SELECT AVG(to_par) FROM table_name_38 WHERE player = "bud holscher" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_29395291_2 (subscribers__2006___thousands_ INTEGER, provider VARCHAR)
### Question:
What is the maximum number of 2006 subscribers for Glo Mobile?
### Answer:
SELECT MAX(subscribers__2006___thousands_) FROM table_29395291_2 WHERE provider = "Glo Mobile" |
Below is an context that describes a sql 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 (floors INTEGER, building VARCHAR)
### Question:
What are the number of floors for the building of td building redevelopment (office)?
### Answer:
SELECT AVG(floors) FROM table_name_45 WHERE building = "td building redevelopment (office)" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1606824_1 (area_km_2 VARCHAR, pop_density_people_km_2 VARCHAR)
### Question:
Name the number of area km 2 for population density is 87
### Answer:
SELECT COUNT(area_km_2) FROM table_1606824_1 WHERE pop_density_people_km_2 = "87" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1341930_5 (party VARCHAR, incumbent VARCHAR)
### Question:
Name the number of party with the incubent james william trimble
### Answer:
SELECT COUNT(party) FROM table_1341930_5 WHERE incumbent = "James William Trimble" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2190919_3 (avg_start VARCHAR, avg_finish VARCHAR)
### Question:
With an average finish of 29.0, what was the average start?
### Answer:
SELECT avg_start FROM table_2190919_3 WHERE avg_finish = "29.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_39 (opponent VARCHAR, date VARCHAR, week VARCHAR)
### Question:
Name the opponent for date of bye and week of 1
### Answer:
SELECT opponent FROM table_name_39 WHERE date = "bye" AND 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_81 (result VARCHAR, incumbent VARCHAR)
### Question:
What are incumbent William Vandever's results?
### Answer:
SELECT result FROM table_name_81 WHERE incumbent = "william vandever" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_15796072_1 (original_artist VARCHAR, order__number VARCHAR)
### Question:
Who was the original artist when the order number is 9?
### Answer:
SELECT original_artist FROM table_15796072_1 WHERE order__number = "9" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_43 (team_1 VARCHAR, team_2 VARCHAR)
### Question:
What is the team 1 with team 2 Mount Cameroon FC?
### Answer:
SELECT team_1 FROM table_name_43 WHERE team_2 = "mount cameroon fc" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_2 (district VARCHAR, incumbent VARCHAR, first_elected VARCHAR, result VARCHAR)
### Question:
Which District has a First elected of 1858, and a Result of retired republican gain, and an Incumbent of william millward?
### Answer:
SELECT district FROM table_name_2 WHERE first_elected = 1858 AND result = "retired republican gain" AND incumbent = "william millward" |
Below is an context that describes a sql 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 (score VARCHAR, money___$__ VARCHAR)
### Question:
What score won $36,090?
### Answer:
SELECT score FROM table_name_65 WHERE money___$__ = "36,090" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.