combined_text stringlengths 106 1.05k |
|---|
###question:What was the year that had Anugerah Bintang Popular Berita Harian 23 as competition?###answer:SELECT COUNT(year) FROM table_name_30 WHERE competition = "anugerah bintang popular berita harian 23"###context:CREATE TABLE table_name_30 (year VARCHAR, competition VARCHAR) |
###question:What round was the game against Watford?###answer:SELECT round FROM table_name_55 WHERE opponent = "watford"###context:CREATE TABLE table_name_55 (round VARCHAR, opponent VARCHAR) |
###question:What round was the game with a result of 5-1 at N venue?###answer:SELECT round FROM table_name_44 WHERE venue = "n" AND result = "5-1"###context:CREATE TABLE table_name_44 (round VARCHAR, venue VARCHAR, result VARCHAR) |
###question:What is the highest attendance at a game with a result of 5-1?###answer:SELECT MAX(attendance) FROM table_name_94 WHERE result = "5-1"###context:CREATE TABLE table_name_94 (attendance INTEGER, result VARCHAR) |
###question:What was the nationality of the winner on December 8, 1968?###answer:SELECT country FROM table_name_99 WHERE date = "december 8, 1968"###context:CREATE TABLE table_name_99 (country VARCHAR, date VARCHAR) |
###question:On what date was the 48th Edition raced?###answer:SELECT date FROM table_name_43 WHERE edition = "48th"###context:CREATE TABLE table_name_43 (date VARCHAR, edition VARCHAR) |
###question:What was the nationality of the winner of the 42nd Edition?###answer:SELECT country FROM table_name_90 WHERE edition = "42nd"###context:CREATE TABLE table_name_90 (country VARCHAR, edition VARCHAR) |
###question:What was the nationality of the winner for the 20th Edition?###answer:SELECT country FROM table_name_84 WHERE edition = "20th"###context:CREATE TABLE table_name_84 (country VARCHAR, edition VARCHAR) |
###question:Who was the winner of the 23rd Edition?###answer:SELECT winner FROM table_name_58 WHERE edition = "23rd"###context:CREATE TABLE table_name_58 (winner VARCHAR, edition VARCHAR) |
###question:Who reported the game played on 1 september?###answer:SELECT report FROM table_name_8 WHERE date = "1 september"###context:CREATE TABLE table_name_8 (report VARCHAR, date VARCHAR) |
###question:Who reported the game on 6 october?###answer:SELECT report FROM table_name_67 WHERE date = "6 october"###context:CREATE TABLE table_name_67 (report VARCHAR, date VARCHAR) |
###question:Where was the game played on 20 may?###answer:SELECT venue FROM table_name_19 WHERE date = "20 may"###context:CREATE TABLE table_name_19 (venue VARCHAR, date VARCHAR) |
###question:What was the score of the game on 1 september?###answer:SELECT score FROM table_name_49 WHERE date = "1 september"###context:CREATE TABLE table_name_49 (score VARCHAR, date VARCHAR) |
###question:Which date has Total Holocaust records in the ed Remaster cassette format?###answer:SELECT date FROM table_name_85 WHERE label = "total holocaust records" AND format = "ed remaster cassette"###context:CREATE TABLE table_name_85 (date VARCHAR, label VARCHAR, format VARCHAR) |
###question:Which country has the catalog nr of thr-048 in 2004?###answer:SELECT country FROM table_name_43 WHERE date = "2004" AND catalog_nr = "thr-048"###context:CREATE TABLE table_name_43 (country VARCHAR, date VARCHAR, catalog_nr VARCHAR) |
###question:What country is the Debemur Morti prod. label from?###answer:SELECT country FROM table_name_97 WHERE label = "debemur morti prod."###context:CREATE TABLE table_name_97 (country VARCHAR, label VARCHAR) |
###question:Which Sales Total has a Chart of oricon monthly albums chart?###answer:SELECT sales_total FROM table_name_30 WHERE chart = "oricon monthly albums chart"###context:CREATE TABLE table_name_30 (sales_total VARCHAR, chart VARCHAR) |
###question:Which Chart has a Peak Position of 1?###answer:SELECT chart FROM table_name_68 WHERE peak_position = 1###context:CREATE TABLE table_name_68 (chart VARCHAR, peak_position VARCHAR) |
###question:When has a Record of 1-3?###answer:SELECT date FROM table_name_7 WHERE record = "1-3"###context:CREATE TABLE table_name_7 (date VARCHAR, record VARCHAR) |
###question:Name the Visitor that has a Home of chicago black hawks on april 20?###answer:SELECT visitor FROM table_name_74 WHERE home = "chicago black hawks" AND date = "april 20"###context:CREATE TABLE table_name_74 (visitor VARCHAR, home VARCHAR, date VARCHAR) |
###question:Which Score has a Record of 0-1?###answer:SELECT score FROM table_name_61 WHERE record = "0-1"###context:CREATE TABLE table_name_61 (score VARCHAR, record VARCHAR) |
###question:Which Date has a Record of 1-4?###answer:SELECT date FROM table_name_34 WHERE record = "1-4"###context:CREATE TABLE table_name_34 (date VARCHAR, record VARCHAR) |
###question:Which Home is on april 22?###answer:SELECT home FROM table_name_45 WHERE date = "april 22"###context:CREATE TABLE table_name_45 (home VARCHAR, date VARCHAR) |
###question:Which Score has a Visitor of buffalo sabres and a Record of 1-3?###answer:SELECT score FROM table_name_48 WHERE visitor = "buffalo sabres" AND record = "1-3"###context:CREATE TABLE table_name_48 (score VARCHAR, visitor VARCHAR, record VARCHAR) |
###question:What is the Record of the February 26 date?###answer:SELECT record FROM table_name_64 WHERE date = "february 26"###context:CREATE TABLE table_name_64 (record VARCHAR, date VARCHAR) |
###question:What is the Record from February 10?###answer:SELECT record FROM table_name_47 WHERE date = "february 10"###context:CREATE TABLE table_name_47 (record VARCHAR, date VARCHAR) |
###question:What is the Score of the Chicago Black Hawks Home game with the Visiting Vancouver Canucks on November 17?###answer:SELECT score FROM table_name_30 WHERE home = "chicago black hawks" AND visitor = "vancouver canucks" AND date = "november 17"###context:CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR,... |
###question:What Service Name has UTV as the owner?###answer:SELECT service_name FROM table_name_60 WHERE owner = "utv"###context:CREATE TABLE table_name_60 (service_name VARCHAR, owner VARCHAR) |
###question:What is the download of the varies catch-up period?###answer:SELECT download FROM table_name_55 WHERE catch_up_period = "varies"###context:CREATE TABLE table_name_55 (download VARCHAR, catch_up_period VARCHAR) |
###question:What is the Catch-up period for UTV?###answer:SELECT catch_up_period FROM table_name_30 WHERE owner = "utv"###context:CREATE TABLE table_name_30 (catch_up_period VARCHAR, owner VARCHAR) |
###question:What is the Service name of BBC?###answer:SELECT service_name FROM table_name_53 WHERE owner = "bbc"###context:CREATE TABLE table_name_53 (service_name VARCHAR, owner VARCHAR) |
###question:What is the lowest number of wins where the byes are less than 0?###answer:SELECT MIN(wins) FROM table_name_15 WHERE byes < 0###context:CREATE TABLE table_name_15 (wins INTEGER, byes INTEGER) |
###question:What is the lowest number of wins where the losses are more than 12 and the draws are less than 0?###answer:SELECT MIN(wins) FROM table_name_27 WHERE losses > 12 AND draws < 0###context:CREATE TABLE table_name_27 (wins INTEGER, losses VARCHAR, draws VARCHAR) |
###question:What is the average of wins when the byes are less than 0?###answer:SELECT AVG(wins) FROM table_name_31 WHERE byes < 0###context:CREATE TABLE table_name_31 (wins INTEGER, byes INTEGER) |
###question:What is the total number of losses where the byes were greater than 0?###answer:SELECT COUNT(losses) FROM table_name_36 WHERE byes > 0###context:CREATE TABLE table_name_36 (losses VARCHAR, byes INTEGER) |
###question:What is the highest number of byes where the losses were 9 and the draws were less than 0?###answer:SELECT MAX(byes) FROM table_name_93 WHERE losses = 9 AND draws < 0###context:CREATE TABLE table_name_93 (byes INTEGER, losses VARCHAR, draws VARCHAR) |
###question:What are the average losses for Geelong DFL of Bell Post Hill where the draws are less than 0?###answer:SELECT AVG(losses) FROM table_name_73 WHERE geelong_dfl = "bell post hill" AND draws < 0###context:CREATE TABLE table_name_73 (losses INTEGER, geelong_dfl VARCHAR, draws VARCHAR) |
###question:Which Yards have Carries smaller than 23, and a Team of at chi, and an Average smaller than 8.5?###answer:SELECT MIN(yards) FROM table_name_5 WHERE carries < 23 AND team = "at chi" AND average < 8.5###context:CREATE TABLE table_name_5 (yards INTEGER, average VARCHAR, carries VARCHAR, team VARCHAR) |
###question:Which Team has 19 Carries, and a Week larger than 13?###answer:SELECT team FROM table_name_18 WHERE carries = 19 AND week > 13###context:CREATE TABLE table_name_18 (team VARCHAR, carries VARCHAR, week VARCHAR) |
###question:Which Average has Yards larger than 167, and a Team of at tb, and a Week larger than 7?###answer:SELECT MIN(average) FROM table_name_98 WHERE yards > 167 AND team = "at tb" AND week > 7###context:CREATE TABLE table_name_98 (average INTEGER, week VARCHAR, yards VARCHAR, team VARCHAR) |
###question:What is the result of the game with 57,234 people in attendance?###answer:SELECT result FROM table_name_17 WHERE attendance = "57,234"###context:CREATE TABLE table_name_17 (result VARCHAR, attendance VARCHAR) |
###question:How many people attended the game with a kickoff time of cbs 1:00pm, in a week earlier than 8, on September 15, 2002?###answer:SELECT attendance FROM table_name_56 WHERE kickoff_time = "cbs 1:00pm" AND week < 8 AND date = "september 15, 2002"###context:CREATE TABLE table_name_56 (attendance VARCHAR, date VA... |
###question:What is the kickoff time for the game in week of 17?###answer:SELECT kickoff_time FROM table_name_92 WHERE week = 17###context:CREATE TABLE table_name_92 (kickoff_time VARCHAR, week VARCHAR) |
###question:What week was the opponent the San Diego Chargers?###answer:SELECT AVG(week) FROM table_name_71 WHERE opponent = "san diego chargers"###context:CREATE TABLE table_name_71 (week INTEGER, opponent VARCHAR) |
###question:What week number was the kickoff time cbs 1:00pm, with 60,473 people in attendance?###answer:SELECT COUNT(week) FROM table_name_12 WHERE kickoff_time = "cbs 1:00pm" AND attendance = "60,473"###context:CREATE TABLE table_name_12 (week VARCHAR, kickoff_time VARCHAR, attendance VARCHAR) |
###question:What is the kickoff time on November 10, 2002?###answer:SELECT kickoff_time FROM table_name_28 WHERE date = "november 10, 2002"###context:CREATE TABLE table_name_28 (kickoff_time VARCHAR, date VARCHAR) |
###question:What District has a College or Campus Name of anna university college of engineering kanchipuram?###answer:SELECT district FROM table_name_31 WHERE college_or_campus_name = "anna university college of engineering kanchipuram"###context:CREATE TABLE table_name_31 (district VARCHAR, college_or_campus_name VAR... |
###question:What District has a Location of tharamani?###answer:SELECT district FROM table_name_24 WHERE location = "tharamani"###context:CREATE TABLE table_name_24 (district VARCHAR, location VARCHAR) |
###question:What Location has a College or Campus Name of anna university - tharamani campus?###answer:SELECT location FROM table_name_81 WHERE college_or_campus_name = "anna university - tharamani campus"###context:CREATE TABLE table_name_81 (location VARCHAR, college_or_campus_name VARCHAR) |
###question:What Weblink has a College or Campus Name of anna university college of engineering kanchipuram?###answer:SELECT weblink FROM table_name_85 WHERE college_or_campus_name = "anna university college of engineering kanchipuram"###context:CREATE TABLE table_name_85 (weblink VARCHAR, college_or_campus_name VARCHA... |
###question:What District has a Location of villupuram?###answer:SELECT district FROM table_name_53 WHERE location = "villupuram"###context:CREATE TABLE table_name_53 (district VARCHAR, location VARCHAR) |
###question:What Weblink has a College or Campus Name of anna university college of engineering tindivanam?###answer:SELECT weblink FROM table_name_76 WHERE college_or_campus_name = "anna university college of engineering tindivanam"###context:CREATE TABLE table_name_76 (weblink VARCHAR, college_or_campus_name VARCHAR) |
###question:What Super G has Victories of 26, and a Country of austria?###answer:SELECT super_g FROM table_name_31 WHERE victories = 26 AND country = "austria"###context:CREATE TABLE table_name_31 (super_g VARCHAR, victories VARCHAR, country VARCHAR) |
###question:What Super G has a Career of 1980–1996?###answer:SELECT super_g FROM table_name_25 WHERE career = "1980–1996"###context:CREATE TABLE table_name_25 (super_g VARCHAR, career VARCHAR) |
###question:What Career has a Parallel of –, a Combined of –, and a Giant Slalom of 5?###answer:SELECT career FROM table_name_6 WHERE parallel = "–" AND combined = "–" AND giant_slalom = "5"###context:CREATE TABLE table_name_6 (career VARCHAR, giant_slalom VARCHAR, parallel VARCHAR, combined VARCHAR) |
###question:What Country has a Career of 1989–2004?###answer:SELECT country FROM table_name_26 WHERE career = "1989–2004"###context:CREATE TABLE table_name_26 (country VARCHAR, career VARCHAR) |
###question:What Giant Slalom has Victories larger than 27, a Slalom of –, and a Career of 1996–2009?###answer:SELECT giant_slalom FROM table_name_45 WHERE victories > 27 AND slalom = "–" AND career = "1996–2009"###context:CREATE TABLE table_name_45 (giant_slalom VARCHAR, career VARCHAR, victories VARCHAR, slalom VARCH... |
###question:What Career has a Super G of 5, and a Combined of 6?###answer:SELECT career FROM table_name_61 WHERE super_g = "5" AND combined = "6"###context:CREATE TABLE table_name_61 (career VARCHAR, super_g VARCHAR, combined VARCHAR) |
###question:Which Class has a Year(s) of Manufacture of 1899?###answer:SELECT class FROM table_name_32 WHERE year_s__of_manufacture = "1899"###context:CREATE TABLE table_name_32 (class VARCHAR, year_s__of_manufacture VARCHAR) |
###question:Which Year(s) of Manufacture has a Quantity larger than 60, and a Number(s) of 7001–7165?###answer:SELECT year_s__of_manufacture FROM table_name_49 WHERE quantity > 60 AND number_s_ = "7001–7165"###context:CREATE TABLE table_name_49 (year_s__of_manufacture VARCHAR, quantity VARCHAR, number_s_ VARCHAR) |
###question:Which Quantity has a Type of e h4v, and a Year(s) of Manufacture of 1920–1924?###answer:SELECT MIN(quantity) FROM table_name_87 WHERE type = "e h4v" AND year_s__of_manufacture = "1920–1924"###context:CREATE TABLE table_name_87 (quantity INTEGER, type VARCHAR, year_s__of_manufacture VARCHAR) |
###question:What was Shaun Murphy's outcome in the Premier League Snooker championship held before 2010?###answer:SELECT outcome FROM table_name_1 WHERE championship = "premier league snooker" AND year < 2010###context:CREATE TABLE table_name_1 (outcome VARCHAR, championship VARCHAR, year VARCHAR) |
###question:What league has a 3-1 home?###answer:SELECT league FROM table_name_33 WHERE home = "3-1"###context:CREATE TABLE table_name_33 (league VARCHAR, home VARCHAR) |
###question:What is the home with a 1-1 away in the 2004-05 season?###answer:SELECT home FROM table_name_99 WHERE away = "1-1" AND season = "2004-05"###context:CREATE TABLE table_name_99 (home VARCHAR, away VARCHAR, season VARCHAR) |
###question:Which teams were in the 2006-07 season?###answer:SELECT teams FROM table_name_41 WHERE season = "2006-07"###context:CREATE TABLE table_name_41 (teams VARCHAR, season VARCHAR) |
###question:What is the league with a 0:1 home?###answer:SELECT league FROM table_name_37 WHERE home = "0:1"###context:CREATE TABLE table_name_37 (league VARCHAR, home VARCHAR) |
###question:What season has a regionalliga süd league, a 1-0 home, and an away of 2-3?###answer:SELECT season FROM table_name_38 WHERE league = "regionalliga süd" AND home = "1-0" AND away = "2-3"###context:CREATE TABLE table_name_38 (season VARCHAR, away VARCHAR, league VARCHAR, home VARCHAR) |
###question:Which season has the regionalliga süd (iii) league?###answer:SELECT season FROM table_name_41 WHERE league = "regionalliga süd (iii)"###context:CREATE TABLE table_name_41 (season VARCHAR, league VARCHAR) |
###question:What is the smallest number of gold of a country of rank 6, with 2 bronzes?###answer:SELECT MIN(gold) FROM table_name_71 WHERE bronze = 2 AND rank = 6 AND total > 2###context:CREATE TABLE table_name_71 (gold INTEGER, total VARCHAR, bronze VARCHAR, rank VARCHAR) |
###question:What is the rank of the country with more than 2 medals, and 2 gold medals?###answer:SELECT rank FROM table_name_83 WHERE total > 2 AND gold = 2###context:CREATE TABLE table_name_83 (rank VARCHAR, total VARCHAR, gold VARCHAR) |
###question:How many total medals does a country with more than 1 silver medals have?###answer:SELECT SUM(total) FROM table_name_32 WHERE silver > 1###context:CREATE TABLE table_name_32 (total INTEGER, silver INTEGER) |
###question:Who is the co-contestant (yaar vs. Pyaar) with Vishal Singh as the main contestant?###answer:SELECT co_contestant__yaar_vs_pyaar_ FROM table_name_90 WHERE main_contestant = "vishal singh"###context:CREATE TABLE table_name_90 (co_contestant__yaar_vs_pyaar_ VARCHAR, main_contestant VARCHAR) |
###question:Who is the main contestant with scores by each individual judge of 8 + 7 + 7 = 21?###answer:SELECT main_contestant FROM table_name_62 WHERE scores_by_each_individual_judge = 8 + 7 + 7 = 21###context:CREATE TABLE table_name_62 (main_contestant VARCHAR, scores_by_each_individual_judge VARCHAR) |
###question:Who is the main contestant with a total score/week of 42/60 and a co-contestant (Yaar vs. Pyaa) of Tina Sachdev?###answer:SELECT main_contestant FROM table_name_29 WHERE total_score_week = "42/60" AND co_contestant__yaar_vs_pyaar_ = "tina sachdev"###context:CREATE TABLE table_name_29 (main_contestant VARCHA... |
###question:What is Tina Sachdev's position?###answer:SELECT position FROM table_name_60 WHERE co_contestant__yaar_vs_pyaar_ = "tina sachdev"###context:CREATE TABLE table_name_60 (position VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR) |
###question:Name the Rank of Rank Mountain Peak of crested butte pb?###answer:SELECT rank FROM table_name_43 WHERE mountain_peak = "crested butte pb"###context:CREATE TABLE table_name_43 (rank VARCHAR, mountain_peak VARCHAR) |
###question:Name the Prominence of the Mountain Peak of matchless mountain pb?###answer:SELECT prominence FROM table_name_81 WHERE mountain_peak = "matchless mountain pb"###context:CREATE TABLE table_name_81 (prominence VARCHAR, mountain_peak VARCHAR) |
###question:What year was Mary Elizabeth Mastrantonio nominated?###answer:SELECT year FROM table_name_63 WHERE nominee = "mary elizabeth mastrantonio"###context:CREATE TABLE table_name_63 (year VARCHAR, nominee VARCHAR) |
###question:What was the result for the nomination of Best Revival of a Musical?###answer:SELECT result FROM table_name_90 WHERE category = "best revival of a musical"###context:CREATE TABLE table_name_90 (result VARCHAR, category VARCHAR) |
###question:Which Nanquan has a Nandao larger than 9.49, and a Rank of 4?###answer:SELECT nanquan FROM table_name_76 WHERE nandao > 9.49 AND rank = 4###context:CREATE TABLE table_name_76 (nanquan VARCHAR, nandao VARCHAR, rank VARCHAR) |
###question:Which Nanquan has a Nandao smaller than 9.44, and a Rank smaller than 9, and a Total larger than 18.68?###answer:SELECT MIN(nanquan) FROM table_name_27 WHERE nandao < 9.44 AND rank < 9 AND total > 18.68###context:CREATE TABLE table_name_27 (nanquan INTEGER, total VARCHAR, nandao VARCHAR, rank VARCHAR) |
###question:How many weeks have a Winning team of yellow team, and an Event of foos it or lose it?###answer:SELECT SUM(week) FROM table_name_75 WHERE winning_team = "yellow team" AND event = "foos it or lose it"###context:CREATE TABLE table_name_75 (week INTEGER, winning_team VARCHAR, event VARCHAR) |
###question:Which Week has an Air Date of august 2, 2008?###answer:SELECT week FROM table_name_62 WHERE air_date = "august 2, 2008"###context:CREATE TABLE table_name_62 (week VARCHAR, air_date VARCHAR) |
###question:Which Week has an Air Date of august 30, 2008?###answer:SELECT week FROM table_name_73 WHERE air_date = "august 30, 2008"###context:CREATE TABLE table_name_73 (week VARCHAR, air_date VARCHAR) |
###question:Which Winners club has a Week of 4.5?###answer:SELECT winners_club FROM table_name_20 WHERE week = 4.5###context:CREATE TABLE table_name_20 (winners_club VARCHAR, week VARCHAR) |
###question:Which Winners club has an Event of hang tight?###answer:SELECT winners_club FROM table_name_68 WHERE event = "hang tight"###context:CREATE TABLE table_name_68 (winners_club VARCHAR, event VARCHAR) |
###question:on what date was tie number 4?###answer:SELECT date FROM table_name_80 WHERE tie_no = "4"###context:CREATE TABLE table_name_80 (date VARCHAR, tie_no VARCHAR) |
###question:minehead has what tie number?###answer:SELECT tie_no FROM table_name_3 WHERE home_team = "minehead"###context:CREATE TABLE table_name_3 (tie_no VARCHAR, home_team VARCHAR) |
###question:what is enfield's tie number?###answer:SELECT tie_no FROM table_name_47 WHERE home_team = "enfield"###context:CREATE TABLE table_name_47 (tie_no VARCHAR, home_team VARCHAR) |
###question:What show was played on ABC laster after 2002?###answer:SELECT show FROM table_name_15 WHERE network__last_aired_ = "abc" AND last_aired > 2002###context:CREATE TABLE table_name_15 (show VARCHAR, network__last_aired_ VARCHAR, last_aired VARCHAR) |
###question:When did soul train music awards return?###answer:SELECT returning FROM table_name_49 WHERE show = "soul train music awards"###context:CREATE TABLE table_name_49 (returning VARCHAR, show VARCHAR) |
###question:When did a show last aired in 2002 return?###answer:SELECT returning FROM table_name_13 WHERE last_aired = 2002###context:CREATE TABLE table_name_13 (returning VARCHAR, last_aired VARCHAR) |
###question:What Venue has a Past Season of 2nd?###answer:SELECT venue FROM table_name_89 WHERE past_season = "2nd"###context:CREATE TABLE table_name_89 (venue VARCHAR, past_season VARCHAR) |
###question:What is the Capacity of the Venue of Head Coach Ali Asghar Modir Roosta?###answer:SELECT MAX(capacity) FROM table_name_93 WHERE head_coach = "ali asghar modir roosta"###context:CREATE TABLE table_name_93 (capacity INTEGER, head_coach VARCHAR) |
###question:What is the Capacity of the Venue of Head Coach Farhad Kazemi?###answer:SELECT SUM(capacity) FROM table_name_34 WHERE head_coach = "farhad kazemi"###context:CREATE TABLE table_name_34 (capacity INTEGER, head_coach VARCHAR) |
###question:How much 1991-1992 has a Team of gimnasia de la plata, and more than 113 points?###answer:SELECT COUNT(1991 AS _1992) FROM table_name_57 WHERE team = "gimnasia de la plata" AND points > 113###context:CREATE TABLE table_name_57 (team VARCHAR, points VARCHAR) |
###question:What role did Pick # 10 have?###answer:SELECT role FROM table_name_22 WHERE pick__number = 10###context:CREATE TABLE table_name_22 (role VARCHAR, pick__number VARCHAR) |
###question:What is the real name of the male wrestler from Raw with a pick # smaller than 6?###answer:SELECT employee__real_name_ FROM table_name_94 WHERE pick__number < 6 AND brand__from_ = "raw" AND role = "male wrestler"###context:CREATE TABLE table_name_94 (employee__real_name_ VARCHAR, role VARCHAR, pick__number ... |
###question:Pick # 3 works for which brand?###answer:SELECT brand__from_ FROM table_name_5 WHERE pick__number = 3###context:CREATE TABLE table_name_5 (brand__from_ VARCHAR, pick__number VARCHAR) |
###question:What is the real name of the Pick # that is greater than 9?###answer:SELECT employee__real_name_ FROM table_name_67 WHERE pick__number > 9###context:CREATE TABLE table_name_67 (employee__real_name_ VARCHAR, pick__number INTEGER) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.