Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
51,700 | <question>: Which player who weighs 210 plays for the Reno Bighorns? <context>: CREATE TABLE table_name_68 (player VARCHAR, weight VARCHAR, team VARCHAR) | SELECT player FROM table_name_68 WHERE weight = 210 AND team = "reno bighorns" |
51,701 | <question>: What position does Brian Butch play? <context>: CREATE TABLE table_name_40 (pos VARCHAR, player VARCHAR) | SELECT pos FROM table_name_40 WHERE player = "brian butch" |
51,702 | <question>: Which Position has a Player of tyronn lue, and a Years in Orlando of 2003–2004? <context>: CREATE TABLE table_name_97 (position VARCHAR, player VARCHAR, years_in_orlando VARCHAR) | SELECT position FROM table_name_97 WHERE player = "tyronn lue" AND years_in_orlando = "2003–2004" |
51,703 | <question>: Which School/Club Team has a Player of deandre liggins? <context>: CREATE TABLE table_name_34 (school_club_team VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_name_34 WHERE player = "deandre liggins" |
51,704 | <question>: Which Position has a Years in Orlando of 1997–1998? <context>: CREATE TABLE table_name_68 (position VARCHAR, years_in_orlando VARCHAR) | SELECT position FROM table_name_68 WHERE years_in_orlando = "1997–1998" |
51,705 | <question>: Which Position has a School/Club Team of stanford? <context>: CREATE TABLE table_name_15 (position VARCHAR, school_club_team VARCHAR) | SELECT position FROM table_name_15 WHERE school_club_team = "stanford" |
51,706 | <question>: Which School/Club Team has a Years in Orlando of 1997–1998? <context>: CREATE TABLE table_name_92 (school_club_team VARCHAR, years_in_orlando VARCHAR) | SELECT school_club_team FROM table_name_92 WHERE years_in_orlando = "1997–1998" |
51,707 | <question>: Which Position has a Years in Orlando of 2003–2004? <context>: CREATE TABLE table_name_55 (position VARCHAR, years_in_orlando VARCHAR) | SELECT position FROM table_name_55 WHERE years_in_orlando = "2003–2004" |
51,708 | <question>: What is the High assists with a Date that is february 27? <context>: CREATE TABLE table_name_42 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_name_42 WHERE date = "february 27" |
51,709 | <question>: What is the High points with a Game that is 56? <context>: CREATE TABLE table_name_31 (high_points VARCHAR, game VARCHAR) | SELECT high_points FROM table_name_31 WHERE game = 56 |
51,710 | <question>: In what Distance has a Venue of sale? <context>: CREATE TABLE table_name_36 (distance VARCHAR, venue VARCHAR) | SELECT distance FROM table_name_36 WHERE venue = "sale" |
51,711 | <question>: WHo is Winner/2nd that has c. symons? <context>: CREATE TABLE table_name_84 (winner_2nd VARCHAR, jockey VARCHAR) | SELECT winner_2nd FROM table_name_84 WHERE jockey = "c. symons" |
51,712 | <question>: Which Race that Jockey of d. nikolic is in? <context>: CREATE TABLE table_name_78 (race VARCHAR, jockey VARCHAR) | SELECT race FROM table_name_78 WHERE jockey = "d. nikolic" |
51,713 | <question>: Name The Result that has a Distance of 1200m, and a Weight (kg) of 55.5? <context>: CREATE TABLE table_name_5 (result VARCHAR, distance VARCHAR, weight__kg_ VARCHAR) | SELECT result FROM table_name_5 WHERE distance = "1200m" AND weight__kg_ = 55.5 |
51,714 | <question>: What is the previous team of the United States player who had 2 NBA years and played the F position? <context>: CREATE TABLE table_name_41 (previous_team VARCHAR, pos VARCHAR, nationality VARCHAR, nba_years_ VARCHAR, a_ VARCHAR) | SELECT previous_team FROM table_name_41 WHERE nationality = "united states" AND nba_years_[a_] = 2 AND pos = "f" |
51,715 | <question>: Which Team has a Score of 108-107? <context>: CREATE TABLE table_name_82 (team VARCHAR, score VARCHAR) | SELECT team FROM table_name_82 WHERE score = "108-107" |
51,716 | <question>: Which Record has a Date of may 31? <context>: CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_55 WHERE date = "may 31" |
51,717 | <question>: Which Game has a Team of at phoenix, and a Score of 107-119? <context>: CREATE TABLE table_name_54 (game VARCHAR, team VARCHAR, score VARCHAR) | SELECT COUNT(game) FROM table_name_54 WHERE team = "at phoenix" AND score = "107-119" |
51,718 | <question>: Which Location Attendance has a Game larger than 5? <context>: CREATE TABLE table_name_32 (location_attendance VARCHAR, game INTEGER) | SELECT location_attendance FROM table_name_32 WHERE game > 5 |
51,719 | <question>: Which Team has a Score of 89-123? <context>: CREATE TABLE table_name_40 (team VARCHAR, score VARCHAR) | SELECT team FROM table_name_40 WHERE score = "89-123" |
51,720 | <question>: What is the average Game with a Date that is june 14? <context>: CREATE TABLE table_name_24 (game INTEGER, date VARCHAR) | SELECT AVG(game) FROM table_name_24 WHERE date = "june 14" |
51,721 | <question>: What is the Record with a Team that is detroit and a Date that is june 10? <context>: CREATE TABLE table_name_56 (record VARCHAR, team VARCHAR, date VARCHAR) | SELECT record FROM table_name_56 WHERE team = "detroit" AND date = "june 10" |
51,722 | <question>: What is the Location Attendance with a Record that is 1-4? <context>: CREATE TABLE table_name_31 (location_attendance VARCHAR, record VARCHAR) | SELECT location_attendance FROM table_name_31 WHERE record = "1-4" |
51,723 | <question>: How much is the GDP for a population density of 254.7? <context>: CREATE TABLE table_name_7 (gdp__ppp__$m_usd VARCHAR, population_density__per_km²_ VARCHAR) | SELECT gdp__ppp__$m_usd FROM table_name_7 WHERE population_density__per_km²_ = "254.7" |
51,724 | <question>: Which country has a population density of 50.3? <context>: CREATE TABLE table_name_46 (country VARCHAR, population_density__per_km²_ VARCHAR) | SELECT country FROM table_name_46 WHERE population_density__per_km²_ = "50.3" |
51,725 | <question>: How much is the GDP for an area of 61,395? <context>: CREATE TABLE table_name_86 (gdp__ppp__$m_usd VARCHAR, area__km²_ VARCHAR) | SELECT gdp__ppp__$m_usd FROM table_name_86 WHERE area__km²_ = "61,395" |
51,726 | <question>: How much is the population density with a GDP at $188,112? <context>: CREATE TABLE table_name_31 (population_density__per_km²_ VARCHAR, gdp__ppp__$m_usd VARCHAR) | SELECT population_density__per_km²_ FROM table_name_31 WHERE gdp__ppp__$m_usd = "$188,112" |
51,727 | <question>: How much is the GDP for an area of 116? <context>: CREATE TABLE table_name_26 (gdp__ppp__$m_usd VARCHAR, area__km²_ VARCHAR) | SELECT gdp__ppp__$m_usd FROM table_name_26 WHERE area__km²_ = "116" |
51,728 | <question>: Which country has a population of 3,221,216? <context>: CREATE TABLE table_name_79 (country VARCHAR, population__2011_est_ VARCHAR) | SELECT country FROM table_name_79 WHERE population__2011_est_ = "3,221,216" |
51,729 | <question>: What was Miller Barber wins with Top-5 less than 2 and 19 Events? <context>: CREATE TABLE table_name_77 (wins VARCHAR, top_5 VARCHAR, events VARCHAR) | SELECT COUNT(wins) FROM table_name_77 WHERE top_5 < 2 AND events = 19 |
51,730 | <question>: What is the average number of Wins in a PGA Championship with a Top-5 less than 2? <context>: CREATE TABLE table_name_87 (wins INTEGER, tournament VARCHAR, top_5 VARCHAR) | SELECT AVG(wins) FROM table_name_87 WHERE tournament = "pga championship" AND top_5 < 2 |
51,731 | <question>: What is the highest Top-5 ranking with Events less than 4? <context>: CREATE TABLE table_name_63 (top_5 INTEGER, events INTEGER) | SELECT MAX(top_5) FROM table_name_63 WHERE events < 4 |
51,732 | <question>: Which week's game was attended by 65,272 people? <context>: CREATE TABLE table_name_18 (week VARCHAR, attendance VARCHAR) | SELECT week FROM table_name_18 WHERE attendance = "65,272" |
51,733 | <question>: How many people attended the game in week 13? <context>: CREATE TABLE table_name_60 (attendance VARCHAR, week VARCHAR) | SELECT attendance FROM table_name_60 WHERE week = 13 |
51,734 | <question>: During which week was the earliest game with an attendance of 65,904 people? <context>: CREATE TABLE table_name_58 (week INTEGER, attendance VARCHAR) | SELECT MIN(week) FROM table_name_58 WHERE attendance = "65,904" |
51,735 | <question>: What height is the tallest for an outside hitter? <context>: CREATE TABLE table_name_94 (height INTEGER, position VARCHAR) | SELECT MAX(height) FROM table_name_94 WHERE position = "outside hitter" |
51,736 | <question>: What is the highest silver rank with a total of 27? <context>: CREATE TABLE table_name_65 (silver INTEGER, total VARCHAR) | SELECT MAX(silver) FROM table_name_65 WHERE total = 27 |
51,737 | <question>: What is the total number of Silver when Bronze was smaller than 1 with a total smaller than 2 in Bulgaria? <context>: CREATE TABLE table_name_6 (silver VARCHAR, nation VARCHAR, bronze VARCHAR, total VARCHAR) | SELECT COUNT(silver) FROM table_name_6 WHERE bronze < 1 AND total < 2 AND nation = "bulgaria" |
51,738 | <question>: What is the temperature classification of a purple colored glass bulb? <context>: CREATE TABLE table_name_22 (temperature_classification VARCHAR, glass_bulb_color VARCHAR) | SELECT temperature_classification FROM table_name_22 WHERE glass_bulb_color = "purple" |
51,739 | <question>: What is the color code with a temperature classification of ordinary? <context>: CREATE TABLE table_name_67 (color_code__with_fusible_link_ VARCHAR, temperature_classification VARCHAR) | SELECT color_code__with_fusible_link_ FROM table_name_67 WHERE temperature_classification = "ordinary" |
51,740 | <question>: What is the temperature rating of the intermediate temperature classification? <context>: CREATE TABLE table_name_1 (temperature_rating VARCHAR, temperature_classification VARCHAR) | SELECT temperature_rating FROM table_name_1 WHERE temperature_classification = "intermediate" |
51,741 | <question>: What is the average Goals for team Kairat, in the 2002 season with more than 29 apps? <context>: CREATE TABLE table_name_81 (goals INTEGER, apps VARCHAR, team VARCHAR, season VARCHAR) | SELECT AVG(goals) FROM table_name_81 WHERE team = "kairat" AND season = "2002" AND apps > 29 |
51,742 | <question>: What is the Country for the 2006-07 season? <context>: CREATE TABLE table_name_11 (country VARCHAR, season VARCHAR) | SELECT country FROM table_name_11 WHERE season = "2006-07" |
51,743 | <question>: What is the average Apps for the team Kairat with level larger than 1? <context>: CREATE TABLE table_name_51 (apps INTEGER, team VARCHAR, level VARCHAR) | SELECT AVG(apps) FROM table_name_51 WHERE team = "kairat" AND level > 1 |
51,744 | <question>: How many laps did the rider with a grid larger than 11, a Honda cbr1000rr bike, and a time of +42.633? <context>: CREATE TABLE table_name_17 (laps VARCHAR, time VARCHAR, grid VARCHAR, bike VARCHAR) | SELECT laps FROM table_name_17 WHERE grid > 11 AND bike = "honda cbr1000rr" AND time = "+42.633" |
51,745 | <question>: Who was teh rider with 18 laps and a grid of 25? <context>: CREATE TABLE table_name_43 (rider VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT rider FROM table_name_43 WHERE laps = 18 AND grid = 25 |
51,746 | <question>: Who was the rider who had an accident time and a kawasaki zx-10r bike? <context>: CREATE TABLE table_name_49 (rider VARCHAR, time VARCHAR, bike VARCHAR) | SELECT rider FROM table_name_49 WHERE time = "accident" AND bike = "kawasaki zx-10r" |
51,747 | <question>: What is the time of rider Loic Napoleone, who had less than 18 laps and a grid greater than 8? <context>: CREATE TABLE table_name_7 (time VARCHAR, rider VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT time FROM table_name_7 WHERE laps < 18 AND grid > 8 AND rider = "loic napoleone" |
51,748 | <question>: How many laps did the rider with a grid larger than 14 and a time of +33.150 have? <context>: CREATE TABLE table_name_82 (laps VARCHAR, grid VARCHAR, time VARCHAR) | SELECT laps FROM table_name_82 WHERE grid > 14 AND time = "+33.150" |
51,749 | <question>: What is Away, when Home is Guelph Gargoyles? <context>: CREATE TABLE table_name_24 (away VARCHAR, home VARCHAR) | SELECT away FROM table_name_24 WHERE home = "guelph gargoyles" |
51,750 | <question>: What is Home, when Ground is Humber College North, and when Time is 15:00? <context>: CREATE TABLE table_name_58 (home VARCHAR, ground VARCHAR, time VARCHAR) | SELECT home FROM table_name_58 WHERE ground = "humber college north" AND time = "15:00" |
51,751 | <question>: What is Date, when Away is High Park Demons? <context>: CREATE TABLE table_name_6 (date VARCHAR, away VARCHAR) | SELECT date FROM table_name_6 WHERE away = "high park demons" |
51,752 | <question>: What is Date, when Away is High Park Demons? <context>: CREATE TABLE table_name_43 (date VARCHAR, away VARCHAR) | SELECT date FROM table_name_43 WHERE away = "high park demons" |
51,753 | <question>: What is Time, when Away is Central Blues? <context>: CREATE TABLE table_name_95 (time VARCHAR, away VARCHAR) | SELECT time FROM table_name_95 WHERE away = "central blues" |
51,754 | <question>: What cover has a published date of May 27, 2009 (hc) May 20, 2009 (tpb)? <context>: CREATE TABLE table_name_12 (cover VARCHAR, published VARCHAR) | SELECT cover FROM table_name_12 WHERE published = "may 27, 2009 (hc) may 20, 2009 (tpb)" |
51,755 | <question>: What is the number of the volume that has an ISBN of 978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)? <context>: CREATE TABLE table_name_49 (volume VARCHAR, isbn VARCHAR) | SELECT volume FROM table_name_49 WHERE isbn = "978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)" |
51,756 | <question>: What is the name of the series with an ISBN of 978-1-59582-523-0 (tpb)? <context>: CREATE TABLE table_name_22 (series VARCHAR, isbn VARCHAR) | SELECT series FROM table_name_22 WHERE isbn = "978-1-59582-523-0 (tpb)" |
51,757 | <question>: What volume number has the ISBN of 978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)? <context>: CREATE TABLE table_name_38 (volume VARCHAR, isbn VARCHAR) | SELECT volume FROM table_name_38 WHERE isbn = "978-1-59582-712-8 (hc) 978-1-59582-713-5 (tpb)" |
51,758 | <question>: What is the ISBN of the Conan the Barbarian series that has the title of Queen of the Black Coast? <context>: CREATE TABLE table_name_75 (isbn VARCHAR, series VARCHAR, title VARCHAR) | SELECT isbn FROM table_name_75 WHERE series = "conan the barbarian" AND title = "queen of the black coast" |
51,759 | <question>: What cover has Throne of Aquilonia as the title? <context>: CREATE TABLE table_name_46 (cover VARCHAR, title VARCHAR) | SELECT cover FROM table_name_46 WHERE title = "throne of aquilonia" |
51,760 | <question>: With a Rank of less than 4, what is Pablo Prigioni's total number of Games? <context>: CREATE TABLE table_name_44 (games VARCHAR, name VARCHAR, rank VARCHAR) | SELECT COUNT(games) FROM table_name_44 WHERE name = "pablo prigioni" AND rank < 4 |
51,761 | <question>: How many Assists for the Player with more than 25 Games? <context>: CREATE TABLE table_name_45 (assists INTEGER, games INTEGER) | SELECT SUM(assists) FROM table_name_45 WHERE games > 25 |
51,762 | <question>: What is the Rank of the Maccabi Tel Aviv Player with 25 Games? <context>: CREATE TABLE table_name_82 (rank VARCHAR, games VARCHAR, team VARCHAR) | SELECT COUNT(rank) FROM table_name_82 WHERE games = 25 AND team = "maccabi tel aviv" |
51,763 | <question>: How many Assists for the Player with a Rank greater than 3 in less than 25 Games? <context>: CREATE TABLE table_name_66 (assists INTEGER, rank VARCHAR, games VARCHAR) | SELECT AVG(assists) FROM table_name_66 WHERE rank > 3 AND games < 25 |
51,764 | <question>: How many Games for Rank 2 Terrell McIntyre? <context>: CREATE TABLE table_name_8 (games INTEGER, name VARCHAR, rank VARCHAR) | SELECT MIN(games) FROM table_name_8 WHERE name = "terrell mcintyre" AND rank > 2 |
51,765 | <question>: What is the Venue of the Heptathlon after 2006 where Tatyana Chernova comes in Position 7th? <context>: CREATE TABLE table_name_70 (venue VARCHAR, notes VARCHAR, year VARCHAR, position VARCHAR) | SELECT venue FROM table_name_70 WHERE year > 2006 AND position = "7th" AND notes = "heptathlon" |
51,766 | <question>: In what Year did Chernova come in 1st in Götzis, Austria? <context>: CREATE TABLE table_name_37 (year INTEGER, venue VARCHAR, position VARCHAR) | SELECT SUM(year) FROM table_name_37 WHERE venue = "götzis, austria" AND position = "1st" |
51,767 | <question>: Which Cover Model was featured on 8-03? <context>: CREATE TABLE table_name_8 (cover_model VARCHAR, date VARCHAR) | SELECT cover_model FROM table_name_8 WHERE date = "8-03" |
51,768 | <question>: Who was the Centerfold model when O.J. Simpson was the Interview Subject? <context>: CREATE TABLE table_name_72 (centerfold_model VARCHAR, interview_subject VARCHAR) | SELECT centerfold_model FROM table_name_72 WHERE interview_subject = "o.j. simpson" |
51,769 | <question>: Who was the Cover model when the Centerfold Model was Marketa Janska? <context>: CREATE TABLE table_name_43 (cover_model VARCHAR, centerfold_model VARCHAR) | SELECT cover_model FROM table_name_43 WHERE centerfold_model = "marketa janska" |
51,770 | <question>: Who was the Cover model on 11-03? <context>: CREATE TABLE table_name_96 (cover_model VARCHAR, date VARCHAR) | SELECT cover_model FROM table_name_96 WHERE date = "11-03" |
51,771 | <question>: Who was the Centerfold Model on 9-03? <context>: CREATE TABLE table_name_79 (centerfold_model VARCHAR, date VARCHAR) | SELECT centerfold_model FROM table_name_79 WHERE date = "9-03" |
51,772 | <question>: How many rounds had a selection of 165? <context>: CREATE TABLE table_name_74 (round INTEGER, selection VARCHAR) | SELECT SUM(round) FROM table_name_74 WHERE selection = 165 |
51,773 | <question>: What is the average Height for the Position of d, with a Birthplace of new hope, minnesota? <context>: CREATE TABLE table_name_79 (height__cm_ INTEGER, position VARCHAR, birthplace VARCHAR) | SELECT AVG(height__cm_) FROM table_name_79 WHERE position = "d" AND birthplace = "new hope, minnesota" |
51,774 | <question>: What is the 1990–1991 Team when the Birthplace shows as new york? <context>: CREATE TABLE table_name_23 (birthplace VARCHAR) | SELECT 1990 AS _1991_team FROM table_name_23 WHERE birthplace = "new york" |
51,775 | <question>: What is the Position when the person's birthplace was toledo, ohio? <context>: CREATE TABLE table_name_32 (position VARCHAR, birthplace VARCHAR) | SELECT position FROM table_name_32 WHERE birthplace = "toledo, ohio" |
51,776 | <question>: What is the 1990–1991 Team that had Joel Otto? <context>: CREATE TABLE table_name_41 (name VARCHAR) | SELECT 1990 AS _1991_team FROM table_name_41 WHERE name = "joel otto" |
51,777 | <question>: Which T.C. has a Year larger than 2007, and a D.C. of 21st? <context>: CREATE TABLE table_name_26 (tc VARCHAR, year VARCHAR, dc VARCHAR) | SELECT tc FROM table_name_26 WHERE year > 2007 AND dc = "21st" |
51,778 | <question>: What kind of D.C. has Races smaller than 20, and Points larger than 0, and Drivers of christian vietoris, and Wins of 1? <context>: CREATE TABLE table_name_65 (dc VARCHAR, wins VARCHAR, drivers VARCHAR, races VARCHAR, points VARCHAR) | SELECT dc FROM table_name_65 WHERE races < 20 AND points > 0 AND drivers = "christian vietoris" AND wins = 1 |
51,779 | <question>: Which Races has a T.C. of 3rd, and a D.C. of 7th? <context>: CREATE TABLE table_name_14 (races INTEGER, tc VARCHAR, dc VARCHAR) | SELECT MIN(races) FROM table_name_14 WHERE tc = "3rd" AND dc = "7th" |
51,780 | <question>: What is the 2007 of the Grand Slam Tournaments in 2008? <context>: CREATE TABLE table_name_16 (Id VARCHAR) | SELECT 2007 FROM table_name_16 WHERE 2008 = "grand slam tournaments" |
51,781 | <question>: What is the Tournament with a 3r 2011 and A 2010? <context>: CREATE TABLE table_name_63 (tournament VARCHAR) | SELECT tournament FROM table_name_63 WHERE 2011 = "3r" AND 2010 = "a" |
51,782 | <question>: What is the 2008 of the 2r 2011 and A 2010? <context>: CREATE TABLE table_name_38 (Id VARCHAR) | SELECT 2008 FROM table_name_38 WHERE 2011 = "2r" AND 2010 = "a" |
51,783 | <question>: What is the 2010 of the Grand Slam Tournaments in 2011? <context>: CREATE TABLE table_name_66 (Id VARCHAR) | SELECT 2010 FROM table_name_66 WHERE 2011 = "grand slam tournaments" |
51,784 | <question>: What is the total number of runners-up for a club with winning years of 2010? <context>: CREATE TABLE table_name_92 (runners_up VARCHAR, winning_years VARCHAR) | SELECT COUNT(runners_up) FROM table_name_92 WHERE winning_years = "2010" |
51,785 | <question>: Who were the runners-up for the FC Viktoria Plzeň club? <context>: CREATE TABLE table_name_7 (runners_up VARCHAR, club VARCHAR) | SELECT runners_up FROM table_name_7 WHERE club = "fc viktoria plzeň" |
51,786 | <question>: Which congress was held in 2010? <context>: CREATE TABLE table_name_50 (con__gress VARCHAR, date VARCHAR) | SELECT con__gress FROM table_name_50 WHERE date = "2010" |
51,787 | <question>: What is the casting temperature for a hardness of 22? <context>: CREATE TABLE table_name_88 (casting_at__°c_ VARCHAR, hardness VARCHAR) | SELECT casting_at__°c_ FROM table_name_88 WHERE hardness = "22" |
51,788 | <question>: What is the hardness for the alloy that is liquid at 243 degrees C? <context>: CREATE TABLE table_name_45 (hardness VARCHAR, liquid_at__°c_ VARCHAR) | SELECT hardness FROM table_name_45 WHERE liquid_at__°c_ = "243" |
51,789 | <question>: What is the Sn/Sb percentage that is liquid at 258 degrees C? <context>: CREATE TABLE table_name_4 (sn_sb___percentage_ VARCHAR, liquid_at__°c_ VARCHAR) | SELECT sn_sb___percentage_ FROM table_name_4 WHERE liquid_at__°c_ = "258" |
51,790 | <question>: What is the remelting temperature for the alloy that has a Sn/Sb ratio of 9.5/15? <context>: CREATE TABLE table_name_51 (remelting_at__°c_ VARCHAR, sn_sb___percentage_ VARCHAR) | SELECT remelting_at__°c_ FROM table_name_51 WHERE sn_sb___percentage_ = "9.5/15" |
51,791 | <question>: What is the casting temperature for the alloy with hardness 21? <context>: CREATE TABLE table_name_98 (casting_at__°c_ VARCHAR, hardness VARCHAR) | SELECT casting_at__°c_ FROM table_name_98 WHERE hardness = "21" |
51,792 | <question>: What's the most laps when grid is 16? <context>: CREATE TABLE table_name_93 (laps INTEGER, grid VARCHAR) | SELECT MAX(laps) FROM table_name_93 WHERE grid = 16 |
51,793 | <question>: How many laps were there for a grid of 13? <context>: CREATE TABLE table_name_35 (laps VARCHAR, grid VARCHAR) | SELECT COUNT(laps) FROM table_name_35 WHERE grid = 13 |
51,794 | <question>: How many weeks had an attendance at 69,149? <context>: CREATE TABLE table_name_12 (week VARCHAR, attendance VARCHAR) | SELECT COUNT(week) FROM table_name_12 WHERE attendance = "69,149" |
51,795 | <question>: On what date did week 6 occur? <context>: CREATE TABLE table_name_40 (date VARCHAR, week VARCHAR) | SELECT date FROM table_name_40 WHERE week = 6 |
51,796 | <question>: Who was the opponent on December 18, 2005? <context>: CREATE TABLE table_name_80 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_80 WHERE date = "december 18, 2005" |
51,797 | <question>: What is the result/score for the match report recap on week 14? <context>: CREATE TABLE table_name_25 (result_score VARCHAR, match_report VARCHAR, week VARCHAR) | SELECT result_score FROM table_name_25 WHERE match_report = "recap" AND week = 14 |
51,798 | <question>: How many weeks have w 51-29 as the result/score? <context>: CREATE TABLE table_name_34 (week INTEGER, result_score VARCHAR) | SELECT SUM(week) FROM table_name_34 WHERE result_score = "w 51-29" |
51,799 | <question>: What is the result/score that has 6-5 as the record? <context>: CREATE TABLE table_name_45 (result_score VARCHAR, record VARCHAR) | SELECT result_score FROM table_name_45 WHERE record = "6-5" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.