Unnamed: 0
int64 0
60k
| text
stringlengths 109
1.06k
|
---|---|
55,600 |
<question>: what is the total series percent that has total attempted less than 49, and a percent made of 0.777 <context>: CREATE TABLE table_name_63 (series_percent VARCHAR, total_attempted VARCHAR, percent_made VARCHAR) <answer>: SELECT COUNT(series_percent) FROM table_name_63 WHERE total_attempted < 49 AND percent_made = 0.777
|
55,601 |
<question>: what is the total attempted with a total made 16 <context>: CREATE TABLE table_name_21 (total_attempted VARCHAR, total_made VARCHAR) <answer>: SELECT COUNT(total_attempted) FROM table_name_21 WHERE total_made = 16
|
55,602 |
<question>: What is the sum of District, when Took Office is greater than 1981, and when Senator is Cyndi Taylor Krier? <context>: CREATE TABLE table_name_67 (district INTEGER, took_office VARCHAR, senator VARCHAR) <answer>: SELECT SUM(district) FROM table_name_67 WHERE took_office > 1981 AND senator = "cyndi taylor krier"
|
55,603 |
<question>: What is Party, when District is less than 10, when Took Office is less than 1991, and when Home Town is Mount Pleasant? <context>: CREATE TABLE table_name_22 (party VARCHAR, home_town VARCHAR, district VARCHAR, took_office VARCHAR) <answer>: SELECT party FROM table_name_22 WHERE district < 10 AND took_office < 1991 AND home_town = "mount pleasant"
|
55,604 |
<question>: What is the lowest Took Office, when Senator is Eddie Bernice Johnson, and when District is greater than 23? <context>: CREATE TABLE table_name_50 (took_office INTEGER, senator VARCHAR, district VARCHAR) <answer>: SELECT MIN(took_office) FROM table_name_50 WHERE senator = "eddie bernice johnson" AND district > 23
|
55,605 |
<question>: In which period did Stanislav Chistov get a penalty? <context>: CREATE TABLE table_name_9 (period VARCHAR, player VARCHAR) <answer>: SELECT period FROM table_name_9 WHERE player = "stanislav chistov"
|
55,606 |
<question>: What was a penalty given for at time 29:17? <context>: CREATE TABLE table_name_89 (penalty VARCHAR, time VARCHAR) <answer>: SELECT penalty FROM table_name_89 WHERE time = "29:17"
|
55,607 |
<question>: What team was the player that received a penalty at time 32:17 playing for? <context>: CREATE TABLE table_name_13 (team VARCHAR, time VARCHAR) <answer>: SELECT team FROM table_name_13 WHERE time = "32:17"
|
55,608 |
<question>: What team was Ryan Callahan, who received a penalty for roughing, playing for? <context>: CREATE TABLE table_name_87 (team VARCHAR, penalty VARCHAR, player VARCHAR) <answer>: SELECT team FROM table_name_87 WHERE penalty = "roughing" AND player = "ryan callahan"
|
55,609 |
<question>: Who was the head coach when the opponent was Arsenal? <context>: CREATE TABLE table_name_95 (head_coach VARCHAR, opponent VARCHAR) <answer>: SELECT head_coach FROM table_name_95 WHERE opponent = "arsenal"
|
55,610 |
<question>: Who was the opponent when the head coach was B. Sathianathan? <context>: CREATE TABLE table_name_33 (opponent VARCHAR, head_coach VARCHAR) <answer>: SELECT opponent FROM table_name_33 WHERE head_coach = "b. sathianathan"
|
55,611 |
<question>: When was the opponent Arsenal? <context>: CREATE TABLE table_name_62 (date VARCHAR, opponent VARCHAR) <answer>: SELECT date FROM table_name_62 WHERE opponent = "arsenal"
|
55,612 |
<question>: What was the result when the opponent was Arsenal? <context>: CREATE TABLE table_name_56 (result VARCHAR, opponent VARCHAR) <answer>: SELECT result FROM table_name_56 WHERE opponent = "arsenal"
|
55,613 |
<question>: What is the sum of the home wins of the Boston College Eagles, which has more than 6 wins? <context>: CREATE TABLE table_name_89 (Home INTEGER, institution VARCHAR, wins VARCHAR) <answer>: SELECT SUM(Home) AS wins FROM table_name_89 WHERE institution = "boston college eagles" AND wins > 6
|
55,614 |
<question>: What is the Record when Evangelista Cyborg was the opponent? <context>: CREATE TABLE table_name_40 (record VARCHAR, opponent VARCHAR) <answer>: SELECT record FROM table_name_40 WHERE opponent = "evangelista cyborg"
|
55,615 |
<question>: What is the Method for Brazil? <context>: CREATE TABLE table_name_55 (method VARCHAR, location VARCHAR) <answer>: SELECT method FROM table_name_55 WHERE location = "brazil"
|
55,616 |
<question>: What round was the method submission (punches)? <context>: CREATE TABLE table_name_18 (round VARCHAR, method VARCHAR) <answer>: SELECT COUNT(round) FROM table_name_18 WHERE method = "submission (punches)"
|
55,617 |
<question>: What is the method when the record was 3-2? <context>: CREATE TABLE table_name_63 (method VARCHAR, record VARCHAR) <answer>: SELECT method FROM table_name_63 WHERE record = "3-2"
|
55,618 |
<question>: What is the method when the round shows 3? <context>: CREATE TABLE table_name_35 (method VARCHAR, round VARCHAR) <answer>: SELECT method FROM table_name_35 WHERE round = 3
|
55,619 |
<question>: What was the run 3 for the team in rank 12? <context>: CREATE TABLE table_name_4 (run_3 VARCHAR, rank VARCHAR) <answer>: SELECT run_3 FROM table_name_4 WHERE rank = "12"
|
55,620 |
<question>: What was the run 3 for the team with a run 1 of 1:17.6? <context>: CREATE TABLE table_name_40 (run_3 VARCHAR, run_1 VARCHAR) <answer>: SELECT run_3 FROM table_name_40 WHERE run_1 = "1:17.6"
|
55,621 |
<question>: What was the rank of the team with a run 2 of 1:20.8 and a run 4 of 1:23.0? <context>: CREATE TABLE table_name_71 (rank VARCHAR, run_2 VARCHAR, run_4 VARCHAR) <answer>: SELECT rank FROM table_name_71 WHERE run_2 = "1:20.8" AND run_4 = "1:23.0"
|
55,622 |
<question>: What was the run 1 for the team with a run 3 of 1:21.4 and a run 4 of 1:23.0? <context>: CREATE TABLE table_name_9 (run_1 VARCHAR, run_3 VARCHAR, run_4 VARCHAR) <answer>: SELECT run_1 FROM table_name_9 WHERE run_3 = "1:21.4" AND run_4 = "1:23.0"
|
55,623 |
<question>: Which team had a run 4 of 1:24.4? <context>: CREATE TABLE table_name_7 (team VARCHAR, run_4 VARCHAR) <answer>: SELECT team FROM table_name_7 WHERE run_4 = "1:24.4"
|
55,624 |
<question>: What is the Attendance at the game against the Oakland Raiders? <context>: CREATE TABLE table_name_40 (attendance VARCHAR, opponent VARCHAR) <answer>: SELECT attendance FROM table_name_40 WHERE opponent = "oakland raiders"
|
55,625 |
<question>: What was the Attendance in Week 10? <context>: CREATE TABLE table_name_59 (attendance VARCHAR, week VARCHAR) <answer>: SELECT attendance FROM table_name_59 WHERE week = 10
|
55,626 |
<question>: Which Principal activities have an Incorporated in of france? <context>: CREATE TABLE table_name_76 (principal_activities VARCHAR, incorporated_in VARCHAR) <answer>: SELECT principal_activities FROM table_name_76 WHERE incorporated_in = "france"
|
55,627 |
<question>: Which Type has an Incorporated in of netherlands, a Principal activities of airline, and a Company of transavia.com? <context>: CREATE TABLE table_name_54 (type VARCHAR, company VARCHAR, incorporated_in VARCHAR, principal_activities VARCHAR) <answer>: SELECT type FROM table_name_54 WHERE incorporated_in = "netherlands" AND principal_activities = "airline" AND company = "transavia.com"
|
55,628 |
<question>: Which Type has a Company of epcor? <context>: CREATE TABLE table_name_21 (type VARCHAR, company VARCHAR) <answer>: SELECT type FROM table_name_21 WHERE company = "epcor"
|
55,629 |
<question>: Which Type has a Principal activities of health services? <context>: CREATE TABLE table_name_28 (type VARCHAR, principal_activities VARCHAR) <answer>: SELECT type FROM table_name_28 WHERE principal_activities = "health services"
|
55,630 |
<question>: For the verb dhoa, what is the 2VF? <context>: CREATE TABLE table_name_75 (verb VARCHAR) <answer>: SELECT 2 AS __vf_ FROM table_name_75 WHERE verb = "dhoa"
|
55,631 |
<question>: What is the name of the subject who ran in the general election for Queen Anne's County State's Attorney? <context>: CREATE TABLE table_name_63 (subject VARCHAR, election VARCHAR, office VARCHAR) <answer>: SELECT subject FROM table_name_63 WHERE election = "general" AND office = "queen anne's county state's attorney"
|
55,632 |
<question>: Who was the writer of The Year of the Cat from the BBV? <context>: CREATE TABLE table_name_2 (writer VARCHAR, company VARCHAR, title VARCHAR) <answer>: SELECT writer FROM table_name_2 WHERE company = "bbv" AND title = "the year of the cat"
|
55,633 |
<question>: How many Goals For have Drawn of 10? <context>: CREATE TABLE table_name_83 (goals_for VARCHAR, drawn VARCHAR) <answer>: SELECT COUNT(goals_for) FROM table_name_83 WHERE drawn = 10
|
55,634 |
<question>: Which Lost has Drawn larger than 12, and Goals Against of 54? <context>: CREATE TABLE table_name_94 (lost INTEGER, drawn VARCHAR, goals_against VARCHAR) <answer>: SELECT MAX(lost) FROM table_name_94 WHERE drawn > 12 AND goals_against = 54
|
55,635 |
<question>: What is the record for the Superbrawl 21? <context>: CREATE TABLE table_name_68 (record VARCHAR, event VARCHAR) <answer>: SELECT record FROM table_name_68 WHERE event = "superbrawl 21"
|
55,636 |
<question>: What location shows round was 1, and against Ricky Shivers? <context>: CREATE TABLE table_name_43 (location VARCHAR, round VARCHAR, opponent VARCHAR) <answer>: SELECT location FROM table_name_43 WHERE round = 1 AND opponent = "ricky shivers"
|
55,637 |
<question>: What is the method for a match with a Round larger than 2, he took a loss, and 15β3 was the record? <context>: CREATE TABLE table_name_67 (method VARCHAR, record VARCHAR, round VARCHAR, res VARCHAR) <answer>: SELECT method FROM table_name_67 WHERE round > 2 AND res = "loss" AND record = "15β3"
|
55,638 |
<question>: Which Position has a Pick of 11 (via calgary)? <context>: CREATE TABLE table_name_8 (position VARCHAR, pick VARCHAR) <answer>: SELECT position FROM table_name_8 WHERE pick = "11 (via calgary)"
|
55,639 |
<question>: Which Round has a Pick of 25 (via hamilton)? <context>: CREATE TABLE table_name_88 (round INTEGER, pick VARCHAR) <answer>: SELECT SUM(round) FROM table_name_88 WHERE pick = "25 (via hamilton)"
|
55,640 |
<question>: Which School/Club Team has a Round larger than 3, and a Player of sammy okpro? <context>: CREATE TABLE table_name_15 (school_club_team VARCHAR, round VARCHAR, player VARCHAR) <answer>: SELECT school_club_team FROM table_name_15 WHERE round > 3 AND player = "sammy okpro"
|
55,641 |
<question>: Which Round has a Player of sammy okpro? <context>: CREATE TABLE table_name_32 (round INTEGER, player VARCHAR) <answer>: SELECT AVG(round) FROM table_name_32 WHERE player = "sammy okpro"
|
55,642 |
<question>: Which Position has a Round of 4, and a School/Club Team of concordia? <context>: CREATE TABLE table_name_34 (position VARCHAR, round VARCHAR, school_club_team VARCHAR) <answer>: SELECT position FROM table_name_34 WHERE round = 4 AND school_club_team = "concordia"
|
55,643 |
<question>: What is the Score of the game with a Record of 29β23β13? <context>: CREATE TABLE table_name_21 (score VARCHAR, record VARCHAR) <answer>: SELECT score FROM table_name_21 WHERE record = "29β23β13"
|
55,644 |
<question>: What is the Visitor of the game with a Record of 21β17β13? <context>: CREATE TABLE table_name_70 (visitor VARCHAR, record VARCHAR) <answer>: SELECT visitor FROM table_name_70 WHERE record = "21β17β13"
|
55,645 |
<question>: What is the Visitor of the game on December 25? <context>: CREATE TABLE table_name_26 (visitor VARCHAR, date VARCHAR) <answer>: SELECT visitor FROM table_name_26 WHERE date = "december 25"
|
55,646 |
<question>: What is the Date of the game with a Record of 8β10β6? <context>: CREATE TABLE table_name_99 (date VARCHAR, record VARCHAR) <answer>: SELECT date FROM table_name_99 WHERE record = "8β10β6"
|
55,647 |
<question>: What is the Date of the game with a Record of 1β2β4? <context>: CREATE TABLE table_name_27 (date VARCHAR, record VARCHAR) <answer>: SELECT date FROM table_name_27 WHERE record = "1β2β4"
|
55,648 |
<question>: What is the Date of the game with a Record of 27β21β13? <context>: CREATE TABLE table_name_11 (date VARCHAR, record VARCHAR) <answer>: SELECT date FROM table_name_11 WHERE record = "27β21β13"
|
55,649 |
<question>: Which Year(s) won has a Total smaller than 292, and a Player of hale irwin? <context>: CREATE TABLE table_name_42 (year_s__won VARCHAR, total VARCHAR, player VARCHAR) <answer>: SELECT year_s__won FROM table_name_42 WHERE total < 292 AND player = "hale irwin"
|
55,650 |
<question>: What is fuzzy zoeller's to par? <context>: CREATE TABLE table_name_12 (to_par VARCHAR, player VARCHAR) <answer>: SELECT to_par FROM table_name_12 WHERE player = "fuzzy zoeller"
|
55,651 |
<question>: What To par was won in 1982? <context>: CREATE TABLE table_name_15 (to_par VARCHAR, year_s__won VARCHAR) <answer>: SELECT to_par FROM table_name_15 WHERE year_s__won = "1982"
|
55,652 |
<question>: What is curtis strange's to par? <context>: CREATE TABLE table_name_26 (to_par VARCHAR, player VARCHAR) <answer>: SELECT to_par FROM table_name_26 WHERE player = "curtis strange"
|
55,653 |
<question>: WHAT IS THE SCORE WITH A DATE OF NOVEMBER 18? <context>: CREATE TABLE table_name_80 (score VARCHAR, date VARCHAR) <answer>: SELECT score FROM table_name_80 WHERE date = "november 18"
|
55,654 |
<question>: WHAT IS THE VISITOR FOR FEBRUARY 9? <context>: CREATE TABLE table_name_27 (visitor VARCHAR, date VARCHAR) <answer>: SELECT visitor FROM table_name_27 WHERE date = "february 9"
|
55,655 |
<question>: What is the place of the player who scored less than 70? <context>: CREATE TABLE table_name_96 (place VARCHAR, score INTEGER) <answer>: SELECT place FROM table_name_96 WHERE score < 70
|
55,656 |
<question>: Which player was chosen by Saskatchewan in a pick larger than 38? <context>: CREATE TABLE table_name_21 (player VARCHAR, pick__number VARCHAR, cfl_team VARCHAR) <answer>: SELECT player FROM table_name_21 WHERE pick__number > 38 AND cfl_team = "saskatchewan"
|
55,657 |
<question>: If the goals scored were below 6, 11 games were played, and there were 7 assists, what's the sum of points with games meeting these criteria? <context>: CREATE TABLE table_name_78 (points INTEGER, goals VARCHAR, assists VARCHAR, games VARCHAR) <answer>: SELECT SUM(points) FROM table_name_78 WHERE assists = 7 AND games = 11 AND goals < 6
|
55,658 |
<question>: What's the highest amount of Games recorded that have more than 10 assists? <context>: CREATE TABLE table_name_64 (games INTEGER, assists INTEGER) <answer>: SELECT MAX(games) FROM table_name_64 WHERE assists > 10
|
55,659 |
<question>: What is Updated In Past 30 Days, when Registration is "Open to people 13 and over"? <context>: CREATE TABLE table_name_93 (updated_in_past_30_days VARCHAR, registration VARCHAR) <answer>: SELECT updated_in_past_30_days FROM table_name_93 WHERE registration = "open to people 13 and over"
|
55,660 |
<question>: What is Permanent Account, when Updated In Past 30 Days is 10324? <context>: CREATE TABLE table_name_96 (permanent_account VARCHAR, updated_in_past_30_days VARCHAR) <answer>: SELECT permanent_account FROM table_name_96 WHERE updated_in_past_30_days = "10324"
|
55,661 |
<question>: What is Userpics Free, when Registration is Open, when Yearly Cost For Paid Account is "unknown", and when Name is Kraslan? <context>: CREATE TABLE table_name_18 (userpics_free VARCHAR, name VARCHAR, registration VARCHAR, yearly_cost_for_paid_account VARCHAR) <answer>: SELECT userpics_free FROM table_name_18 WHERE registration = "open" AND yearly_cost_for_paid_account = "unknown" AND name = "kraslan"
|
55,662 |
<question>: What is Userpics Free, when Monthly Cost For Paid Account is "unknown", and when S Registered User is 2340? <context>: CREATE TABLE table_name_89 (userpics_free VARCHAR, monthly_cost_for_paid_account VARCHAR, s_registered_user VARCHAR) <answer>: SELECT userpics_free FROM table_name_89 WHERE monthly_cost_for_paid_account = "unknown" AND s_registered_user = "2340"
|
55,663 |
<question>: What is Yearly Cost For Paid Account, when Montly Cost For Paid Account is 5 USD, and when Userpics Paid is 50? <context>: CREATE TABLE table_name_94 (yearly_cost_for_paid_account VARCHAR, monthly_cost_for_paid_account VARCHAR, userpics_paid VARCHAR) <answer>: SELECT yearly_cost_for_paid_account FROM table_name_94 WHERE monthly_cost_for_paid_account = "5 usd" AND userpics_paid = "50"
|
55,664 |
<question>: What is the S Registered User, when Userpics Free is 6 [free] or 15 [plus]? <context>: CREATE TABLE table_name_98 (s_registered_user VARCHAR, userpics_free VARCHAR) <answer>: SELECT s_registered_user FROM table_name_98 WHERE userpics_free = "6 [free] or 15 [plus]"
|
55,665 |
<question>: What is Venue, when Date is "2003-08-13"? <context>: CREATE TABLE table_name_72 (venue VARCHAR, date VARCHAR) <answer>: SELECT venue FROM table_name_72 WHERE date = "2003-08-13"
|
55,666 |
<question>: What is Score, when Date is "2000-05-23"? <context>: CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR) <answer>: SELECT score FROM table_name_93 WHERE date = "2000-05-23"
|
55,667 |
<question>: What is Result, when Date is "2000-05-23"? <context>: CREATE TABLE table_name_57 (result VARCHAR, date VARCHAR) <answer>: SELECT result FROM table_name_57 WHERE date = "2000-05-23"
|
55,668 |
<question>: What is Competition, when Date is "1999-08-07"? <context>: CREATE TABLE table_name_13 (competition VARCHAR, date VARCHAR) <answer>: SELECT competition FROM table_name_13 WHERE date = "1999-08-07"
|
55,669 |
<question>: In what Week was Serena Williams 6β1, 6β7(7), 6β3 the Winner? <context>: CREATE TABLE table_name_65 (week VARCHAR, winners VARCHAR) <answer>: SELECT week FROM table_name_65 WHERE winners = "serena williams 6β1, 6β7(7), 6β3"
|
55,670 |
<question>: Who was the Finalist on a Hard Surface with Winner Serena Williams 6β1, 6β7(7), 6β3? <context>: CREATE TABLE table_name_34 (finalists VARCHAR, surface VARCHAR, winners VARCHAR) <answer>: SELECT finalists FROM table_name_34 WHERE surface = "hard" AND winners = "serena williams 6β1, 6β7(7), 6β3"
|
55,671 |
<question>: In what Week is the Rome Tournament? <context>: CREATE TABLE table_name_70 (week VARCHAR, tournament VARCHAR) <answer>: SELECT week FROM table_name_70 WHERE tournament = "rome"
|
55,672 |
<question>: Which regio has a label of zzt and a date of 27 september 2004? <context>: CREATE TABLE table_name_5 (region VARCHAR, label VARCHAR, date VARCHAR) <answer>: SELECT region FROM table_name_5 WHERE label = "zzt" AND date = "27 september 2004"
|
55,673 |
<question>: Which catalog has a date of 24 march 2006? <context>: CREATE TABLE table_name_44 (catalog VARCHAR, date VARCHAR) <answer>: SELECT catalog FROM table_name_44 WHERE date = "24 march 2006"
|
55,674 |
<question>: Which format has a region of united kingdom? <context>: CREATE TABLE table_name_19 (format VARCHAR, region VARCHAR) <answer>: SELECT format FROM table_name_19 WHERE region = "united kingdom"
|
55,675 |
<question>: Which date has a region of united kingdom? <context>: CREATE TABLE table_name_54 (date VARCHAR, region VARCHAR) <answer>: SELECT date FROM table_name_54 WHERE region = "united kingdom"
|
55,676 |
<question>: Which regio has a date of 24 march 2006? <context>: CREATE TABLE table_name_15 (region VARCHAR, date VARCHAR) <answer>: SELECT region FROM table_name_15 WHERE date = "24 march 2006"
|
55,677 |
<question>: What is the A330 for A310 B10? <context>: CREATE TABLE table_name_62 (a330 VARCHAR, a310 VARCHAR) <answer>: SELECT a330 FROM table_name_62 WHERE a310 = "b10"
|
55,678 |
<question>: What is the A330 and the A310 wide? <context>: CREATE TABLE table_name_62 (a330 VARCHAR, a310 VARCHAR) <answer>: SELECT a330 FROM table_name_62 WHERE a310 = "wide"
|
55,679 |
<question>: What model is the A310 of 1983? <context>: CREATE TABLE table_name_48 (model VARCHAR, a310 VARCHAR) <answer>: SELECT model FROM table_name_48 WHERE a310 = "1983"
|
55,680 |
<question>: What name is in the number 2 spot when Ethan is in the number 6 spot and Mason is in the number 3 spot? <context>: CREATE TABLE table_name_7 (no_2 VARCHAR, no_6 VARCHAR, no_3 VARCHAR) <answer>: SELECT no_2 FROM table_name_7 WHERE no_6 = "ethan" AND no_3 = "mason"
|
55,681 |
<question>: In what region and year was Jacob the number 2 name and Ryan the number 10 name? <context>: CREATE TABLE table_name_98 (region__year_ VARCHAR, no_2 VARCHAR, no_10 VARCHAR) <answer>: SELECT region__year_ FROM table_name_98 WHERE no_2 = "jacob" AND no_10 = "ryan"
|
55,682 |
<question>: What name was number 7 when Mason was number 1, Owen was number 6, Jackson was number 9, and Logan was number 10? <context>: CREATE TABLE table_name_68 (no_7 VARCHAR, no_6 VARCHAR, no_10 VARCHAR, no_1 VARCHAR, no_9 VARCHAR) <answer>: SELECT no_7 FROM table_name_68 WHERE no_1 = "mason" AND no_9 = "jackson" AND no_10 = "logan" AND no_6 = "owen"
|
55,683 |
<question>: What name was in the number 4 spot when Aiden was number 7 and James was number 3? <context>: CREATE TABLE table_name_29 (no_4 VARCHAR, no_7 VARCHAR, no_3 VARCHAR) <answer>: SELECT no_4 FROM table_name_29 WHERE no_7 = "aiden" AND no_3 = "james"
|
55,684 |
<question>: What is the positions of Damon Jones? <context>: CREATE TABLE table_name_87 (position VARCHAR, player VARCHAR) <answer>: SELECT position FROM table_name_87 WHERE player = "damon jones"
|
55,685 |
<question>: for how many years did the player who graduated from stanford play for Grizzlies? <context>: CREATE TABLE table_name_11 (years_for_grizzlies VARCHAR, school_club_team VARCHAR) <answer>: SELECT years_for_grizzlies FROM table_name_11 WHERE school_club_team = "stanford"
|
55,686 |
<question>: Which school did Dahntay Jones graduate from? <context>: CREATE TABLE table_name_24 (school_club_team VARCHAR, player VARCHAR) <answer>: SELECT school_club_team FROM table_name_24 WHERE player = "dahntay jones"
|
55,687 |
<question>: Which player gradyated from Florida State? <context>: CREATE TABLE table_name_76 (player VARCHAR, school_club_team VARCHAR) <answer>: SELECT player FROM table_name_76 WHERE school_club_team = "florida state"
|
55,688 |
<question>: What is the Playoffs MVP of the game with a Result of 4β1 with Champions Daejeon Hyundai Dynat? <context>: CREATE TABLE table_name_65 (playoffs_mvp VARCHAR, result VARCHAR, champions VARCHAR) <answer>: SELECT playoffs_mvp FROM table_name_65 WHERE result = "4β1" AND champions = "daejeon hyundai dynat"
|
55,689 |
<question>: What is the Year of the game with Result of 4β3 and Champions of Daegu Tongyang Orions? <context>: CREATE TABLE table_name_86 (year VARCHAR, result VARCHAR, champions VARCHAR) <answer>: SELECT year FROM table_name_86 WHERE result = "4β3" AND champions = "daegu tongyang orions"
|
55,690 |
<question>: What is the Runners-up of the game with a Result of 4β1 and Champions of Wonju Dongbu Promy? <context>: CREATE TABLE table_name_1 (runners_up VARCHAR, result VARCHAR, champions VARCHAR) <answer>: SELECT runners_up FROM table_name_1 WHERE result = "4β1" AND champions = "wonju dongbu promy"
|
55,691 |
<question>: Where was the venue that Linfield was the opponent? <context>: CREATE TABLE table_name_58 (venue VARCHAR, opponent VARCHAR) <answer>: SELECT venue FROM table_name_58 WHERE opponent = "linfield"
|
55,692 |
<question>: Which scorer plays for Aldershot and has scored a total of 19 League goals? <context>: CREATE TABLE table_name_17 (scorer VARCHAR, club VARCHAR, league_goals VARCHAR) <answer>: SELECT scorer FROM table_name_17 WHERE club = "aldershot" AND league_goals = "19"
|
55,693 |
<question>: What is the highest number of League Cup goals that were scored by Hartlepool? <context>: CREATE TABLE table_name_6 (league_cup_goals INTEGER, club VARCHAR) <answer>: SELECT MAX(league_cup_goals) FROM table_name_6 WHERE club = "hartlepool"
|
55,694 |
<question>: When was the game at the North Shore Events Centre? <context>: CREATE TABLE table_name_99 (date VARCHAR, venue VARCHAR) <answer>: SELECT date FROM table_name_99 WHERE venue = "north shore events centre"
|
55,695 |
<question>: What is the report corresponding to the game that had the Townsville Crocodiles as home team? <context>: CREATE TABLE table_name_59 (report VARCHAR, home_team VARCHAR) <answer>: SELECT report FROM table_name_59 WHERE home_team = "townsville crocodiles"
|
55,696 |
<question>: When was the game that had Sydney Spirit as the away team? <context>: CREATE TABLE table_name_64 (date VARCHAR, away_team VARCHAR) <answer>: SELECT date FROM table_name_64 WHERE away_team = "sydney spirit"
|
55,697 |
<question>: What was the box score for the game that had the Townsville Crocodiles as home team? <context>: CREATE TABLE table_name_95 (Box VARCHAR, home_team VARCHAR) <answer>: SELECT Box AS score FROM table_name_95 WHERE home_team = "townsville crocodiles"
|
55,698 |
<question>: What was the box score for the game that had the Cairns Taipans as home team? <context>: CREATE TABLE table_name_23 (Box VARCHAR, home_team VARCHAR) <answer>: SELECT Box AS score FROM table_name_23 WHERE home_team = "cairns taipans"
|
55,699 |
<question>: What's the lap number for time/retired of +33.912? <context>: CREATE TABLE table_name_71 (laps VARCHAR, time_retired VARCHAR) <answer>: SELECT COUNT(laps) FROM table_name_71 WHERE time_retired = "+33.912"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.