Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
51,300 | <question>: What is the Venue with a Result that is win, and a Score that is 5-0? <context>: CREATE TABLE table_name_35 (venue VARCHAR, result VARCHAR, score VARCHAR) | SELECT venue FROM table_name_35 WHERE result = "win" AND score = "5-0" |
51,301 | <question>: What is the Competition with a Result of win with a Score that is 1-0? <context>: CREATE TABLE table_name_91 (competition VARCHAR, result VARCHAR, score VARCHAR) | SELECT competition FROM table_name_91 WHERE result = "win" AND score = "1-0" |
51,302 | <question>: How many total Gold medals did the nation ranked #3 receive? <context>: CREATE TABLE table_name_22 (gold INTEGER, rank VARCHAR) | SELECT SUM(gold) FROM table_name_22 WHERE rank = "3" |
51,303 | <question>: What ship size had a cargo value of $46,000 in 2006? <context>: CREATE TABLE table_name_89 (ship_size VARCHAR) | SELECT ship_size FROM table_name_89 WHERE 2006 = "$46,000" |
51,304 | <question>: What ship size had a cargo value of $31,750 in 2006? <context>: CREATE TABLE table_name_57 (ship_size VARCHAR) | SELECT ship_size FROM table_name_57 WHERE 2006 = "$31,750" |
51,305 | <question>: What was the cargo value in 2005 with a ship size of all product carriers? <context>: CREATE TABLE table_name_31 (ship_size VARCHAR) | SELECT 2005 FROM table_name_31 WHERE ship_size = "all product carriers" |
51,306 | <question>: What was the cargo value in 2004 for ship size? <context>: CREATE TABLE table_name_13 (ship_size VARCHAR) | SELECT 2004 FROM table_name_13 WHERE ship_size = "ship size" |
51,307 | <question>: What cargo was contained in a ship size of aframax? <context>: CREATE TABLE table_name_40 (cargo VARCHAR, ship_size VARCHAR) | SELECT cargo FROM table_name_40 WHERE ship_size = "aframax" |
51,308 | <question>: What was the cargo value in 2005 for all product carriers? <context>: CREATE TABLE table_name_46 (cargo VARCHAR) | SELECT 2005 FROM table_name_46 WHERE cargo = "all product carriers" |
51,309 | <question>: What kind of Live births has a Migration of -14 873? <context>: CREATE TABLE table_name_85 (live_births VARCHAR, migration VARCHAR) | SELECT live_births FROM table_name_85 WHERE migration = "-14 873" |
51,310 | <question>: What is the average Goals/Games for Rummenigge, Karl-Heinz, with Goals less than 162? <context>: CREATE TABLE table_name_66 (games VARCHAR, goals INTEGER, name VARCHAR) | SELECT AVG(goals) / games FROM table_name_66 WHERE name = "rummenigge, karl-heinz" AND goals < 162 |
51,311 | <question>: What is the sum of Games for Allofs, Klaus, with Goals less than 177? <context>: CREATE TABLE table_name_53 (games INTEGER, name VARCHAR, goals VARCHAR) | SELECT SUM(games) FROM table_name_53 WHERE name = "allofs, klaus" AND goals < 177 |
51,312 | <question>: What is the highest Rank for more than 220 goals in 1965–1978-78? <context>: CREATE TABLE table_name_51 (rank INTEGER, goals VARCHAR, years VARCHAR) | SELECT MAX(rank) FROM table_name_51 WHERE goals > 220 AND years = "1965–1978-78" |
51,313 | <question>: Who is the composer of El Hanone? <context>: CREATE TABLE table_name_98 (composer VARCHAR, title VARCHAR) | SELECT composer FROM table_name_98 WHERE title = "el hanone" |
51,314 | <question>: Which arranger worked with composer Imad Shams Eldeen at 4:03? <context>: CREATE TABLE table_name_19 (arranger VARCHAR, composer VARCHAR, length VARCHAR) | SELECT arranger FROM table_name_19 WHERE composer = "imad shams eldeen" AND length = "4:03" |
51,315 | <question>: What is the title track that is 3:50 and arranged by Tarek Akef? <context>: CREATE TABLE table_name_59 (title VARCHAR, arranger VARCHAR, length VARCHAR) | SELECT title FROM table_name_59 WHERE arranger = "tarek akef" AND length = "3:50" |
51,316 | <question>: Who is the arranger for Ana Rouh? <context>: CREATE TABLE table_name_29 (arranger VARCHAR, title VARCHAR) | SELECT arranger FROM table_name_29 WHERE title = "ana rouh" |
51,317 | <question>: Who was the writer that worked with arranger Tarek Akef on a 4:58 song? <context>: CREATE TABLE table_name_20 (writer VARCHAR, arranger VARCHAR, length VARCHAR) | SELECT writer FROM table_name_20 WHERE arranger = "tarek akef" AND length = "4:58" |
51,318 | <question>: What is the year of the ceremony with a not nominated result and ničiji sin as the original title? <context>: CREATE TABLE table_name_12 (year__ceremony_ VARCHAR, result VARCHAR, original_title VARCHAR) | SELECT year__ceremony_ FROM table_name_12 WHERE result = "not nominated" AND original_title = "ničiji sin" |
51,319 | <question>: What is the year of the ceremony with the original title ničiji sin? <context>: CREATE TABLE table_name_98 (year__ceremony_ VARCHAR, original_title VARCHAR) | SELECT year__ceremony_ FROM table_name_98 WHERE original_title = "ničiji sin" |
51,320 | <question>: What is the result of the ceremony in 2006 (79th)? <context>: CREATE TABLE table_name_1 (result VARCHAR, year__ceremony_ VARCHAR) | SELECT result FROM table_name_1 WHERE year__ceremony_ = "2006 (79th)" |
51,321 | <question>: What is the film title used for nomination with the original title sedamdeset i dva dana? <context>: CREATE TABLE table_name_65 (film_title_used_in_nomination VARCHAR, original_title VARCHAR) | SELECT film_title_used_in_nomination FROM table_name_65 WHERE original_title = "sedamdeset i dva dana" |
51,322 | <question>: Who is the director of Cannibal vegetarian, which is the film title used in nomination? <context>: CREATE TABLE table_name_92 (director_s_ VARCHAR, film_title_used_in_nomination VARCHAR) | SELECT director_s_ FROM table_name_92 WHERE film_title_used_in_nomination = "cannibal vegetarian" |
51,323 | <question>: What is the average First Downs for december 4? <context>: CREATE TABLE table_name_82 (first_downs INTEGER, date VARCHAR) | SELECT AVG(first_downs) FROM table_name_82 WHERE date = "december 4" |
51,324 | <question>: What is the lowest Attendance against the tampa bay buccaneers, with Points Against of less than 7? <context>: CREATE TABLE table_name_53 (attendance INTEGER, opponent VARCHAR, points_against VARCHAR) | SELECT MIN(attendance) FROM table_name_53 WHERE opponent = "tampa bay buccaneers" AND points_against < 7 |
51,325 | <question>: What is the highest Points when the record was 12–2, and the Points Against are larger than 6? <context>: CREATE TABLE table_name_25 (points_for INTEGER, record VARCHAR, points_against VARCHAR) | SELECT MAX(points_for) FROM table_name_25 WHERE record = "12–2" AND points_against > 6 |
51,326 | <question>: Which Partial thromboplastin time has a Prothrombin time of prolonged and a Condition of factor v deficiency? <context>: CREATE TABLE table_name_76 (partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR, condition VARCHAR) | SELECT partial_thromboplastin_time FROM table_name_76 WHERE prothrombin_time = "prolonged" AND condition = "factor v deficiency" |
51,327 | <question>: Which Condition has a Bleeding time of prolonged, a Platelet count of decreased, and Prothrombin time of prolonged? <context>: CREATE TABLE table_name_1 (condition VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR, platelet_count VARCHAR) | SELECT condition FROM table_name_1 WHERE bleeding_time = "prolonged" AND platelet_count = "decreased" AND prothrombin_time = "prolonged" |
51,328 | <question>: Which Platelet count has a Partial thromboplastin time of prolonged or unaffected? <context>: CREATE TABLE table_name_20 (platelet_count VARCHAR, partial_thromboplastin_time VARCHAR) | SELECT platelet_count FROM table_name_20 WHERE partial_thromboplastin_time = "prolonged or unaffected" |
51,329 | <question>: Which Prothrombin time that has a Partial thromboplastin time of unaffected, and a Condition of thrombocytopenia? <context>: CREATE TABLE table_name_6 (prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR, condition VARCHAR) | SELECT prothrombin_time FROM table_name_6 WHERE partial_thromboplastin_time = "unaffected" AND condition = "thrombocytopenia" |
51,330 | <question>: Which Condition has a Bleeding time of unaffected and a Prothrombin time of prolonged? <context>: CREATE TABLE table_name_75 (condition VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR) | SELECT condition FROM table_name_75 WHERE bleeding_time = "unaffected" AND prothrombin_time = "prolonged" |
51,331 | <question>: Which Partial thromboplastin time has a Prothrombin time of prolonged, and a Bleeding time of unaffected, and a Condition of vitamin k deficiency or warfarin? Question 6 <context>: CREATE TABLE table_name_1 (partial_thromboplastin_time VARCHAR, condition VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR) | SELECT partial_thromboplastin_time FROM table_name_1 WHERE prothrombin_time = "prolonged" AND bleeding_time = "unaffected" AND condition = "vitamin k deficiency or warfarin" |
51,332 | <question>: What are the notes where the authors are Zhou & Zhang? <context>: CREATE TABLE table_name_11 (notes VARCHAR, authors VARCHAR) | SELECT notes FROM table_name_11 WHERE authors = "zhou & zhang" |
51,333 | <question>: What is the status where the notes are possible jr synonym of sapeornis? <context>: CREATE TABLE table_name_60 (status VARCHAR, notes VARCHAR) | SELECT status FROM table_name_60 WHERE notes = "possible jr synonym of sapeornis" |
51,334 | <question>: What is the average Top-5 finishes with 2 as the Top-10 and a greater than 4 Top-25? <context>: CREATE TABLE table_name_74 (top_5 INTEGER, top_10 VARCHAR, top_25 VARCHAR) | SELECT AVG(top_5) FROM table_name_74 WHERE top_10 = 2 AND top_25 > 4 |
51,335 | <question>: What are the least Top-5 finish when the events are greater than 18? <context>: CREATE TABLE table_name_82 (top_5 INTEGER, events INTEGER) | SELECT MIN(top_5) FROM table_name_82 WHERE events > 18 |
51,336 | <question>: What is the total of wins when the evens is less than 3? <context>: CREATE TABLE table_name_66 (wins INTEGER, events INTEGER) | SELECT SUM(wins) FROM table_name_66 WHERE events < 3 |
51,337 | <question>: How many cuts made when the Top-10 is larger than 1, and the wins greater than 0, and a Top-5 greater than 2, when the events is greater than 18? <context>: CREATE TABLE table_name_74 (cuts_made VARCHAR, events VARCHAR, top_5 VARCHAR, top_10 VARCHAR, wins VARCHAR) | SELECT COUNT(cuts_made) FROM table_name_74 WHERE top_10 > 1 AND wins > 0 AND top_5 > 2 AND events > 18 |
51,338 | <question>: What years did Omar Sneed play? <context>: CREATE TABLE table_name_9 (season VARCHAR, name VARCHAR) | SELECT season FROM table_name_9 WHERE name = "omar sneed" |
51,339 | <question>: Which season did Jovy Sese play? <context>: CREATE TABLE table_name_7 (season VARCHAR, name VARCHAR) | SELECT season FROM table_name_7 WHERE name = "jovy sese" |
51,340 | <question>: How did the School/Club Team of Manuel Luis Quezon acquire their Forward? <context>: CREATE TABLE table_name_53 (acquisition_via VARCHAR, position VARCHAR, school_club_team VARCHAR) | SELECT acquisition_via FROM table_name_53 WHERE position = "forward" AND school_club_team = "manuel luis quezon" |
51,341 | <question>: Which School/ Club Team acquired Jondan Salvador via trade? <context>: CREATE TABLE table_name_8 (school_club_team VARCHAR, acquisition_via VARCHAR, name VARCHAR) | SELECT school_club_team FROM table_name_8 WHERE acquisition_via = "trade" AND name = "jondan salvador" |
51,342 | <question>: What is the Points with a Played larger than 14? <context>: CREATE TABLE table_name_18 (points VARCHAR, played INTEGER) | SELECT COUNT(points) FROM table_name_18 WHERE played > 14 |
51,343 | <question>: What is the Points with an Against smaller than 16? <context>: CREATE TABLE table_name_51 (points INTEGER, against INTEGER) | SELECT AVG(points) FROM table_name_51 WHERE against < 16 |
51,344 | <question>: Which Team has a Lost larger than 2, and a Position smaller than 7, and a Drawn smaller than 2, and a Points of 22? <context>: CREATE TABLE table_name_26 (team VARCHAR, points VARCHAR, drawn VARCHAR, lost VARCHAR, position VARCHAR) | SELECT team FROM table_name_26 WHERE lost > 2 AND position < 7 AND drawn < 2 AND points = 22 |
51,345 | <question>: Which Points has a Position of 3, and a Drawn smaller than 2? <context>: CREATE TABLE table_name_55 (points INTEGER, position VARCHAR, drawn VARCHAR) | SELECT MAX(points) FROM table_name_55 WHERE position = 3 AND drawn < 2 |
51,346 | <question>: Which Played has a Points of 2, and a Position smaller than 8? <context>: CREATE TABLE table_name_28 (played INTEGER, points VARCHAR, position VARCHAR) | SELECT AVG(played) FROM table_name_28 WHERE points = 2 AND position < 8 |
51,347 | <question>: How many average plays have points greater than 14, with an against greater than 17? <context>: CREATE TABLE table_name_4 (played INTEGER, points VARCHAR, against VARCHAR) | SELECT AVG(played) FROM table_name_4 WHERE points > 14 AND against > 17 |
51,348 | <question>: Which average against has a lost less than 1? <context>: CREATE TABLE table_name_78 (against INTEGER, lost INTEGER) | SELECT AVG(against) FROM table_name_78 WHERE lost < 1 |
51,349 | <question>: Which of the highest drawn has a played less than 10? <context>: CREATE TABLE table_name_96 (drawn INTEGER, played INTEGER) | SELECT MAX(drawn) FROM table_name_96 WHERE played < 10 |
51,350 | <question>: How many played have 3 as the drawn, and a position greater than 4? <context>: CREATE TABLE table_name_25 (played VARCHAR, drawn VARCHAR, position VARCHAR) | SELECT COUNT(played) FROM table_name_25 WHERE drawn = 3 AND position > 4 |
51,351 | <question>: Who sang the song composed by Mariah Carey and Walter Afanasieff? <context>: CREATE TABLE table_name_20 (performer_s_ VARCHAR, composer_s_ VARCHAR) | SELECT performer_s_ FROM table_name_20 WHERE composer_s_ = "mariah carey and walter afanasieff" |
51,352 | <question>: How many years was Louis Armstrong performing? <context>: CREATE TABLE table_name_51 (year VARCHAR, performer_s_ VARCHAR) | SELECT COUNT(year) FROM table_name_51 WHERE performer_s_ = "louis armstrong" |
51,353 | <question>: Who were the Runner(s)-up with the winning score of −16 (66-68-70-68=272)? <context>: CREATE TABLE table_name_74 (runner_s__up VARCHAR, winning_score VARCHAR) | SELECT runner_s__up FROM table_name_74 WHERE winning_score = −16(66 - 68 - 70 - 68 = 272) |
51,354 | <question>: What tournament had a winning score of −27 (64-64-61=189)? <context>: CREATE TABLE table_name_3 (tournament VARCHAR, winning_score VARCHAR) | SELECT tournament FROM table_name_3 WHERE winning_score = −27(64 - 64 - 61 = 189) |
51,355 | <question>: What tournament had a runner(s)-up of Scott Hoch & Kenny Perry? <context>: CREATE TABLE table_name_12 (tournament VARCHAR, runner_s__up VARCHAR) | SELECT tournament FROM table_name_12 WHERE runner_s__up = "scott hoch & kenny perry" |
51,356 | <question>: What tournament had a Runner(s)-up of Tom Kite? <context>: CREATE TABLE table_name_11 (tournament VARCHAR, runner_s__up VARCHAR) | SELECT tournament FROM table_name_11 WHERE runner_s__up = "tom kite" |
51,357 | <question>: What is the date of the Outback Steakhouse Pro-Am Tournament? <context>: CREATE TABLE table_name_94 (date VARCHAR, tournament VARCHAR) | SELECT date FROM table_name_94 WHERE tournament = "outback steakhouse pro-am" |
51,358 | <question>: Which tournament has a Runner(s)-up of Gary McCord? <context>: CREATE TABLE table_name_47 (tournament VARCHAR, runner_s__up VARCHAR) | SELECT tournament FROM table_name_47 WHERE runner_s__up = "gary mccord" |
51,359 | <question>: What was the location of the game with a score of 2:3? <context>: CREATE TABLE table_name_90 (location VARCHAR, score VARCHAR) | SELECT location FROM table_name_90 WHERE score = "2:3" |
51,360 | <question>: What was the location of the home game for Slovakia? <context>: CREATE TABLE table_name_62 (location VARCHAR, home_team VARCHAR) | SELECT location FROM table_name_62 WHERE home_team = "slovakia" |
51,361 | <question>: What was the tournament where Japan was the home team and Mexico was the away team? <context>: CREATE TABLE table_name_21 (tournament VARCHAR, away_team VARCHAR, home_team VARCHAR) | SELECT tournament FROM table_name_21 WHERE away_team = "mexico" AND home_team = "japan" |
51,362 | <question>: What was the location of the home game for Japan? <context>: CREATE TABLE table_name_49 (location VARCHAR, home_team VARCHAR) | SELECT location FROM table_name_49 WHERE home_team = "japan" |
51,363 | <question>: Who was the Runner-up in Hossegor? <context>: CREATE TABLE table_name_68 (runner_up VARCHAR, location VARCHAR) | SELECT runner_up FROM table_name_68 WHERE location = "hossegor" |
51,364 | <question>: On what Date was the Tournament in Gold Coast? <context>: CREATE TABLE table_name_88 (date VARCHAR, location VARCHAR) | SELECT date FROM table_name_88 WHERE location = "gold coast" |
51,365 | <question>: Who was the Winner of the French Polynesia Billabong Pro Event? <context>: CREATE TABLE table_name_29 (winner VARCHAR, event VARCHAR, country VARCHAR) | SELECT winner FROM table_name_29 WHERE event = "billabong pro" AND country = "french polynesia" |
51,366 | <question>: What shows for 2010 when 2007 is a and 2004 is 2r? <context>: CREATE TABLE table_name_97 (Id VARCHAR) | SELECT 2010 FROM table_name_97 WHERE 2007 = "a" AND 2004 = "2r" |
51,367 | <question>: What is the 2005 when the 2008 shows grand slam tournaments? <context>: CREATE TABLE table_name_99 (Id VARCHAR) | SELECT 2005 FROM table_name_99 WHERE 2008 = "grand slam tournaments" |
51,368 | <question>: What shows for 2002 when 2010 shows 69? <context>: CREATE TABLE table_name_85 (Id VARCHAR) | SELECT 2002 FROM table_name_85 WHERE 2010 = "69" |
51,369 | <question>: What shows for 2010 when 2005 shows 1r? <context>: CREATE TABLE table_name_60 (Id VARCHAR) | SELECT 2010 FROM table_name_60 WHERE 2005 = "1r" |
51,370 | <question>: What is the highest number of draws with more than 15 points, an against of 19, and less than 3 losses? <context>: CREATE TABLE table_name_27 (drawn INTEGER, lost VARCHAR, points VARCHAR, against VARCHAR) | SELECT MAX(drawn) FROM table_name_27 WHERE points > 15 AND against = 19 AND lost < 3 |
51,371 | <question>: What stage (winner) has thor hushovd as a general classification, and trent lowe as a rider classification? <context>: CREATE TABLE table_name_3 (stage__winner_ VARCHAR, general_classification VARCHAR, young_rider_classification VARCHAR) | SELECT stage__winner_ FROM table_name_3 WHERE general_classification = "thor hushovd" AND young_rider_classification = "trent lowe" |
51,372 | <question>: What stage (winner) has quick step as the team classification, and trent lowe as the young rider classification? <context>: CREATE TABLE table_name_69 (stage__winner_ VARCHAR, team_classification VARCHAR, young_rider_classification VARCHAR) | SELECT stage__winner_ FROM table_name_69 WHERE team_classification = "quick step" AND young_rider_classification = "trent lowe" |
51,373 | <question>: What is the 2000-2001 Team with a Jersey # that is 19? <context>: CREATE TABLE table_name_15 (jersey__number VARCHAR) | SELECT 2000 AS _2001_team FROM table_name_15 WHERE jersey__number = 19 |
51,374 | <question>: What is the average number of ties for years with more than 19 wins? <context>: CREATE TABLE table_name_33 (tied INTEGER, wins INTEGER) | SELECT AVG(tied) FROM table_name_33 WHERE wins > 19 |
51,375 | <question>: What is the total number of losses for years with fewer than 9 wins? <context>: CREATE TABLE table_name_82 (losses VARCHAR, wins INTEGER) | SELECT COUNT(losses) FROM table_name_82 WHERE wins < 9 |
51,376 | <question>: What is the total number of Division(s), when Team is Chongqing Lifan, and when Apps is greater than 9? <context>: CREATE TABLE table_name_7 (division VARCHAR, team VARCHAR, apps VARCHAR) | SELECT COUNT(division) FROM table_name_7 WHERE team = "chongqing lifan" AND apps > 9 |
51,377 | <question>: What is Season, when Country is China, when Team is Dalian Shide, when Apps is greater than 8, and when Goals is 2? <context>: CREATE TABLE table_name_6 (season VARCHAR, goals VARCHAR, apps VARCHAR, country VARCHAR, team VARCHAR) | SELECT season FROM table_name_6 WHERE country = "china" AND team = "dalian shide" AND apps > 8 AND goals = 2 |
51,378 | <question>: What is the highest Apps, when Goals are greater than 5? <context>: CREATE TABLE table_name_58 (apps INTEGER, goals INTEGER) | SELECT MAX(apps) FROM table_name_58 WHERE goals > 5 |
51,379 | <question>: What Season, when Country is China, when Team is Dalian Shide, and when Goals are 0? <context>: CREATE TABLE table_name_48 (season VARCHAR, goals VARCHAR, country VARCHAR, team VARCHAR) | SELECT season FROM table_name_48 WHERE country = "china" AND team = "dalian shide" AND goals = 0 |
51,380 | <question>: What is the total number of Division(s), when Country is China, when Apps is greater than 9, and when Season is 2008? <context>: CREATE TABLE table_name_32 (division VARCHAR, season VARCHAR, country VARCHAR, apps VARCHAR) | SELECT COUNT(division) FROM table_name_32 WHERE country = "china" AND apps > 9 AND season = "2008" |
51,381 | <question>: What is the lowest Division, when Goals are less than 10, when Team is Dalian Shide, when Apps are less than 17, and when Season is 2007? <context>: CREATE TABLE table_name_79 (division INTEGER, season VARCHAR, apps VARCHAR, goals VARCHAR, team VARCHAR) | SELECT MIN(division) FROM table_name_79 WHERE goals < 10 AND team = "dalian shide" AND apps < 17 AND season = "2007" |
51,382 | <question>: What is the lowest area when the density is greater than 234.77, the population is less than 965,040, and the rank is 32? <context>: CREATE TABLE table_name_75 (area INTEGER, population VARCHAR, density VARCHAR, rank VARCHAR) | SELECT MIN(area) FROM table_name_75 WHERE density > 234.77 AND rank = 32 AND population < 965 OFFSET 040 |
51,383 | <question>: What is the Home with a Time that is 14:00? <context>: CREATE TABLE table_name_28 (home VARCHAR, time VARCHAR) | SELECT home FROM table_name_28 WHERE time = "14:00" |
51,384 | <question>: What is the Score with an Away that is high park demons? <context>: CREATE TABLE table_name_66 (score VARCHAR, away VARCHAR) | SELECT score FROM table_name_66 WHERE away = "high park demons" |
51,385 | <question>: What is the Score with a Hoe that is etobicoke kangaroos? <context>: CREATE TABLE table_name_60 (score VARCHAR, home VARCHAR) | SELECT score FROM table_name_60 WHERE home = "etobicoke kangaroos" |
51,386 | <question>: What is the Date with a Score that is 46-77? <context>: CREATE TABLE table_name_65 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_65 WHERE score = "46-77" |
51,387 | <question>: Which Pavilion depth has a Crown angle of 34.0–34.7°? <context>: CREATE TABLE table_name_49 (pavilion_depth VARCHAR, crown_angle VARCHAR) | SELECT pavilion_depth FROM table_name_49 WHERE crown_angle = "34.0–34.7°" |
51,388 | <question>: Which Brilliance Grade has a Benchmark of practical fine cut? <context>: CREATE TABLE table_name_69 (brilliance_grade VARCHAR, benchmark VARCHAR) | SELECT brilliance_grade FROM table_name_69 WHERE benchmark = "practical fine cut" |
51,389 | <question>: Which Table diameter has a Crown height of 14.45%? <context>: CREATE TABLE table_name_35 (table_diameter VARCHAR, crown_height VARCHAR) | SELECT table_diameter FROM table_name_35 WHERE crown_height = "14.45%" |
51,390 | <question>: Which Brilliance Grade has a Crown angle of 41.1°? <context>: CREATE TABLE table_name_6 (brilliance_grade VARCHAR, crown_angle VARCHAR) | SELECT brilliance_grade FROM table_name_6 WHERE crown_angle = "41.1°" |
51,391 | <question>: Which Pavilion depth has a Brilliance Grade of 100% and a Pavilion angle of n/a? <context>: CREATE TABLE table_name_36 (pavilion_depth VARCHAR, brilliance_grade VARCHAR, pavilion_angle VARCHAR) | SELECT pavilion_depth FROM table_name_36 WHERE brilliance_grade = "100%" AND pavilion_angle = "n/a" |
51,392 | <question>: What is the number of lost with 2 points? <context>: CREATE TABLE table_name_70 (lost VARCHAR, points VARCHAR) | SELECT COUNT(lost) FROM table_name_70 WHERE points = 2 |
51,393 | <question>: What was the aggregate for the match with a team 2 of Kenya? <context>: CREATE TABLE table_name_60 (agg VARCHAR, team_2 VARCHAR) | SELECT agg FROM table_name_60 WHERE team_2 = "kenya" |
51,394 | <question>: What was the aggregate for the match with Sierra Leone as team 1? <context>: CREATE TABLE table_name_28 (agg VARCHAR, team_1 VARCHAR) | SELECT agg FROM table_name_28 WHERE team_1 = "sierra leone" |
51,395 | <question>: What was the 1st leg score for the match with Lesotho as team 1? <context>: CREATE TABLE table_name_14 (team_1 VARCHAR) | SELECT 1 AS st_leg FROM table_name_14 WHERE team_1 = "lesotho" |
51,396 | <question>: What was the 2nd leg score for the match with Lesotho as team 1? <context>: CREATE TABLE table_name_82 (team_1 VARCHAR) | SELECT 2 AS nd_leg FROM table_name_82 WHERE team_1 = "lesotho" |
51,397 | <question>: What is the total number of ladies ranked who had less than 3 silvers, less than 2 total medals, and more than 0 bronze medals? <context>: CREATE TABLE table_name_9 (rank VARCHAR, bronze VARCHAR, silver VARCHAR, total VARCHAR) | SELECT COUNT(rank) FROM table_name_9 WHERE silver < 3 AND total < 2 AND bronze > 0 |
51,398 | <question>: What is the total number of gold medals for the skater with less than 3 bronze medals, more than 0 silver medals and a rank smaller than 11? <context>: CREATE TABLE table_name_17 (gold VARCHAR, silver VARCHAR, bronze VARCHAR, rank VARCHAR) | SELECT COUNT(gold) FROM table_name_17 WHERE bronze < 3 AND rank < 11 AND silver > 0 |
51,399 | <question>: What was Matthew Warchus' Award? <context>: CREATE TABLE table_name_29 (award VARCHAR, nominee VARCHAR) | SELECT award FROM table_name_29 WHERE nominee = "matthew warchus" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.