Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
55,100 | <question>: Which Visitor has a Score of 0-4? <context>: CREATE TABLE table_name_78 (visitor VARCHAR, score VARCHAR) | SELECT visitor FROM table_name_78 WHERE score = "0-4" |
55,101 | <question>: What is the Record for April 22? <context>: CREATE TABLE table_name_54 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_54 WHERE date = "april 22" |
55,102 | <question>: Which Date has a Record of 3-4? <context>: CREATE TABLE table_name_54 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_54 WHERE record = "3-4" |
55,103 | <question>: Which Date has a Record of 3-4? <context>: CREATE TABLE table_name_30 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_30 WHERE record = "3-4" |
55,104 | <question>: What is the record for opponent Anna Barone? <context>: CREATE TABLE table_name_24 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_24 WHERE opponent = "anna barone" |
55,105 | <question>: What is the record for the Ko (head kick) method? <context>: CREATE TABLE table_name_24 (record VARCHAR, method VARCHAR) | SELECT record FROM table_name_24 WHERE method = "ko (head kick)" |
55,106 | <question>: What is the time before round 2, and the ko (knee to the body) method? <context>: CREATE TABLE table_name_57 (time VARCHAR, round VARCHAR, method VARCHAR) | SELECT time FROM table_name_57 WHERE round < 2 AND method = "ko (knee to the body)" |
55,107 | <question>: What is the average round for the TKO (punches and elbows) method? <context>: CREATE TABLE table_name_89 (round INTEGER, method VARCHAR) | SELECT AVG(round) FROM table_name_89 WHERE method = "tko (punches and elbows)" |
55,108 | <question>: Who was the opponent in UFC 19? <context>: CREATE TABLE table_name_93 (opponent VARCHAR, event VARCHAR) | SELECT opponent FROM table_name_93 WHERE event = "ufc 19" |
55,109 | <question>: Who was the opponent in UFC 66 who lasted for more than 1 round? <context>: CREATE TABLE table_name_75 (opponent VARCHAR, round VARCHAR, event VARCHAR) | SELECT opponent FROM table_name_75 WHERE round > 1 AND event = "ufc 66" |
55,110 | <question>: What was the 1989 result for the tournament with 1984 of a, 1985 of a, and 1990 of a? <context>: CREATE TABLE table_name_56 (Id VARCHAR) | SELECT 1989 FROM table_name_56 WHERE 1984 = "a" AND 1985 = "a" AND 1990 = "a" |
55,111 | <question>: What was the 1987 result for the tournament with 1986 result of 3R and 1989 of A? <context>: CREATE TABLE table_name_81 (Id VARCHAR) | SELECT 1987 FROM table_name_81 WHERE 1989 = "a" AND 1986 = "3r" |
55,112 | <question>: What is the 1989 result of the tournament that had a 1987 result of 1R? <context>: CREATE TABLE table_name_71 (Id VARCHAR) | SELECT 1989 FROM table_name_71 WHERE 1987 = "1r" |
55,113 | <question>: What is the 1989 result for the tournament that had a 1983 and 1987 result of A? <context>: CREATE TABLE table_name_95 (Id VARCHAR) | SELECT 1989 FROM table_name_95 WHERE 1983 = "a" AND 1987 = "a" |
55,114 | <question>: What was the result fot the UFC 85 event? <context>: CREATE TABLE table_name_69 (res VARCHAR, event VARCHAR) | SELECT res FROM table_name_69 WHERE event = "ufc 85" |
55,115 | <question>: In which location did the Meca World Vale Tudo 6 event happen? <context>: CREATE TABLE table_name_84 (location VARCHAR, event VARCHAR) | SELECT location FROM table_name_84 WHERE event = "meca world vale tudo 6" |
55,116 | <question>: What was his record at the AFC: Brazil 1 event that went 3 rounds? <context>: CREATE TABLE table_name_59 (record VARCHAR, round VARCHAR, event VARCHAR) | SELECT record FROM table_name_59 WHERE round = "3" AND event = "afc: brazil 1" |
55,117 | <question>: Which country has Anselmo Da Silva in lane 2? <context>: CREATE TABLE table_name_64 (country VARCHAR, lane VARCHAR, name VARCHAR) | SELECT country FROM table_name_64 WHERE lane < 2 AND name = "anselmo da silva" |
55,118 | <question>: What is the heat number at 7.63, and a reaction less than 0.229? <context>: CREATE TABLE table_name_4 (heat VARCHAR, mark VARCHAR, react VARCHAR) | SELECT COUNT(heat) FROM table_name_4 WHERE mark = "7.63" AND react < 0.229 |
55,119 | <question>: What is the verb meaning when part 2 is band? <context>: CREATE TABLE table_name_36 (verb_meaning VARCHAR, part_2 VARCHAR) | SELECT verb_meaning FROM table_name_36 WHERE part_2 = "band" |
55,120 | <question>: What is the verb meaning when the part 2 is blēot? <context>: CREATE TABLE table_name_5 (verb_meaning VARCHAR, part_2 VARCHAR) | SELECT verb_meaning FROM table_name_5 WHERE part_2 = "blēot" |
55,121 | <question>: What is the Part 2 when the class is 6? <context>: CREATE TABLE table_name_4 (part_2 VARCHAR, class VARCHAR) | SELECT part_2 FROM table_name_4 WHERE class = "6" |
55,122 | <question>: What is the class when the verb meaning is to nourish, to grow? <context>: CREATE TABLE table_name_47 (class VARCHAR, verb_meaning VARCHAR) | SELECT class FROM table_name_47 WHERE verb_meaning = "to nourish, to grow" |
55,123 | <question>: What is the Part 3 when the Verb meaning is to gather? <context>: CREATE TABLE table_name_60 (part_3 VARCHAR, verb_meaning VARCHAR) | SELECT part_3 FROM table_name_60 WHERE verb_meaning = "to gather" |
55,124 | <question>: What is the Verb meaning when part 1 is alan? <context>: CREATE TABLE table_name_16 (verb_meaning VARCHAR, part_1 VARCHAR) | SELECT verb_meaning FROM table_name_16 WHERE part_1 = "alan" |
55,125 | <question>: What is the average attendance for matches where the home team was vida? <context>: CREATE TABLE table_name_2 (attendance INTEGER, home VARCHAR) | SELECT AVG(attendance) FROM table_name_2 WHERE home = "vida" |
55,126 | <question>: Who was the home team during the match where there were 2709 in attendance? <context>: CREATE TABLE table_name_49 (home VARCHAR, attendance VARCHAR) | SELECT home FROM table_name_49 WHERE attendance = 2709 |
55,127 | <question>: What is the sum of the attendance where the score was 1:1? <context>: CREATE TABLE table_name_41 (attendance INTEGER, score VARCHAR) | SELECT SUM(attendance) FROM table_name_41 WHERE score = "1:1" |
55,128 | <question>: How many ties occurred with a score of 2–2? <context>: CREATE TABLE table_name_83 (tie_no VARCHAR, score VARCHAR) | SELECT tie_no FROM table_name_83 WHERE score = "2–2" |
55,129 | <question>: Who is the home team when Preston North End is the away team? <context>: CREATE TABLE table_name_89 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_89 WHERE away_team = "preston north end" |
55,130 | <question>: What school/club did the player who layed shooting guard attend? <context>: CREATE TABLE table_name_35 (school_club_team VARCHAR, position VARCHAR) | SELECT school_club_team FROM table_name_35 WHERE position = "shooting guard" |
55,131 | <question>: What school/club did gerald wilkins attend? <context>: CREATE TABLE table_name_24 (school_club_team VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_name_24 WHERE player = "gerald wilkins" |
55,132 | <question>: What are the years when the grizzlies had a point guard who attended the school/club Florida? <context>: CREATE TABLE table_name_56 (years_for_grizzlies VARCHAR, position VARCHAR, school_club_team VARCHAR) | SELECT years_for_grizzlies FROM table_name_56 WHERE position = "point guard" AND school_club_team = "florida" |
55,133 | <question>: What are the years when the grizzles had a player who attended UCLA? <context>: CREATE TABLE table_name_71 (years_for_grizzlies VARCHAR, school_club_team VARCHAR) | SELECT years_for_grizzlies FROM table_name_71 WHERE school_club_team = "ucla" |
55,134 | <question>: What are the years when the grizzles had a player who attended Villanova? <context>: CREATE TABLE table_name_37 (years_for_grizzlies VARCHAR, school_club_team VARCHAR) | SELECT years_for_grizzlies FROM table_name_37 WHERE school_club_team = "villanova" |
55,135 | <question>: What position did the person who was with the grizzlies in 1998-1999 play? <context>: CREATE TABLE table_name_91 (position VARCHAR, years_for_grizzlies VARCHAR) | SELECT position FROM table_name_91 WHERE years_for_grizzlies = "1998-1999" |
55,136 | <question>: What is the date of the game when the opponent is the Cleveland Browns? <context>: CREATE TABLE table_name_98 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_98 WHERE opponent = "cleveland browns" |
55,137 | <question>: What is the result of the game when the attendance is 62,078? <context>: CREATE TABLE table_name_6 (result VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_6 WHERE attendance = "62,078" |
55,138 | <question>: What is the result of the game when the attendance is 75,466? <context>: CREATE TABLE table_name_43 (result VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_43 WHERE attendance = "75,466" |
55,139 | <question>: What is the genitive for the ergative shen? <context>: CREATE TABLE table_name_1 (genitive VARCHAR, ergative VARCHAR) | SELECT genitive FROM table_name_1 WHERE ergative = "shen" |
55,140 | <question>: What is the instrumental for the dative shen? <context>: CREATE TABLE table_name_15 (instrumental VARCHAR, dative VARCHAR) | SELECT instrumental FROM table_name_15 WHERE dative = "shen" |
55,141 | <question>: What is the adverbial for the nominative me? <context>: CREATE TABLE table_name_92 (adverbial VARCHAR, nominative VARCHAR) | SELECT adverbial FROM table_name_92 WHERE nominative = "me" |
55,142 | <question>: What is the ergative for the dative chven? <context>: CREATE TABLE table_name_33 (ergative VARCHAR, dative VARCHAR) | SELECT ergative FROM table_name_33 WHERE dative = "chven" |
55,143 | <question>: What is the ergative for the genitive tkven(s)? <context>: CREATE TABLE table_name_13 (ergative VARCHAR, genitive VARCHAR) | SELECT ergative FROM table_name_13 WHERE genitive = "tkven(s)" |
55,144 | <question>: What is the ergative for the dative (i)mas? <context>: CREATE TABLE table_name_53 (ergative VARCHAR, dative VARCHAR) | SELECT ergative FROM table_name_53 WHERE dative = "(i)mas" |
55,145 | <question>: What is the Front Side Bus for Model Number c3 850? <context>: CREATE TABLE table_name_54 (front_side_bus VARCHAR, model_number VARCHAR) | SELECT front_side_bus FROM table_name_54 WHERE model_number = "c3 850" |
55,146 | <question>: What is the Frequency for Model Number c3 850? <context>: CREATE TABLE table_name_99 (frequency VARCHAR, model_number VARCHAR) | SELECT frequency FROM table_name_99 WHERE model_number = "c3 850" |
55,147 | <question>: Which Model number has a Front Side Bus of 100mhz, a L2-Cache of 64kib and a Multiplier of 8.5×? <context>: CREATE TABLE table_name_98 (model_number VARCHAR, multiplier VARCHAR, front_side_bus VARCHAR, l2_cache VARCHAR) | SELECT model_number FROM table_name_98 WHERE front_side_bus = "100mhz" AND l2_cache = "64kib" AND multiplier = "8.5×" |
55,148 | <question>: What is the Voltage for Model Number c3 866? <context>: CREATE TABLE table_name_21 (voltage VARCHAR, model_number VARCHAR) | SELECT voltage FROM table_name_21 WHERE model_number = "c3 866" |
55,149 | <question>: What is Finalists, when Tournament is Miami? <context>: CREATE TABLE table_name_79 (finalists VARCHAR, tournament VARCHAR) | SELECT finalists FROM table_name_79 WHERE tournament = "miami" |
55,150 | <question>: What is Tournament, when Week is November 23? <context>: CREATE TABLE table_name_64 (tournament VARCHAR, week VARCHAR) | SELECT tournament FROM table_name_64 WHERE week = "november 23" |
55,151 | <question>: What is Semifinalists, when Tournament is Rome <context>: CREATE TABLE table_name_93 (semifinalists VARCHAR, tournament VARCHAR) | SELECT semifinalists FROM table_name_93 WHERE tournament = "rome" |
55,152 | <question>: What rank were the Buckeyes when there were 68,586 in attendance? <context>: CREATE TABLE table_name_90 (rank__number VARCHAR, attendance VARCHAR) | SELECT rank__number FROM table_name_90 WHERE attendance = "68,586" |
55,153 | <question>: What date was the game when 40,000 attended? <context>: CREATE TABLE table_name_65 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_65 WHERE attendance = "40,000" |
55,154 | <question>: What date was the game when 45,943 attended? <context>: CREATE TABLE table_name_56 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_56 WHERE attendance = "45,943" |
55,155 | <question>: Who was the opponent that played against the Buckeyes on October 17? <context>: CREATE TABLE table_name_16 (opponent_number VARCHAR, date VARCHAR) | SELECT opponent_number FROM table_name_16 WHERE date = "october 17" |
55,156 | <question>: What is the result of the game played when 22,555 were in attendance and the Buckeyes were ranked #1? <context>: CREATE TABLE table_name_57 (result VARCHAR, rank__number VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_57 WHERE rank__number = "1" AND attendance = "22,555" |
55,157 | <question>: What Player is from Connecticut? <context>: CREATE TABLE table_name_39 (player VARCHAR, college_country_team VARCHAR) | SELECT player FROM table_name_39 WHERE college_country_team = "connecticut" |
55,158 | <question>: What is the highest position of the team having played under 10 matches? <context>: CREATE TABLE table_name_73 (position INTEGER, played INTEGER) | SELECT MAX(position) FROM table_name_73 WHERE played < 10 |
55,159 | <question>: What is the total number of played values for teams with more than 14 points and more than 1 draw? <context>: CREATE TABLE table_name_84 (played VARCHAR, points VARCHAR, drawn VARCHAR) | SELECT COUNT(played) FROM table_name_84 WHERE points > 14 AND drawn > 1 |
55,160 | <question>: What is the total number of positions having points over 2, more than 4 losses, and under 10 matches played? <context>: CREATE TABLE table_name_20 (position VARCHAR, played VARCHAR, points VARCHAR, lost VARCHAR) | SELECT COUNT(position) FROM table_name_20 WHERE points > 2 AND lost > 4 AND played < 10 |
55,161 | <question>: WHich Televotes has a Performer of biljana dodeva, and a Draw larger than 10? <context>: CREATE TABLE table_name_59 (televotes INTEGER, performer VARCHAR, draw VARCHAR) | SELECT MIN(televotes) FROM table_name_59 WHERE performer = "biljana dodeva" AND draw > 10 |
55,162 | <question>: Name the highest Draw which has a Rank of 14, and a Televotes larger than 908? <context>: CREATE TABLE table_name_77 (draw INTEGER, rank VARCHAR, televotes VARCHAR) | SELECT MAX(draw) FROM table_name_77 WHERE rank = 14 AND televotes > 908 |
55,163 | <question>: Name the lowest Televotes which has monika sokolovska and a Rank larger than 15? <context>: CREATE TABLE table_name_54 (televotes INTEGER, performer VARCHAR, rank VARCHAR) | SELECT MIN(televotes) FROM table_name_54 WHERE performer = "monika sokolovska" AND rank > 15 |
55,164 | <question>: Name the lowest Draw which has a Performer of kaliopi and a Televotes larger than 3834? <context>: CREATE TABLE table_name_18 (draw INTEGER, performer VARCHAR, televotes VARCHAR) | SELECT MIN(draw) FROM table_name_18 WHERE performer = "kaliopi" AND televotes > 3834 |
55,165 | <question>: What is Total, when Player is "Hale Irwin"? <context>: CREATE TABLE table_name_12 (total VARCHAR, player VARCHAR) | SELECT total FROM table_name_12 WHERE player = "hale irwin" |
55,166 | <question>: What is Player, when Country is "United States", and when To Par is "WD"? <context>: CREATE TABLE table_name_79 (player VARCHAR, country VARCHAR, to_par VARCHAR) | SELECT player FROM table_name_79 WHERE country = "united states" AND to_par = "wd" |
55,167 | <question>: What is Player, when Total is "154"? <context>: CREATE TABLE table_name_73 (player VARCHAR, total VARCHAR) | SELECT player FROM table_name_73 WHERE total = "154" |
55,168 | <question>: What is Player, when Country is "United States", and when Total is "154"? <context>: CREATE TABLE table_name_48 (player VARCHAR, country VARCHAR, total VARCHAR) | SELECT player FROM table_name_48 WHERE country = "united states" AND total = "154" |
55,169 | <question>: What is Country, when To Par is "+11"? <context>: CREATE TABLE table_name_37 (country VARCHAR, to_par VARCHAR) | SELECT country FROM table_name_37 WHERE to_par = "+11" |
55,170 | <question>: What is Country, when Player is "Hale Irwin"? <context>: CREATE TABLE table_name_96 (country VARCHAR, player VARCHAR) | SELECT country FROM table_name_96 WHERE player = "hale irwin" |
55,171 | <question>: What is the lowest interview score for Missouri, where the swimsuit score was highter than 9.433? <context>: CREATE TABLE table_name_66 (interview INTEGER, country VARCHAR, swimsuit VARCHAR) | SELECT MIN(interview) FROM table_name_66 WHERE country = "missouri" AND swimsuit > 9.433 |
55,172 | <question>: What is the sum of Preliminary scores where the interview score is 9.654 and the average score is lower than 9.733? <context>: CREATE TABLE table_name_84 (preliminary INTEGER, interview VARCHAR, average VARCHAR) | SELECT SUM(preliminary) FROM table_name_84 WHERE interview = 9.654 AND average < 9.733 |
55,173 | <question>: What is the sum of Swimsuit scores where the average score is 9.733 and the interview score is higher than 9.654? <context>: CREATE TABLE table_name_79 (swimsuit INTEGER, average VARCHAR, interview VARCHAR) | SELECT SUM(swimsuit) FROM table_name_79 WHERE average = 9.733 AND interview > 9.654 |
55,174 | <question>: What is the sum of Evening Gown scores where the swimsuit score is higher than 9.4 and the average score is lower than 9.733? <context>: CREATE TABLE table_name_88 (evening_gown INTEGER, swimsuit VARCHAR, average VARCHAR) | SELECT SUM(evening_gown) FROM table_name_88 WHERE swimsuit > 9.4 AND average < 9.733 |
55,175 | <question>: What is the lowest average score where the evening gown score was 8.811? <context>: CREATE TABLE table_name_48 (average INTEGER, evening_gown VARCHAR) | SELECT MIN(average) FROM table_name_48 WHERE evening_gown = 8.811 |
55,176 | <question>: For a team with a goals against less than 58, a position of 10, and a points 2 more than 53, what is the average lost? <context>: CREATE TABLE table_name_37 (lost INTEGER, points_2 VARCHAR, goals_against VARCHAR, position VARCHAR) | SELECT AVG(lost) FROM table_name_37 WHERE goals_against < 58 AND position = 10 AND points_2 > 53 |
55,177 | <question>: For a team having goals for more than 95, what is the lowest position? <context>: CREATE TABLE table_name_95 (position INTEGER, goals_for INTEGER) | SELECT MIN(position) FROM table_name_95 WHERE goals_for > 95 |
55,178 | <question>: What is the function percentage when the estimated function percentage is 20? <context>: CREATE TABLE table_name_30 (function__percentage VARCHAR, estimated_function__percentage VARCHAR) | SELECT function__percentage FROM table_name_30 WHERE estimated_function__percentage = 20 |
55,179 | <question>: What is the measurement where the estimated function % is less than 20? <context>: CREATE TABLE table_name_21 (measurement VARCHAR, estimated_function__percentage INTEGER) | SELECT measurement FROM table_name_21 WHERE estimated_function__percentage < 20 |
55,180 | <question>: What is the estimated function % when the measurement is 8/8? <context>: CREATE TABLE table_name_43 (estimated_function__percentage VARCHAR, measurement VARCHAR) | SELECT estimated_function__percentage FROM table_name_43 WHERE measurement = "8/8" |
55,181 | <question>: What place did jacky cupit take when his To par was under 13? <context>: CREATE TABLE table_name_67 (place VARCHAR, to_par VARCHAR, player VARCHAR) | SELECT place FROM table_name_67 WHERE to_par < 13 AND player = "jacky cupit" |
55,182 | <question>: Which united states player had a To par of 12? <context>: CREATE TABLE table_name_63 (player VARCHAR, to_par VARCHAR, country VARCHAR) | SELECT player FROM table_name_63 WHERE to_par = 12 AND country = "united states" |
55,183 | <question>: Which player had a To par of 13? <context>: CREATE TABLE table_name_78 (player VARCHAR, to_par VARCHAR) | SELECT player FROM table_name_78 WHERE to_par = 13 |
55,184 | <question>: What did vijay singh score with a +5 to par? <context>: CREATE TABLE table_name_92 (score VARCHAR, to_par VARCHAR, player VARCHAR) | SELECT score FROM table_name_92 WHERE to_par = "+5" AND player = "vijay singh" |
55,185 | <question>: What was the average rank for south africa when they had more than 8 silver medals? <context>: CREATE TABLE table_name_64 (rank INTEGER, nation VARCHAR, silver VARCHAR) | SELECT AVG(rank) FROM table_name_64 WHERE nation = "south africa" AND silver > 8 |
55,186 | <question>: What is the average number of gold medals the netherlands got when they had more than 4 bronze medals? <context>: CREATE TABLE table_name_47 (gold INTEGER, nation VARCHAR, bronze VARCHAR) | SELECT AVG(gold) FROM table_name_47 WHERE nation = "netherlands" AND bronze > 4 |
55,187 | <question>: What is the sum of the gold medals for the nation of Great britain who had more than 8 silvers and a total of less than 61 medals? <context>: CREATE TABLE table_name_18 (gold INTEGER, total VARCHAR, silver VARCHAR, nation VARCHAR) | SELECT SUM(gold) FROM table_name_18 WHERE silver > 8 AND nation = "great britain" AND total < 61 |
55,188 | <question>: What is the highest number of bronze medals that israel acheived when they got less than 3 silver medals? <context>: CREATE TABLE table_name_29 (bronze INTEGER, nation VARCHAR, silver VARCHAR) | SELECT MAX(bronze) FROM table_name_29 WHERE nation = "israel" AND silver < 3 |
55,189 | <question>: What is the total number of gold medals when the team got 2 bronze and more than 5 silver medals? <context>: CREATE TABLE table_name_93 (gold VARCHAR, bronze VARCHAR, silver VARCHAR) | SELECT COUNT(gold) FROM table_name_93 WHERE bronze = 2 AND silver > 5 |
55,190 | <question>: What is Partner, when Surface is Hard, and when Score is 6–3, 7–6(0)? <context>: CREATE TABLE table_name_94 (partner VARCHAR, surface VARCHAR, score VARCHAR) | SELECT partner FROM table_name_94 WHERE surface = "hard" AND score = "6–3, 7–6(0)" |
55,191 | <question>: What is Opponents, when Partner is Vitalia Diatchenko? <context>: CREATE TABLE table_name_60 (opponents VARCHAR, partner VARCHAR) | SELECT opponents FROM table_name_60 WHERE partner = "vitalia diatchenko" |
55,192 | <question>: What is Partner, when Outcome is Winner, and when Date is 12 October 2003? <context>: CREATE TABLE table_name_73 (partner VARCHAR, outcome VARCHAR, date VARCHAR) | SELECT partner FROM table_name_73 WHERE outcome = "winner" AND date = "12 october 2003" |
55,193 | <question>: What is Opponents, when Partner is Mervana Jugić-Salkić? <context>: CREATE TABLE table_name_8 (opponents VARCHAR, partner VARCHAR) | SELECT opponents FROM table_name_8 WHERE partner = "mervana jugić-salkić" |
55,194 | <question>: What is the lowest Minutes Played, when Rebounds is 25, and when Field Goal % is less than "0.315"? <context>: CREATE TABLE table_name_95 (minutes_played INTEGER, rebounds VARCHAR, field_goal__percentage VARCHAR) | SELECT MIN(minutes_played) FROM table_name_95 WHERE rebounds = 25 AND field_goal__percentage < 0.315 |
55,195 | <question>: What is the average Rebounds, when Minutes Played is "113", and when Games Played is greater than "18"? <context>: CREATE TABLE table_name_4 (rebounds INTEGER, minutes_played VARCHAR, games_played VARCHAR) | SELECT AVG(rebounds) FROM table_name_4 WHERE minutes_played = 113 AND games_played > 18 |
55,196 | <question>: What is the score on March 17? <context>: CREATE TABLE table_name_10 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_10 WHERE date = "march 17" |
55,197 | <question>: Which event led to a loss against Josh Diekman? <context>: CREATE TABLE table_name_37 (event VARCHAR, res VARCHAR, opponent VARCHAR) | SELECT event FROM table_name_37 WHERE res = "loss" AND opponent = "josh diekman" |
55,198 | <question>: Which location led to a decision and a record of 1-2? <context>: CREATE TABLE table_name_36 (location VARCHAR, method VARCHAR, record VARCHAR) | SELECT location FROM table_name_36 WHERE method = "decision" AND record = "1-2" |
55,199 | <question>: Which method took place against Chris Herring? <context>: CREATE TABLE table_name_73 (method VARCHAR, opponent VARCHAR) | SELECT method FROM table_name_73 WHERE opponent = "chris herring" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.