combined_text stringlengths 106 1.05k |
|---|
###question:When the total was smaller than 290, what was the highest To par?###answer:SELECT MAX(to_par) FROM table_name_24 WHERE total < 290###context:CREATE TABLE table_name_24 (to_par INTEGER, total INTEGER) |
###question:What is the total number of To par for Lee Trevino?###answer:SELECT COUNT(to_par) FROM table_name_4 WHERE player = "lee trevino"###context:CREATE TABLE table_name_4 (to_par VARCHAR, player VARCHAR) |
###question:What is the sum of To par when the Finish is t11?###answer:SELECT SUM(to_par) FROM table_name_59 WHERE finish = "t11"###context:CREATE TABLE table_name_59 (to_par INTEGER, finish VARCHAR) |
###question:What was Donald Bradman's average runs?###answer:SELECT AVG(runs) FROM table_name_21 WHERE player = "donald bradman"###context:CREATE TABLE table_name_21 (runs INTEGER, player VARCHAR) |
###question:What was the highest amount of runs for more than 5 matches?###answer:SELECT MAX(runs) FROM table_name_45 WHERE matches > 5###context:CREATE TABLE table_name_45 (runs INTEGER, matches INTEGER) |
###question:What is the lowest Shot Pct., when Blank Ends is greater than 6?###answer:SELECT MIN(shot_pct) FROM table_name_2 WHERE blank_ends > 6###context:CREATE TABLE table_name_2 (shot_pct INTEGER, blank_ends INTEGER) |
###question:What is Shot Pct., when Stolen Ends is 2?###answer:SELECT shot_pct FROM table_name_67 WHERE stolen_ends = 2###context:CREATE TABLE table_name_67 (shot_pct VARCHAR, stolen_ends VARCHAR) |
###question:What is the total number of Ends Won, when Province is "Saskatchewan", and when Stolen Ends is less than 6?###answer:SELECT COUNT(ends_won) FROM table_name_92 WHERE province = "saskatchewan" AND stolen_ends < 6###context:CREATE TABLE table_name_92 (ends_won VARCHAR, province VARCHAR, stolen_ends VARCHAR) |
###question:On what date were Perth Wildcats the away team?###answer:SELECT date FROM table_name_28 WHERE away_team = "perth wildcats"###context:CREATE TABLE table_name_28 (date VARCHAR, away_team VARCHAR) |
###question:On what date was the score 121-113?###answer:SELECT date FROM table_name_84 WHERE score = "121-113"###context:CREATE TABLE table_name_84 (date VARCHAR, score VARCHAR) |
###question:On what date was Adelaide 36ers the home team?###answer:SELECT date FROM table_name_64 WHERE home_team = "adelaide 36ers"###context:CREATE TABLE table_name_64 (date VARCHAR, home_team VARCHAR) |
###question:Which report is for Townsville Entertainment Centre?###answer:SELECT report FROM table_name_6 WHERE venue = "townsville entertainment centre"###context:CREATE TABLE table_name_6 (report VARCHAR, venue VARCHAR) |
###question:Which home team had a score of 85-101?###answer:SELECT home_team FROM table_name_7 WHERE score = "85-101"###context:CREATE TABLE table_name_7 (home_team VARCHAR, score VARCHAR) |
###question:What was the box core for the Melbourne Tigers?###answer:SELECT Box AS score FROM table_name_21 WHERE home_team = "melbourne tigers"###context:CREATE TABLE table_name_21 (Box VARCHAR, home_team VARCHAR) |
###question:who is the author when featuring is leela, the master, kraals?###answer:SELECT author FROM table_name_42 WHERE featuring = "leela, the master, kraals"###context:CREATE TABLE table_name_42 (author VARCHAR, featuring VARCHAR) |
###question:who is the author when the title is destination: nerva?###answer:SELECT author FROM table_name_73 WHERE title = "destination: nerva"###context:CREATE TABLE table_name_73 (author VARCHAR, title VARCHAR) |
###question:who is featuring when the title is energy of the daleks?###answer:SELECT featuring FROM table_name_18 WHERE title = "energy of the daleks"###context:CREATE TABLE table_name_18 (featuring VARCHAR, title VARCHAR) |
###question:what is the title when the featuring is leela and series sorted is 4s/b?###answer:SELECT title FROM table_name_71 WHERE featuring = "leela" AND series_sorted = "4s/b"###context:CREATE TABLE table_name_71 (title VARCHAR, featuring VARCHAR, series_sorted VARCHAR) |
###question:Can you tell me the Opponent that has the December of 2?###answer:SELECT opponent FROM table_name_52 WHERE december = 2###context:CREATE TABLE table_name_52 (opponent VARCHAR, december VARCHAR) |
###question:Can you tell me the average December rhat has the Opponent of @ toronto maple leafs?###answer:SELECT AVG(december) FROM table_name_18 WHERE opponent = "@ toronto maple leafs"###context:CREATE TABLE table_name_18 (december INTEGER, opponent VARCHAR) |
###question:Can you tell me the Score that has the December of 10?###answer:SELECT score FROM table_name_55 WHERE december = 10###context:CREATE TABLE table_name_55 (score VARCHAR, december VARCHAR) |
###question:What was the score when the Tie no was 6?###answer:SELECT score FROM table_name_89 WHERE tie_no = 6###context:CREATE TABLE table_name_89 (score VARCHAR, tie_no VARCHAR) |
###question:What was the score when the Tie no less than 2?###answer:SELECT score FROM table_name_11 WHERE tie_no < 2###context:CREATE TABLE table_name_11 (score VARCHAR, tie_no INTEGER) |
###question:Who was the away team when the home team was Sunderland?###answer:SELECT away_team FROM table_name_48 WHERE home_team = "sunderland"###context:CREATE TABLE table_name_48 (away_team VARCHAR, home_team VARCHAR) |
###question:Which Winning Team has the Fastest Lap of brendon hartley, and a Pole Position of oliver turvey, and a Circuit of spa-francorchamps, and the Winning Driver of brendon hartley?###answer:SELECT winning_team FROM table_name_75 WHERE fastest_lap = "brendon hartley" AND pole_position = "oliver turvey" AND circui... |
###question:Which Circuit has the Winning Team of carlin motorsport, and the Winning Driver of oliver turvey, and a Date of 24 march?###answer:SELECT circuit FROM table_name_93 WHERE winning_team = "carlin motorsport" AND winning_driver = "oliver turvey" AND date = "24 march"###context:CREATE TABLE table_name_93 (circu... |
###question:Which Round has the Winning Driver of brendon hartley, and a Date of 27 april?###answer:SELECT MIN(round) FROM table_name_56 WHERE winning_driver = "brendon hartley" AND date = "27 april"###context:CREATE TABLE table_name_56 (round INTEGER, winning_driver VARCHAR, date VARCHAR) |
###question:Which Date has a Pole Position of michael devaney?###answer:SELECT date FROM table_name_94 WHERE pole_position = "michael devaney"###context:CREATE TABLE table_name_94 (date VARCHAR, pole_position VARCHAR) |
###question:Which Report has a Winning driver of emerson fittipaldi?###answer:SELECT report FROM table_name_61 WHERE winning_driver = "emerson fittipaldi"###context:CREATE TABLE table_name_61 (report VARCHAR, winning_driver VARCHAR) |
###question:Which Circuit has a Pole position of andré ribeiro?###answer:SELECT circuit FROM table_name_97 WHERE pole_position = "andré ribeiro"###context:CREATE TABLE table_name_97 (circuit VARCHAR, pole_position VARCHAR) |
###question:Which Circuit has a Winning driver of scott pruett?###answer:SELECT circuit FROM table_name_15 WHERE winning_driver = "scott pruett"###context:CREATE TABLE table_name_15 (circuit VARCHAR, winning_driver VARCHAR) |
###question:Who's the Winning driver with a Pole position of bryan herta?###answer:SELECT winning_driver FROM table_name_46 WHERE pole_position = "bryan herta"###context:CREATE TABLE table_name_46 (winning_driver VARCHAR, pole_position VARCHAR) |
###question:Which Date had a City/Location of vancouver, british columbia?###answer:SELECT date FROM table_name_65 WHERE city_location = "vancouver, british columbia"###context:CREATE TABLE table_name_65 (date VARCHAR, city_location VARCHAR) |
###question:Who's the Winning team with a Pole position of robby gordon, and a Date of june 11?###answer:SELECT winning_team FROM table_name_81 WHERE pole_position = "robby gordon" AND date = "june 11"###context:CREATE TABLE table_name_81 (winning_team VARCHAR, pole_position VARCHAR, date VARCHAR) |
###question:What subject has a plural of am(ô)ra (we)?###answer:SELECT AVG(subject) FROM table_name_56 WHERE plural = "am(ô)ra (we)"###context:CREATE TABLE table_name_56 (subject INTEGER, plural VARCHAR) |
###question:What round was the player drafted from mississippi valley state?###answer:SELECT round FROM table_name_83 WHERE college = "mississippi valley state"###context:CREATE TABLE table_name_83 (round VARCHAR, college VARCHAR) |
###question:What college was the draft pick from who plays center position?###answer:SELECT college FROM table_name_13 WHERE position = "center"###context:CREATE TABLE table_name_13 (college VARCHAR, position VARCHAR) |
###question:What is the record of the game with the toronto huskies as the opponent?###answer:SELECT record FROM table_name_39 WHERE opponent = "toronto huskies"###context:CREATE TABLE table_name_39 (record VARCHAR, opponent VARCHAR) |
###question:Who is the opponent on November 14?###answer:SELECT opponent FROM table_name_53 WHERE date = "november 14"###context:CREATE TABLE table_name_53 (opponent VARCHAR, date VARCHAR) |
###question:What is the record of the game with a game number greater than 7 at boston garden with the providence steam rollers as the opponent?###answer:SELECT record FROM table_name_46 WHERE game > 7 AND location = "boston garden" AND opponent = "providence steam rollers"###context:CREATE TABLE table_name_46 (record ... |
###question:What pick in round 5 did the 49ers pick Jim Pilot?###answer:SELECT SUM(pick) FROM table_name_69 WHERE player = "jim pilot" AND round > 5###context:CREATE TABLE table_name_69 (pick INTEGER, player VARCHAR, round VARCHAR) |
###question:What pick in a round earlier than 4 did UCLA choose their pick?###answer:SELECT pick FROM table_name_64 WHERE round < 4 AND school_club_team = "ucla"###context:CREATE TABLE table_name_64 (pick VARCHAR, round VARCHAR, school_club_team VARCHAR) |
###question:What position did pick 36 play?###answer:SELECT position FROM table_name_45 WHERE pick = 36###context:CREATE TABLE table_name_45 (position VARCHAR, pick VARCHAR) |
###question:Who is the owner of Miss Terrible?###answer:SELECT owner FROM table_name_40 WHERE winner = "miss terrible"###context:CREATE TABLE table_name_40 (owner VARCHAR, winner VARCHAR) |
###question:What is the most recent year that had a time of 1:36.69?###answer:SELECT MAX(year) FROM table_name_82 WHERE time = "1:36.69"###context:CREATE TABLE table_name_82 (year INTEGER, time VARCHAR) |
###question:What time does the trainer, Todd Pletcher have?###answer:SELECT time FROM table_name_63 WHERE trainer = "todd pletcher"###context:CREATE TABLE table_name_63 (time VARCHAR, trainer VARCHAR) |
###question:What is the most recent year that Iftiraas was the winner?###answer:SELECT MAX(year) FROM table_name_68 WHERE winner = "iftiraas"###context:CREATE TABLE table_name_68 (year INTEGER, winner VARCHAR) |
###question:What sport was played at the bosse field?###answer:SELECT sport FROM table_name_25 WHERE venue = "bosse field"###context:CREATE TABLE table_name_25 (sport VARCHAR, venue VARCHAR) |
###question:What sport was played between the years of 2008-2010?###answer:SELECT sport FROM table_name_26 WHERE played = "2008-2010"###context:CREATE TABLE table_name_26 (sport VARCHAR, played VARCHAR) |
###question:What venue did the team, evansville bluecats play on?###answer:SELECT venue FROM table_name_17 WHERE team = "evansville bluecats"###context:CREATE TABLE table_name_17 (venue VARCHAR, team VARCHAR) |
###question:What team played between the years of 2008-2010?###answer:SELECT team FROM table_name_75 WHERE played = "2008-2010"###context:CREATE TABLE table_name_75 (team VARCHAR, played VARCHAR) |
###question:Name the Score of craig stadler?###answer:SELECT score FROM table_name_33 WHERE player = "craig stadler"###context:CREATE TABLE table_name_33 (score VARCHAR, player VARCHAR) |
###question:Name the Score that has a Place of t5 of tom watson?###answer:SELECT score FROM table_name_45 WHERE place = "t5" AND player = "tom watson"###context:CREATE TABLE table_name_45 (score VARCHAR, place VARCHAR, player VARCHAR) |
###question:Name the Place with a Score of 72-68=140?###answer:SELECT place FROM table_name_83 WHERE score = 72 - 68 = 140###context:CREATE TABLE table_name_83 (place VARCHAR, score VARCHAR) |
###question:Name the Score of jack nicklaus, united states, ?###answer:SELECT score FROM table_name_13 WHERE country = "united states" AND player = "jack nicklaus"###context:CREATE TABLE table_name_13 (score VARCHAR, country VARCHAR, player VARCHAR) |
###question:Name the Place of seve ballesteros?###answer:SELECT place FROM table_name_35 WHERE player = "seve ballesteros"###context:CREATE TABLE table_name_35 (place VARCHAR, player VARCHAR) |
###question:Who was No. 9 when Ava was No. 4 and Addison was No. 6?###answer:SELECT no_9 FROM table_name_37 WHERE no_4 = "ava" AND no_6 = "addison"###context:CREATE TABLE table_name_37 (no_9 VARCHAR, no_4 VARCHAR, no_6 VARCHAR) |
###question:What was the No. 6 name when Emma was No. 2 and Sophia was No. 3?###answer:SELECT no_6 FROM table_name_78 WHERE no_2 = "emma" AND no_3 = "sophia"###context:CREATE TABLE table_name_78 (no_6 VARCHAR, no_2 VARCHAR, no_3 VARCHAR) |
###question:What was the No. 8 name when Chloe was No. 9 and Abigail was No. 7?###answer:SELECT no_8 FROM table_name_64 WHERE no_9 = "chloe" AND no_7 = "abigail"###context:CREATE TABLE table_name_64 (no_8 VARCHAR, no_9 VARCHAR, no_7 VARCHAR) |
###question:What was the No. 4 name when Madison was No. 5 and Abigail was No. 9?###answer:SELECT no_4 FROM table_name_83 WHERE no_5 = "madison" AND no_9 = "abigail"###context:CREATE TABLE table_name_83 (no_4 VARCHAR, no_5 VARCHAR, no_9 VARCHAR) |
###question:Which player had a to par score of +2?###answer:SELECT player FROM table_name_66 WHERE to_par = "+2"###context:CREATE TABLE table_name_66 (player VARCHAR, to_par VARCHAR) |
###question:How many codes have a density of 621.68, and a Land area (hectares) larger than 75.28?###answer:SELECT SUM(code) FROM table_name_24 WHERE density__inh_km²_ = 621.68 AND land_area__hectares_ > 75.28###context:CREATE TABLE table_name_24 (code INTEGER, density__inh_km²_ VARCHAR, land_area__hectares_ VARCHAR) |
###question:What is the average density with a land area of 123.02, and a Code larger than 2356?###answer:SELECT AVG(density__inh_km²_) FROM table_name_33 WHERE land_area__hectares_ = 123.02 AND code > 2356###context:CREATE TABLE table_name_33 (density__inh_km²_ INTEGER, land_area__hectares_ VARCHAR, code VARCHAR) |
###question:What is the average land area with a density of 815.48, and a Population larger than 411?###answer:SELECT AVG(land_area__hectares_) FROM table_name_29 WHERE density__inh_km²_ = 815.48 AND population > 411###context:CREATE TABLE table_name_29 (land_area__hectares_ INTEGER, density__inh_km²_ VARCHAR, populati... |
###question:What is the Date, when Partnering is "Francesca Lubiani", and when Opponent in Final is "Yuliya Beygelzimer / Jennifer Hopkins"?###answer:SELECT date FROM table_name_10 WHERE partnering = "francesca lubiani" AND opponent_in_final = "yuliya beygelzimer / jennifer hopkins"###context:CREATE TABLE table_name_10... |
###question:What is Score, when Outcome is "winner", when Partnering is "Nicole Sewell", and when Opponent in Final is "Victoria Davies / Kate Warne-Holland"?###answer:SELECT score FROM table_name_50 WHERE outcome = "winner" AND partnering = "nicole sewell" AND opponent_in_final = "victoria davies / kate warne-holland"... |
###question:What is Tie No., when Away Team is "Manchester United"?###answer:SELECT tie_no FROM table_name_32 WHERE away_team = "manchester united"###context:CREATE TABLE table_name_32 (tie_no VARCHAR, away_team VARCHAR) |
###question:What is Away Team, when Home Team is "Ipswich Town", and when Date is "6 February 1986"?###answer:SELECT away_team FROM table_name_90 WHERE home_team = "ipswich town" AND date = "6 february 1986"###context:CREATE TABLE table_name_90 (away_team VARCHAR, home_team VARCHAR, date VARCHAR) |
###question:What is Date, when Home Team is "Luton Town"?###answer:SELECT date FROM table_name_53 WHERE home_team = "luton town"###context:CREATE TABLE table_name_53 (date VARCHAR, home_team VARCHAR) |
###question:What is Away Team, when Date is "25 January 1986", and when Tie No is "6"?###answer:SELECT away_team FROM table_name_64 WHERE date = "25 january 1986" AND tie_no = "6"###context:CREATE TABLE table_name_64 (away_team VARCHAR, date VARCHAR, tie_no VARCHAR) |
###question:WHAT IS THE LEAGUE WITH A ROUND LARGER THAN 6?###answer:SELECT college_junior_club_team__league_ FROM table_name_82 WHERE round > 6###context:CREATE TABLE table_name_82 (college_junior_club_team__league_ VARCHAR, round INTEGER) |
###question:WHAT IS THE ROUND FOR ZACH BOYCHUK?###answer:SELECT COUNT(round) FROM table_name_6 WHERE player = "zach boychuk"###context:CREATE TABLE table_name_6 (round VARCHAR, player VARCHAR) |
###question:WHAT IS THE POSITION FOR CANADA, ROUND SMALLER THAN 7, PLAYER ZACH BOYCHUK?###answer:SELECT position FROM table_name_4 WHERE nationality = "canada" AND round < 7 AND player = "zach boychuk"###context:CREATE TABLE table_name_4 (position VARCHAR, player VARCHAR, nationality VARCHAR, round VARCHAR) |
###question:What was the date of week 8?###answer:SELECT date FROM table_name_27 WHERE week = 8###context:CREATE TABLE table_name_27 (date VARCHAR, week VARCHAR) |
###question:What was the result of the September 8, 1985 game?###answer:SELECT result FROM table_name_3 WHERE date = "september 8, 1985"###context:CREATE TABLE table_name_3 (result VARCHAR, date VARCHAR) |
###question:Which date did the oakland raiders play as the opponent when the Bills first downs were under 28?###answer:SELECT date FROM table_name_76 WHERE bills_first_downs < 28 AND opponent = "oakland raiders"###context:CREATE TABLE table_name_76 (date VARCHAR, bills_first_downs VARCHAR, opponent VARCHAR) |
###question:Who were the Paraguay scorers on June 15, 2008?###answer:SELECT paraguay_scorers FROM table_name_1 WHERE date = "june 15, 2008"###context:CREATE TABLE table_name_1 (paraguay_scorers VARCHAR, date VARCHAR) |
###question:What is the To par of the player with a t14 Finish?###answer:SELECT to_par FROM table_name_56 WHERE finish = "t14"###context:CREATE TABLE table_name_56 (to_par VARCHAR, finish VARCHAR) |
###question:What country is player Raymond Floyd from?###answer:SELECT country FROM table_name_35 WHERE player = "raymond floyd"###context:CREATE TABLE table_name_35 (country VARCHAR, player VARCHAR) |
###question:What is the Year(s) won from the United States as country with a To Par of +4?###answer:SELECT year_s__won FROM table_name_21 WHERE country = "united states" AND to_par = "+4"###context:CREATE TABLE table_name_21 (year_s__won VARCHAR, country VARCHAR, to_par VARCHAR) |
###question:Who is the player from the United States and a place of t2?###answer:SELECT player FROM table_name_10 WHERE country = "united states" AND place = "t2"###context:CREATE TABLE table_name_10 (player VARCHAR, country VARCHAR, place VARCHAR) |
###question:What's the sum of all values in category 1 when category 3 is equal to 300?###answer:SELECT SUM(category_1) FROM table_name_89 WHERE category_3 = "300"###context:CREATE TABLE table_name_89 (category_1 INTEGER, category_3 VARCHAR) |
###question:If category 1 is 0.05, what is category 3?###answer:SELECT category_3 FROM table_name_77 WHERE category_1 = 0.05###context:CREATE TABLE table_name_77 (category_3 VARCHAR, category_1 VARCHAR) |
###question:Which player has an average of 38.22?###answer:SELECT player FROM table_name_53 WHERE average = 38.22###context:CREATE TABLE table_name_53 (player VARCHAR, average VARCHAR) |
###question:What is the highest number of matches for Australia when the wickets are more than 13, the average is less than 23.33, and the best bowling is 5/36?###answer:SELECT MAX(matches) FROM table_name_35 WHERE wickets > 13 AND team = "australia" AND best_bowling = "5/36" AND average < 23.33###context:CREATE TABLE ... |
###question:What is the total average for the England team when the wickets are less than 18, the best bowling is 4/138, and there are less than 3 matches?###answer:SELECT COUNT(average) FROM table_name_57 WHERE team = "england" AND wickets < 18 AND best_bowling = "4/138" AND matches < 3###context:CREATE TABLE table_na... |
###question:Which To par has a Money ($) larger than 5,500?###answer:SELECT to_par FROM table_name_48 WHERE money___$__ > 5 OFFSET 500###context:CREATE TABLE table_name_48 (to_par VARCHAR, money___$__ INTEGER) |
###question:Which Score has a Place of 4?###answer:SELECT score FROM table_name_78 WHERE place = "4"###context:CREATE TABLE table_name_78 (score VARCHAR, place VARCHAR) |
###question:Which ethnic group has 5% of people categorizing religion as other?###answer:SELECT ethnic_group FROM table_name_98 WHERE other = "5%"###context:CREATE TABLE table_name_98 (ethnic_group VARCHAR, other VARCHAR) |
###question:Which ehtinc group consists of 93% muslims?###answer:SELECT ethnic_group FROM table_name_58 WHERE muslims = "93%"###context:CREATE TABLE table_name_58 (ethnic_group VARCHAR, muslims VARCHAR) |
###question:What is the Venue when the score was 1 – 1, and the result was 2 – 2?###answer:SELECT venue FROM table_name_87 WHERE score = "1 – 1" AND result = "2 – 2"###context:CREATE TABLE table_name_87 (venue VARCHAR, score VARCHAR, result VARCHAR) |
###question:What is the score of the 2006 Fifa World Cup Qualification?###answer:SELECT score FROM table_name_85 WHERE competition = "2006 fifa world cup qualification"###context:CREATE TABLE table_name_85 (score VARCHAR, competition VARCHAR) |
###question:What venue was the game held at when the Score was 3 – 0?###answer:SELECT venue FROM table_name_66 WHERE score = "3 – 0"###context:CREATE TABLE table_name_66 (venue VARCHAR, score VARCHAR) |
###question:What is the result of the game when the competition was a friendly match, and the Score was 1 – 1?###answer:SELECT result FROM table_name_65 WHERE competition = "friendly match" AND score = "1 – 1"###context:CREATE TABLE table_name_65 (result VARCHAR, competition VARCHAR, score VARCHAR) |
###question:What is Race 1, when Race 4 is 1?###answer:SELECT race_1 FROM table_name_85 WHERE race_4 = "1"###context:CREATE TABLE table_name_85 (race_1 VARCHAR, race_4 VARCHAR) |
###question:What is Race 2, when Race 1 is 30?###answer:SELECT race_2 FROM table_name_6 WHERE race_1 = "30"###context:CREATE TABLE table_name_6 (race_2 VARCHAR, race_1 VARCHAR) |
###question:What is Race 2, when Driver is John Faulkner?###answer:SELECT race_2 FROM table_name_2 WHERE driver = "john faulkner"###context:CREATE TABLE table_name_2 (race_2 VARCHAR, driver VARCHAR) |
###question:What is Driver, when Race 2 is 14?###answer:SELECT driver FROM table_name_48 WHERE race_2 = "14"###context:CREATE TABLE table_name_48 (driver VARCHAR, race_2 VARCHAR) |
###question:What is Race 4, when Race 1 is 28?###answer:SELECT race_4 FROM table_name_51 WHERE race_1 = "28"###context:CREATE TABLE table_name_51 (race_4 VARCHAR, race_1 VARCHAR) |
###question:What is Race 2, when Race 4 is 28?###answer:SELECT race_2 FROM table_name_40 WHERE race_4 = "28"###context:CREATE TABLE table_name_40 (race_2 VARCHAR, race_4 VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.