Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
46,700 | <question>: Where was home with a record of 7β5β2? <context>: CREATE TABLE table_name_77 (home VARCHAR, record VARCHAR) | SELECT home FROM table_name_77 WHERE record = "7β5β2" |
46,701 | <question>: On what date was the record 8β6β3? <context>: CREATE TABLE table_name_14 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_14 WHERE record = "8β6β3" |
46,702 | <question>: What was the score when Pittsburgh was the visitor? <context>: CREATE TABLE table_name_42 (score VARCHAR, visitor VARCHAR) | SELECT score FROM table_name_42 WHERE visitor = "pittsburgh" |
46,703 | <question>: On what date were the NY Rangers home? <context>: CREATE TABLE table_name_98 (date VARCHAR, home VARCHAR) | SELECT date FROM table_name_98 WHERE home = "ny rangers" |
46,704 | <question>: Which visitor had a record of 7β5β3? <context>: CREATE TABLE table_name_49 (visitor VARCHAR, record VARCHAR) | SELECT visitor FROM table_name_49 WHERE record = "7β5β3" |
46,705 | <question>: Who was home when Detroit was visiting with a score of 4 β 1? <context>: CREATE TABLE table_name_89 (home VARCHAR, visitor VARCHAR, score VARCHAR) | SELECT home FROM table_name_89 WHERE visitor = "detroit" AND score = "4 β 1" |
46,706 | <question>: What is the earliest date with Great Expectations label with LP format? <context>: CREATE TABLE table_name_92 (date INTEGER, label VARCHAR, format VARCHAR) | SELECT MIN(date) FROM table_name_92 WHERE label = "great expectations" AND format = "lp" |
46,707 | <question>: What format was used for Mobil 1? <context>: CREATE TABLE table_name_21 (format VARCHAR, catalog VARCHAR) | SELECT format FROM table_name_21 WHERE catalog = "mobil 1" |
46,708 | <question>: what team won the friendly match <context>: CREATE TABLE table_name_98 (result VARCHAR, competition VARCHAR) | SELECT result FROM table_name_98 WHERE competition = "friendly match" |
46,709 | <question>: Which Runner-up has a Last win smaller than 1998, and Wins of 1, and a Rank larger than 13? <context>: CREATE TABLE table_name_71 (runner_up VARCHAR, rank VARCHAR, last_win VARCHAR, wins VARCHAR) | SELECT COUNT(runner_up) FROM table_name_71 WHERE last_win < 1998 AND wins = 1 AND rank > 13 |
46,710 | <question>: How many Last wins have a Club of mansfield town, and Wins smaller than 1? <context>: CREATE TABLE table_name_42 (last_win VARCHAR, club VARCHAR, wins VARCHAR) | SELECT COUNT(last_win) FROM table_name_42 WHERE club = "mansfield town" AND wins < 1 |
46,711 | <question>: Which Driver has a Date of 16th september 1951, and a Race of dns? <context>: CREATE TABLE table_name_8 (driver VARCHAR, date VARCHAR, race VARCHAR) | SELECT driver FROM table_name_8 WHERE date = "16th september 1951" AND race = "dns" |
46,712 | <question>: At which race did reg parnell win the goodwood trophy? <context>: CREATE TABLE table_name_47 (race VARCHAR, event VARCHAR, driver VARCHAR) | SELECT race FROM table_name_47 WHERE event = "goodwood trophy" AND driver = "reg parnell" |
46,713 | <question>: Which Race has a Date of 31st may 1953, and an Event of grand prix de l'albigeois final? <context>: CREATE TABLE table_name_20 (race VARCHAR, date VARCHAR, event VARCHAR) | SELECT race FROM table_name_20 WHERE date = "31st may 1953" AND event = "grand prix de l'albigeois final" |
46,714 | <question>: What's the average total cargo in metric tonnes that has an 11.8% Change? <context>: CREATE TABLE table_name_97 (total_cargo__metric_tonnes_ INTEGER, _percentage_change VARCHAR) | SELECT AVG(total_cargo__metric_tonnes_) FROM table_name_97 WHERE _percentage_change = "11.8%" |
46,715 | <question>: What is the highest rank of Tokyo International Airport? <context>: CREATE TABLE table_name_72 (rank INTEGER, airport VARCHAR) | SELECT MAX(rank) FROM table_name_72 WHERE airport = "tokyo international airport" |
46,716 | <question>: Where the games are smaller than 5 and the points are 6, what is the average lost? <context>: CREATE TABLE table_name_92 (lost INTEGER, points VARCHAR, games VARCHAR) | SELECT AVG(lost) FROM table_name_92 WHERE points = 6 AND games < 5 |
46,717 | <question>: with build 5/69-6/69 what's the order? <context>: CREATE TABLE table_name_89 (order INTEGER, built VARCHAR) | SELECT SUM(order) FROM table_name_89 WHERE built = "5/69-6/69" |
46,718 | <question>: Which Outcome has a Score of 6β2, 6β2? <context>: CREATE TABLE table_name_20 (outcome VARCHAR, score VARCHAR) | SELECT outcome FROM table_name_20 WHERE score = "6β2, 6β2" |
46,719 | <question>: Which Date has an Outcome of winner, and a Score of 7β5, 6β4? <context>: CREATE TABLE table_name_69 (date VARCHAR, outcome VARCHAR, score VARCHAR) | SELECT date FROM table_name_69 WHERE outcome = "winner" AND score = "7β5, 6β4" |
46,720 | <question>: Which Tournament has an Outcome of winner, and a Surface of clay, and a Score of 6β4, 6β1? <context>: CREATE TABLE table_name_23 (tournament VARCHAR, score VARCHAR, outcome VARCHAR, surface VARCHAR) | SELECT tournament FROM table_name_23 WHERE outcome = "winner" AND surface = "clay" AND score = "6β4, 6β1" |
46,721 | <question>: What was the outcome in mari andersson's tournament? <context>: CREATE TABLE table_name_41 (outcome VARCHAR, opponent VARCHAR) | SELECT outcome FROM table_name_41 WHERE opponent = "mari andersson" |
46,722 | <question>: What's the loss of the game with the opponent of the Nationals with a score of 7-1? <context>: CREATE TABLE table_name_69 (loss VARCHAR, opponent VARCHAR, score VARCHAR) | SELECT loss FROM table_name_69 WHERE opponent = "nationals" AND score = "7-1" |
46,723 | <question>: Which opponent has a record of 70-52? <context>: CREATE TABLE table_name_77 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_77 WHERE record = "70-52" |
46,724 | <question>: What is the attendance of the game that has the opponent of The Nationals with a record of 68-51? <context>: CREATE TABLE table_name_42 (attendance INTEGER, opponent VARCHAR, record VARCHAR) | SELECT SUM(attendance) FROM table_name_42 WHERE opponent = "nationals" AND record = "68-51" |
46,725 | <question>: What's the attendance of the game with a score of 5-4? <context>: CREATE TABLE table_name_52 (attendance VARCHAR, score VARCHAR) | SELECT attendance FROM table_name_52 WHERE score = "5-4" |
46,726 | <question>: Who's the opponent of the game with the record 64-51? <context>: CREATE TABLE table_name_60 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_60 WHERE record = "64-51" |
46,727 | <question>: Who were the opponents in games before number 54? <context>: CREATE TABLE table_name_41 (opponent VARCHAR, game INTEGER) | SELECT opponent FROM table_name_41 WHERE game < 54 |
46,728 | <question>: what was the score of bert yancey <context>: CREATE TABLE table_name_83 (score VARCHAR, player VARCHAR) | SELECT score FROM table_name_83 WHERE player = "bert yancey" |
46,729 | <question>: What is the Length/Fuel of the bus with a Quantity of 30? <context>: CREATE TABLE table_name_22 (length_fuel VARCHAR, quantity VARCHAR) | SELECT length_fuel FROM table_name_22 WHERE quantity = 30 |
46,730 | <question>: What is the Length/Fuel of the bus built between 2000-2003 with a high Floor Styling? <context>: CREATE TABLE table_name_91 (length_fuel VARCHAR, floor_styling VARCHAR, year_built VARCHAR) | SELECT length_fuel FROM table_name_91 WHERE floor_styling = "high" AND year_built = "2000-2003" |
46,731 | <question>: In what Venue was the game with a Friendly Competition and 1 Goal played? <context>: CREATE TABLE table_name_29 (venue VARCHAR, competition VARCHAR, goal VARCHAR) | SELECT venue FROM table_name_29 WHERE competition = "friendly" AND goal = 1 |
46,732 | <question>: What is the amount of money that a +5 to par with a score of 76-69-70-70=285? <context>: CREATE TABLE table_name_28 (money___ VARCHAR, to_par VARCHAR, score VARCHAR) | SELECT COUNT(money___) AS $__ FROM table_name_28 WHERE to_par = "+5" AND score = 76 - 69 - 70 - 70 = 285 |
46,733 | <question>: What is the name of the player with a 71-69-71-69=280 score? <context>: CREATE TABLE table_name_79 (player VARCHAR, score VARCHAR) | SELECT player FROM table_name_79 WHERE score = 71 - 69 - 71 - 69 = 280 |
46,734 | <question>: Which average Game # has a Home of san jose, and Points smaller than 71? <context>: CREATE TABLE table_name_95 (game__number INTEGER, home VARCHAR, points VARCHAR) | SELECT AVG(game__number) FROM table_name_95 WHERE home = "san jose" AND points < 71 |
46,735 | <question>: Which Home has a Game # of 59? <context>: CREATE TABLE table_name_27 (home VARCHAR, game__number VARCHAR) | SELECT home FROM table_name_27 WHERE game__number = 59 |
46,736 | <question>: Which Visitor has a Game # larger than 62, and a Date of february 25? <context>: CREATE TABLE table_name_99 (visitor VARCHAR, game__number VARCHAR, date VARCHAR) | SELECT visitor FROM table_name_99 WHERE game__number > 62 AND date = "february 25" |
46,737 | <question>: with delivery date of 2001 2001 what is the owns? <context>: CREATE TABLE table_name_93 (owns VARCHAR, delivery_date VARCHAR) | SELECT owns FROM table_name_93 WHERE delivery_date = "2001 2001" |
46,738 | <question>: with delivery date of 2001 2001 what is gross tonnage? <context>: CREATE TABLE table_name_35 (gross_tonnage INTEGER, delivery_date VARCHAR) | SELECT AVG(gross_tonnage) FROM table_name_35 WHERE delivery_date = "2001 2001" |
46,739 | <question>: with delivery date 1997 1997 what is the owns? <context>: CREATE TABLE table_name_65 (owns VARCHAR, delivery_date VARCHAR) | SELECT owns FROM table_name_65 WHERE delivery_date = "1997 1997" |
46,740 | <question>: Which conference does the school from Gainesville, Florida, play in? <context>: CREATE TABLE table_name_5 (present_conference VARCHAR, location VARCHAR) | SELECT present_conference FROM table_name_5 WHERE location = "gainesville, florida" |
46,741 | <question>: What is the number of enrollments for teams named the Buccaneers founded before 1911? <context>: CREATE TABLE table_name_23 (enrollment VARCHAR, nickname VARCHAR, founded VARCHAR) | SELECT COUNT(enrollment) FROM table_name_23 WHERE nickname = "buccaneers" AND founded < 1911 |
46,742 | <question>: What is the highest chart number for the song Yardbirds aka Roger the Engineer? <context>: CREATE TABLE table_name_17 (chart_no INTEGER, title VARCHAR) | SELECT MAX(chart_no) FROM table_name_17 WHERE title = "yardbirds aka roger the engineer" |
46,743 | <question>: What is the average chart number for 11/1965? <context>: CREATE TABLE table_name_97 (chart_no INTEGER, date VARCHAR) | SELECT AVG(chart_no) FROM table_name_97 WHERE date = "11/1965" |
46,744 | <question>: What is origin country for a title that charted at 52? <context>: CREATE TABLE table_name_84 (origin VARCHAR, chart_no VARCHAR) | SELECT origin FROM table_name_84 WHERE chart_no = 52 |
46,745 | <question>: What is the Record of the Game after 40 with New York Rangers as Opponent? <context>: CREATE TABLE table_name_5 (record VARCHAR, game VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_5 WHERE game > 40 AND opponent = "new york rangers" |
46,746 | <question>: When did Adam Thompson play in the final? <context>: CREATE TABLE table_name_47 (date VARCHAR, opponent_in_the_final VARCHAR) | SELECT date FROM table_name_47 WHERE opponent_in_the_final = "adam thompson" |
46,747 | <question>: When was the Lagos tournament? <context>: CREATE TABLE table_name_84 (date VARCHAR, tournament VARCHAR) | SELECT date FROM table_name_84 WHERE tournament = "lagos" |
46,748 | <question>: What was the score against the phillies on may 24? <context>: CREATE TABLE table_name_28 (score VARCHAR, opponent VARCHAR, date VARCHAR) | SELECT score FROM table_name_28 WHERE opponent = "phillies" AND date = "may 24" |
46,749 | <question>: Opponent of new england patriots had what attendance? <context>: CREATE TABLE table_name_13 (attendance VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_13 WHERE opponent = "new england patriots" |
46,750 | <question>: Attendance of 55,340 had what opponent? <context>: CREATE TABLE table_name_58 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_58 WHERE attendance = "55,340" |
46,751 | <question>: Week smaller than 4, and a Game Site of rca dome, and a Opponent of new england patriots involves what date? <context>: CREATE TABLE table_name_12 (date VARCHAR, opponent VARCHAR, week VARCHAR, game_site VARCHAR) | SELECT date FROM table_name_12 WHERE week < 4 AND game_site = "rca dome" AND opponent = "new england patriots" |
46,752 | <question>: Record of 0β8 had what result? <context>: CREATE TABLE table_name_33 (result VARCHAR, record VARCHAR) | SELECT result FROM table_name_33 WHERE record = "0β8" |
46,753 | <question>: Record of 0β8 had what lowest week? <context>: CREATE TABLE table_name_25 (week INTEGER, record VARCHAR) | SELECT MIN(week) FROM table_name_25 WHERE record = "0β8" |
46,754 | <question>: What was the score when the visitor was pittsburgh? <context>: CREATE TABLE table_name_51 (score VARCHAR, visitor VARCHAR) | SELECT score FROM table_name_51 WHERE visitor = "pittsburgh" |
46,755 | <question>: What was the decision on November 26? <context>: CREATE TABLE table_name_18 (decision VARCHAR, date VARCHAR) | SELECT decision FROM table_name_18 WHERE date = "november 26" |
46,756 | <question>: What is the USN 2013 ranking with a BW 2013 ranking less than 1000, a Forbes 2011 ranking larger than 17, and a CNN 2011 ranking less than 13? <context>: CREATE TABLE table_name_63 (usn_2013 INTEGER, cnn_2011 VARCHAR, bw_2013 VARCHAR, forbes_2011 VARCHAR) | SELECT SUM(usn_2013) FROM table_name_63 WHERE bw_2013 < 1000 AND forbes_2011 > 17 AND cnn_2011 < 13 |
46,757 | <question>: What is the average AE 2011 ranking with a Forbes 2011 ranking of 24 and a FT 2011 ranking less than 44? <context>: CREATE TABLE table_name_21 (ae_2011 INTEGER, forbes_2011 VARCHAR, ft_2011 VARCHAR) | SELECT AVG(ae_2011) FROM table_name_21 WHERE forbes_2011 = 24 AND ft_2011 < 44 |
46,758 | <question>: Who did they play at lincoln financial field at 8:30 (ET) after week 14? <context>: CREATE TABLE table_name_88 (opponent VARCHAR, time__et_ VARCHAR, week VARCHAR, game_site VARCHAR) | SELECT opponent FROM table_name_88 WHERE week > 14 AND game_site = "lincoln financial field" AND time__et_ = "8:30" |
46,759 | <question>: What is the average rank for nations with fewer than 0 gold medals? <context>: CREATE TABLE table_name_86 (rank INTEGER, gold INTEGER) | SELECT AVG(rank) FROM table_name_86 WHERE gold < 0 |
46,760 | <question>: What is the total number of bronze medals with more than 1 medal total and fewer than 1 silver medal? <context>: CREATE TABLE table_name_8 (bronze VARCHAR, total VARCHAR, silver VARCHAR) | SELECT COUNT(bronze) FROM table_name_8 WHERE total > 1 AND silver < 1 |
46,761 | <question>: What is the highest rank of a nation with fewer than 0 silver medals? <context>: CREATE TABLE table_name_43 (rank INTEGER, silver INTEGER) | SELECT MAX(rank) FROM table_name_43 WHERE silver < 0 |
46,762 | <question>: Which Bats have a First of josh, and Throws of r, and a Surname of cakebread? <context>: CREATE TABLE table_name_90 (bats VARCHAR, surname VARCHAR, first VARCHAR, throws VARCHAR) | SELECT bats FROM table_name_90 WHERE first = "josh" AND throws = "r" AND surname = "cakebread" |
46,763 | <question>: Which DOB has Throws of r, and a Position of c, and a First of torey? <context>: CREATE TABLE table_name_25 (dob VARCHAR, first VARCHAR, throws VARCHAR, position VARCHAR) | SELECT dob FROM table_name_25 WHERE throws = "r" AND position = "c" AND first = "torey" |
46,764 | <question>: Which DOB has a Surname of cresswell? <context>: CREATE TABLE table_name_40 (dob VARCHAR, surname VARCHAR) | SELECT dob FROM table_name_40 WHERE surname = "cresswell" |
46,765 | <question>: Which DOB has Bats of r, and Throws of r, and a Position of rhp, and a First of john? <context>: CREATE TABLE table_name_58 (dob VARCHAR, first VARCHAR, position VARCHAR, bats VARCHAR, throws VARCHAR) | SELECT dob FROM table_name_58 WHERE bats = "r" AND throws = "r" AND position = "rhp" AND first = "john" |
46,766 | <question>: Which Position did Ruzic play? <context>: CREATE TABLE table_name_30 (position VARCHAR, surname VARCHAR) | SELECT position FROM table_name_30 WHERE surname = "ruzic" |
46,767 | <question>: How many throws did Torey have? <context>: CREATE TABLE table_name_77 (throws VARCHAR, first VARCHAR) | SELECT throws FROM table_name_77 WHERE first = "torey" |
46,768 | <question>: Which Ties is the highest one that has Losses smaller than 9, and Starts of 26, and Wins smaller than 21? <context>: CREATE TABLE table_name_65 (ties INTEGER, wins VARCHAR, losses VARCHAR, starts VARCHAR) | SELECT MAX(ties) FROM table_name_65 WHERE losses < 9 AND starts = 26 AND wins < 21 |
46,769 | <question>: Which Win % has a Name of tony rice, and Wins smaller than 28? <context>: CREATE TABLE table_name_73 (win__percentage VARCHAR, name VARCHAR, wins VARCHAR) | SELECT COUNT(win__percentage) FROM table_name_73 WHERE name = "tony rice" AND wins < 28 |
46,770 | <question>: Which Wins have a Win % smaller than 0.8270000000000001, and a Name of rick mirer, and Ties smaller than 1? <context>: CREATE TABLE table_name_17 (wins INTEGER, ties VARCHAR, win__percentage VARCHAR, name VARCHAR) | SELECT SUM(wins) FROM table_name_17 WHERE win__percentage < 0.8270000000000001 AND name = "rick mirer" AND ties < 1 |
46,771 | <question>: How many Losses have a Name of blair kiel? <context>: CREATE TABLE table_name_45 (losses VARCHAR, name VARCHAR) | SELECT COUNT(losses) FROM table_name_45 WHERE name = "blair kiel" |
46,772 | <question>: Which Losses have a Name of jimmy clausen? <context>: CREATE TABLE table_name_39 (losses INTEGER, name VARCHAR) | SELECT AVG(losses) FROM table_name_39 WHERE name = "jimmy clausen" |
46,773 | <question>: what is the number of attendance on june 24 <context>: CREATE TABLE table_name_8 (attendance VARCHAR, date VARCHAR) | SELECT COUNT(attendance) FROM table_name_8 WHERE date = "june 24" |
46,774 | <question>: Home of dallas happened on what date? <context>: CREATE TABLE table_name_95 (date VARCHAR, home VARCHAR) | SELECT date FROM table_name_95 WHERE home = "dallas" |
46,775 | <question>: Home of buffalo happened on what date? <context>: CREATE TABLE table_name_39 (date VARCHAR, home VARCHAR) | SELECT date FROM table_name_39 WHERE home = "buffalo" |
46,776 | <question>: Visitor of dallas, and a Date of june 12 had what highest attendance? <context>: CREATE TABLE table_name_16 (attendance INTEGER, visitor VARCHAR, date VARCHAR) | SELECT MAX(attendance) FROM table_name_16 WHERE visitor = "dallas" AND date = "june 12" |
46,777 | <question>: On which date was the position less than 4 at Piraeus? <context>: CREATE TABLE table_name_27 (date VARCHAR, pos VARCHAR, venue VARCHAR) | SELECT date FROM table_name_27 WHERE pos < 4 AND venue = "piraeus" |
46,778 | <question>: Which team had 64 laps and 13 points? <context>: CREATE TABLE table_name_39 (team VARCHAR, laps VARCHAR, points VARCHAR) | SELECT team FROM table_name_39 WHERE laps = 64 AND points = 13 |
46,779 | <question>: How many laps did the team with a time/retired of +1.906 have? <context>: CREATE TABLE table_name_90 (laps VARCHAR, time_retired VARCHAR) | SELECT COUNT(laps) FROM table_name_90 WHERE time_retired = "+1.906" |
46,780 | <question>: What is the time/retired of the team with a grid of 14? <context>: CREATE TABLE table_name_62 (time_retired VARCHAR, grid VARCHAR) | SELECT time_retired FROM table_name_62 WHERE grid = 14 |
46,781 | <question>: What is the lowest grid of pkv racing, which had 13 points and less than 64 laps? <context>: CREATE TABLE table_name_28 (grid INTEGER, laps VARCHAR, team VARCHAR, points VARCHAR) | SELECT MIN(grid) FROM table_name_28 WHERE team = "pkv racing" AND points = 13 AND laps < 64 |
46,782 | <question>: What is the total grid of the team with a time/retired of +7.346? <context>: CREATE TABLE table_name_53 (grid VARCHAR, time_retired VARCHAR) | SELECT COUNT(grid) FROM table_name_53 WHERE time_retired = "+7.346" |
46,783 | <question>: What is the grid of pkv racing with the driver oriol serviΓ ? <context>: CREATE TABLE table_name_56 (grid INTEGER, team VARCHAR, driver VARCHAR) | SELECT SUM(grid) FROM table_name_56 WHERE team = "pkv racing" AND driver = "oriol serviΓ " |
46,784 | <question>: When Cancelable of yes, bubble of yes and a Category of keyboard, what was the Attribute? <context>: CREATE TABLE table_name_52 (attribute VARCHAR, category VARCHAR, cancelable VARCHAR, bubbles VARCHAR) | SELECT attribute FROM table_name_52 WHERE cancelable = "yes" AND bubbles = "yes" AND category = "keyboard" |
46,785 | <question>: When Bubbles of no, and a Category of miscellaneous, and a Type of propertychange, what was the Cancelable? <context>: CREATE TABLE table_name_97 (cancelable VARCHAR, type VARCHAR, bubbles VARCHAR, category VARCHAR) | SELECT cancelable FROM table_name_97 WHERE bubbles = "no" AND category = "miscellaneous" AND type = "propertychange" |
46,786 | <question>: When Type was rowexit what was the Category? <context>: CREATE TABLE table_name_88 (category VARCHAR, type VARCHAR) | SELECT category FROM table_name_88 WHERE type = "rowexit" |
46,787 | <question>: When Cancelable of yes, and a Type of drag, what was the Category? <context>: CREATE TABLE table_name_72 (category VARCHAR, cancelable VARCHAR, type VARCHAR) | SELECT category FROM table_name_72 WHERE cancelable = "yes" AND type = "drag" |
46,788 | <question>: When Event has Bubbles of yes, Cancelable of yes, Category of mouse, and a Type of <context>menu what is the Attribute? <context>: CREATE TABLE table_name_41 (attribute VARCHAR, type VARCHAR, category VARCHAR, bubbles VARCHAR, cancelable VARCHAR) | SELECT attribute FROM table_name_41 WHERE bubbles = "yes" AND cancelable = "yes" AND category = "mouse" AND type = "contextmenu" |
46,789 | <question>: Let's say Type is of datasetcomplete, what is the Attribute? <context>: CREATE TABLE table_name_62 (attribute VARCHAR, type VARCHAR) | SELECT attribute FROM table_name_62 WHERE type = "datasetcomplete" |
46,790 | <question>: What is the name of the parish that has a former local authority of St Neots urban district? <context>: CREATE TABLE table_name_71 (name VARCHAR, former_local_authority VARCHAR) | SELECT name FROM table_name_71 WHERE former_local_authority = "st neots urban district" |
46,791 | <question>: What district is the parish who had the South Cambridgeshire rural district as the former local authority? <context>: CREATE TABLE table_name_71 (district VARCHAR, former_local_authority VARCHAR) | SELECT district FROM table_name_71 WHERE former_local_authority = "south cambridgeshire rural district" |
46,792 | <question>: What district is St Martin's Without parish in with a population less than 75? <context>: CREATE TABLE table_name_73 (district VARCHAR, population VARCHAR, name VARCHAR) | SELECT district FROM table_name_73 WHERE population < 75 AND name = "st martin's without" |
46,793 | <question>: Who was the home team when FK kom were the guests? <context>: CREATE TABLE table_name_84 (home VARCHAR, guest VARCHAR) | SELECT home FROM table_name_84 WHERE guest = "fk kom" |
46,794 | <question>: What venue was the match against the guest team, FK ibar, played at? <context>: CREATE TABLE table_name_65 (venue VARCHAR, guest VARCHAR) | SELECT venue FROM table_name_65 WHERE guest = "fk ibar" |
46,795 | <question>: What's the Score with a Home of Scotland and Date of 24 February? <context>: CREATE TABLE table_name_12 (score VARCHAR, home VARCHAR, date VARCHAR) | SELECT score FROM table_name_12 WHERE home = "scotland" AND date = "24 february" |
46,796 | <question>: What round was john sutro, tackle, drafter with a pick lower than 79? <context>: CREATE TABLE table_name_11 (round INTEGER, pick VARCHAR, position VARCHAR, player VARCHAR) | SELECT SUM(round) FROM table_name_11 WHERE position = "tackle" AND player = "john sutro" AND pick < 79 |
46,797 | <question>: What pick was roger holdinsky? <context>: CREATE TABLE table_name_26 (pick VARCHAR, player VARCHAR) | SELECT pick FROM table_name_26 WHERE player = "roger holdinsky" |
46,798 | <question>: When was chuck morris, back, drafted? <context>: CREATE TABLE table_name_51 (pick INTEGER, position VARCHAR, player VARCHAR) | SELECT MIN(pick) FROM table_name_51 WHERE position = "back" AND player = "chuck morris" |
46,799 | <question>: What wss the average round drafted for xavier players? <context>: CREATE TABLE table_name_5 (round INTEGER, school VARCHAR) | SELECT AVG(round) FROM table_name_5 WHERE school = "xavier" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.