Unnamed: 0 int64 0 60k | input stringlengths 76 562 | answer stringlengths 18 557 |
|---|---|---|
14,100 | <question>: Tell me the leading scorer for grizzlies <context>: CREATE TABLE table_name_59 (leading_scorer VARCHAR, visitor VARCHAR) | SELECT leading_scorer FROM table_name_59 WHERE visitor = "grizzlies" |
14,101 | <question>: Name the record with home of bucks on 24 november 2007 <context>: CREATE TABLE table_name_76 (record VARCHAR, home VARCHAR, date VARCHAR) | SELECT record FROM table_name_76 WHERE home = "bucks" AND date = "24 november 2007" |
14,102 | <question>: Name the record for bobcats <context>: CREATE TABLE table_name_65 (record VARCHAR, home VARCHAR) | SELECT record FROM table_name_65 WHERE home = "bobcats" |
14,103 | <question>: In the venue of Glenferrie Oval, what is the home team score? <context>: CREATE TABLE table_name_38 (home_team VARCHAR, venue VARCHAR) | SELECT home_team AS score FROM table_name_38 WHERE venue = "glenferrie oval" |
14,104 | <question>: What is the date of the game in a week earlier than 10 played in Texas stadium agains the Atlanta Falcons? <context>: CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR, week VARCHAR, game_site VARCHAR) | SELECT date FROM table_name_92 WHERE week < 10 AND game_site = "texas stadium" AND opponent = "atlanta falcons" |
14,105 | <question>: What is the nationality of the player from Round 2, Pick 19 from College of Kansas State? <context>: CREATE TABLE table_name_42 (nationality VARCHAR, pick VARCHAR, round VARCHAR, college VARCHAR) | SELECT nationality FROM table_name_42 WHERE round = "2" AND college = "kansas state" AND pick = "19" |
14,106 | <question>: What is the nationality of the player in Position C from Round 1? <context>: CREATE TABLE table_name_17 (nationality VARCHAR, round VARCHAR, position VARCHAR) | SELECT nationality FROM table_name_17 WHERE round = "1" AND position = "c" |
14,107 | <question>: Which team has Pick 13 in Round 2? <context>: CREATE TABLE table_name_88 (team VARCHAR, round VARCHAR, pick VARCHAR) | SELECT team FROM table_name_88 WHERE round = "2" AND pick = "13" |
14,108 | <question>: Who is the Pick 7 player? <context>: CREATE TABLE table_name_59 (player VARCHAR, pick VARCHAR) | SELECT player FROM table_name_59 WHERE pick = "7" |
14,109 | <question>: Who were the opponents in the final in which the score was 6β1, 1β6, 4β6? <context>: CREATE TABLE table_name_54 (opponents_in_the_final VARCHAR, score_in_the_final VARCHAR) | SELECT opponents_in_the_final FROM table_name_54 WHERE score_in_the_final = "6β1, 1β6, 4β6" |
14,110 | <question>: Tell me the launch date with Institutional authority of ndc and launch vehicle of hatf-xi <context>: CREATE TABLE table_name_58 (launch_date VARCHAR, institutional_authority VARCHAR, launch_vehicle VARCHAR) | SELECT launch_date FROM table_name_58 WHERE institutional_authority = "ndc" AND launch_vehicle = "hatf-xi" |
14,111 | <question>: Name the launch vehicle with Institutional authority of ndc <context>: CREATE TABLE table_name_59 (launch_vehicle VARCHAR, institutional_authority VARCHAR) | SELECT launch_vehicle FROM table_name_59 WHERE institutional_authority = "ndc" |
14,112 | <question>: Name the institutional authority for launch date of october 12, 2004 <context>: CREATE TABLE table_name_47 (institutional_authority VARCHAR, launch_date VARCHAR) | SELECT institutional_authority FROM table_name_47 WHERE launch_date = "october 12, 2004" |
14,113 | <question>: Name the results for institutional authority of paf <context>: CREATE TABLE table_name_73 (results VARCHAR, institutional_authority VARCHAR) | SELECT results FROM table_name_73 WHERE institutional_authority = "paf" |
14,114 | <question>: How many laps did Yannick Dalmas do? <context>: CREATE TABLE table_name_59 (laps VARCHAR, driver VARCHAR) | SELECT laps FROM table_name_59 WHERE driver = "yannick dalmas" |
14,115 | <question>: How many Laps does Eddie Cheever have? <context>: CREATE TABLE table_name_39 (laps VARCHAR, driver VARCHAR) | SELECT laps FROM table_name_39 WHERE driver = "eddie cheever" |
14,116 | <question>: What is the name of the Constructor with a 19 Grid? <context>: CREATE TABLE table_name_98 (constructor VARCHAR, grid VARCHAR) | SELECT constructor FROM table_name_98 WHERE grid = 19 |
14,117 | <question>: Name the total number of NGC number for sagittarius and diffuse nebula with declination of Β°02β² <context>: CREATE TABLE table_name_86 (ngc_number VARCHAR, declination___j2000__ VARCHAR, constellation VARCHAR, object_type VARCHAR) | SELECT COUNT(ngc_number) FROM table_name_86 WHERE constellation = "sagittarius" AND object_type = "diffuse nebula" AND declination___j2000__ = "Β°02β²" |
14,118 | <question>: I want to know the right ascension which has an NGC less than 6575 and declination of Β°38β²00β³ <context>: CREATE TABLE table_name_72 (right_ascension___j2000__ VARCHAR, ngc_number VARCHAR, declination___j2000__ VARCHAR) | SELECT right_ascension___j2000__ FROM table_name_72 WHERE ngc_number < 6575 AND declination___j2000__ = "Β°38β²00β³" |
14,119 | <question>: Name the right ascension for sagittarius and NGC number larger than 6522 for open cluster and declination of Β°22β² <context>: CREATE TABLE table_name_78 (right_ascension___j2000__ VARCHAR, declination___j2000__ VARCHAR, object_type VARCHAR, constellation VARCHAR, ngc_number VARCHAR) | SELECT right_ascension___j2000__ FROM table_name_78 WHERE constellation = "sagittarius" AND ngc_number > 6522 AND object_type = "open cluster" AND declination___j2000__ = "Β°22β²" |
14,120 | <question>: How many were in attendance for the loss of rekar (4β5)? <context>: CREATE TABLE table_name_15 (attendance INTEGER, loss VARCHAR) | SELECT SUM(attendance) FROM table_name_15 WHERE loss = "rekar (4β5)" |
14,121 | <question>: In what year is the status of won? <context>: CREATE TABLE table_name_72 (year VARCHAR, status VARCHAR) | SELECT year FROM table_name_72 WHERE status = "won" |
14,122 | <question>: What was the Last Samurai role? <context>: CREATE TABLE table_name_70 (role VARCHAR, film VARCHAR) | SELECT role FROM table_name_70 WHERE film = "the last samurai" |
14,123 | <question>: When the role is role what was the status? <context>: CREATE TABLE table_name_14 (status VARCHAR) | SELECT status FROM table_name_14 WHERE "role" = "role" |
14,124 | <question>: What Ken Watanabe film as nominated? <context>: CREATE TABLE table_name_96 (film VARCHAR, status VARCHAR, name VARCHAR) | SELECT film FROM table_name_96 WHERE status = "nominated" AND name = "ken watanabe" |
14,125 | <question>: What year was The Last Samurai nominated? <context>: CREATE TABLE table_name_42 (year VARCHAR, status VARCHAR, film VARCHAR) | SELECT year FROM table_name_42 WHERE status = "nominated" AND film = "the last samurai" |
14,126 | <question>: When the year is year what was the film? <context>: CREATE TABLE table_name_31 (film VARCHAR) | SELECT film FROM table_name_31 WHERE "year" = "year" |
14,127 | <question>: Which class has less in quantity than 174 between the years 1921β23? <context>: CREATE TABLE table_name_43 (class VARCHAR, quantity VARCHAR, date VARCHAR) | SELECT class FROM table_name_43 WHERE quantity < 174 AND date = "1921β23" |
14,128 | <question>: Which type has a quantity of 11? <context>: CREATE TABLE table_name_29 (type VARCHAR, quantity VARCHAR) | SELECT type FROM table_name_29 WHERE quantity = 11 |
14,129 | <question>: Which class has less than 3 in quantity with a type of 4-6-0? <context>: CREATE TABLE table_name_70 (class VARCHAR, type VARCHAR, quantity VARCHAR) | SELECT class FROM table_name_70 WHERE type = "4-6-0" AND quantity < 3 |
14,130 | <question>: What was the score for the team with a time of 2:44? <context>: CREATE TABLE table_name_8 (score VARCHAR, time VARCHAR) | SELECT score FROM table_name_8 WHERE time = "2:44" |
14,131 | <question>: When is the earliest year opened for huff hall that was established after 1974? <context>: CREATE TABLE table_name_20 (opened INTEGER, venue VARCHAR, established VARCHAR) | SELECT MIN(opened) FROM table_name_20 WHERE venue = "huff hall" AND established > 1974 |
14,132 | <question>: Tell me the sum of earnings for rank less than 1 <context>: CREATE TABLE table_name_63 (earnings__ INTEGER, rank INTEGER) | SELECT SUM(earnings__) AS $__ FROM table_name_63 WHERE rank < 1 |
14,133 | <question>: Tell me the sum of rank with wins of 17 <context>: CREATE TABLE table_name_6 (rank INTEGER, wins VARCHAR) | SELECT SUM(rank) FROM table_name_6 WHERE wins = 17 |
14,134 | <question>: What is the total number of laps where time/retired is +2 laps and the grid number is bigger than 18? <context>: CREATE TABLE table_name_5 (laps INTEGER, time_retired VARCHAR, grid VARCHAR) | SELECT SUM(laps) FROM table_name_5 WHERE time_retired = "+2 laps" AND grid > 18 |
14,135 | <question>: What is the mean number of laps where time/retired was +1:05.564? <context>: CREATE TABLE table_name_67 (laps INTEGER, time_retired VARCHAR) | SELECT AVG(laps) FROM table_name_67 WHERE time_retired = "+1:05.564" |
14,136 | <question>: Which lap number had a grid number bigger than 9 and where the driver was Mark Webber? <context>: CREATE TABLE table_name_77 (laps VARCHAR, grid VARCHAR, driver VARCHAR) | SELECT laps FROM table_name_77 WHERE grid > 9 AND driver = "mark webber" |
14,137 | <question>: What is the date when Richmond was the home team? <context>: CREATE TABLE table_name_66 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_66 WHERE home_team = "richmond" |
14,138 | <question>: what is the tie no when the attendance is 126? <context>: CREATE TABLE table_name_66 (tie_no INTEGER, attendance VARCHAR) | SELECT AVG(tie_no) FROM table_name_66 WHERE attendance = 126 |
14,139 | <question>: what is the average tie no when the home team is stamford a.f.c.? <context>: CREATE TABLE table_name_11 (tie_no INTEGER, home_team VARCHAR) | SELECT AVG(tie_no) FROM table_name_11 WHERE home_team = "stamford a.f.c." |
14,140 | <question>: what is the score when the tie no is 28? <context>: CREATE TABLE table_name_97 (score VARCHAR, tie_no VARCHAR) | SELECT score FROM table_name_97 WHERE tie_no = 28 |
14,141 | <question>: Who was the driver of the Officine Alfieri Maserati with a Tyre of P? <context>: CREATE TABLE table_name_21 (driver VARCHAR, tyre VARCHAR, entrant VARCHAR) | SELECT driver FROM table_name_21 WHERE tyre = "p" AND entrant = "officine alfieri maserati" |
14,142 | <question>: Who was the entrant for driver Giuseppe Farina when he had a Chassis of 625 555 D50 and a tyre of E? <context>: CREATE TABLE table_name_87 (entrant VARCHAR, driver VARCHAR, tyre VARCHAR, chassis VARCHAR) | SELECT entrant FROM table_name_87 WHERE tyre = "e" AND chassis = "625 555 d50" AND driver = "giuseppe farina" |
14,143 | <question>: Who constructed Mike Sparken's car with a tyre of E? <context>: CREATE TABLE table_name_79 (constructor VARCHAR, tyre VARCHAR, driver VARCHAR) | SELECT constructor FROM table_name_79 WHERE tyre = "e" AND driver = "mike sparken" |
14,144 | <question>: What rounds did Gordini participate in? <context>: CREATE TABLE table_name_74 (rounds VARCHAR, constructor VARCHAR) | SELECT rounds FROM table_name_74 WHERE constructor = "gordini" |
14,145 | <question>: Who constructed the car in round 1 with a Chassis of 250F? <context>: CREATE TABLE table_name_86 (constructor VARCHAR, chassis VARCHAR, rounds VARCHAR) | SELECT constructor FROM table_name_86 WHERE chassis = "250f" AND rounds = "1" |
14,146 | <question>: What was the lowest attendance at Glenferrie Oval? <context>: CREATE TABLE table_name_83 (crowd INTEGER, venue VARCHAR) | SELECT MIN(crowd) FROM table_name_83 WHERE venue = "glenferrie oval" |
14,147 | <question>: Where did North Melbourne play as the away team? <context>: CREATE TABLE table_name_56 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_56 WHERE away_team = "north melbourne" |
14,148 | <question>: What was Footscray's score as the away team? <context>: CREATE TABLE table_name_94 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_94 WHERE away_team = "footscray" |
14,149 | <question>: What was the away teams score at Glenferrie Oval? <context>: CREATE TABLE table_name_92 (away_team VARCHAR, venue VARCHAR) | SELECT away_team AS score FROM table_name_92 WHERE venue = "glenferrie oval" |
14,150 | <question>: Who is the head coach of the team located in Mudgeeraba? <context>: CREATE TABLE table_name_53 (head_coach VARCHAR, location VARCHAR) | SELECT head_coach FROM table_name_53 WHERE location = "mudgeeraba" |
14,151 | <question>: Who is the President of the team that has the Head Coach Mark Wakeling? <context>: CREATE TABLE table_name_37 (president VARCHAR, head_coach VARCHAR) | SELECT president FROM table_name_37 WHERE head_coach = "mark wakeling" |
14,152 | <question>: Who is the Head Coach of the team whose President is Mario Volarevic? <context>: CREATE TABLE table_name_86 (head_coach VARCHAR, president VARCHAR) | SELECT head_coach FROM table_name_86 WHERE president = "mario volarevic" |
14,153 | <question>: Which team's Head Coach is Steve Beever? <context>: CREATE TABLE table_name_68 (team VARCHAR, head_coach VARCHAR) | SELECT team FROM table_name_68 WHERE head_coach = "steve beever" |
14,154 | <question>: How many people attended the match on 1/11? <context>: CREATE TABLE table_name_45 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_45 WHERE date = "1/11" |
14,155 | <question>: Who was the leading scorer in the match when the Golden State Warriors were visiting the Dallas Mavericks? <context>: CREATE TABLE table_name_43 (leading_scorer VARCHAR, visitor VARCHAR, home VARCHAR) | SELECT leading_scorer FROM table_name_43 WHERE visitor = "golden state warriors" AND home = "dallas mavericks" |
14,156 | <question>: Which CFL Team has a Position of dl? <context>: CREATE TABLE table_name_54 (cfl_team VARCHAR, position VARCHAR) | SELECT cfl_team FROM table_name_54 WHERE position = "dl" |
14,157 | <question>: Which CFL Team has a College of montreal, and a Player of marc trepanier? <context>: CREATE TABLE table_name_12 (cfl_team VARCHAR, college VARCHAR, player VARCHAR) | SELECT cfl_team FROM table_name_12 WHERE college = "montreal" AND player = "marc trepanier" |
14,158 | <question>: What is the Translated Title of Steinulven? <context>: CREATE TABLE table_name_31 (translated_title VARCHAR, norwegian_title VARCHAR) | SELECT translated_title FROM table_name_31 WHERE norwegian_title = "steinulven" |
14,159 | <question>: What Norwegian title has 218 pages and Translated Title of Breaking Dawn? <context>: CREATE TABLE table_name_37 (norwegian_title VARCHAR, pages VARCHAR, translated_title VARCHAR) | SELECT norwegian_title FROM table_name_37 WHERE pages = 218 AND translated_title = "breaking dawn" |
14,160 | <question>: I want the constituency which has a swing to gain less than 6.05 and a rank of 2 <context>: CREATE TABLE table_name_4 (constituency VARCHAR, swing_to_gain VARCHAR, rank VARCHAR) | SELECT constituency FROM table_name_4 WHERE swing_to_gain < 6.05 AND rank = 2 |
14,161 | <question>: Name the winning party 2007 for result of labour hold and swing to gain less than 7.11 for wrexham <context>: CREATE TABLE table_name_60 (winning_party_2007 VARCHAR, constituency VARCHAR, result VARCHAR, swing_to_gain VARCHAR) | SELECT winning_party_2007 FROM table_name_60 WHERE result = "labour hold" AND swing_to_gain < 7.11 AND constituency = "wrexham" |
14,162 | <question>: Which box score has a Loss of capuano (5β5)? <context>: CREATE TABLE table_name_82 (boxscore VARCHAR, loss VARCHAR) | SELECT boxscore FROM table_name_82 WHERE loss = "capuano (5β5)" |
14,163 | <question>: Which opponent has a Score of 2β5? <context>: CREATE TABLE table_name_23 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_23 WHERE score = "2β5" |
14,164 | <question>: What is the record for june 10? <context>: CREATE TABLE table_name_28 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_28 WHERE date = "june 10" |
14,165 | <question>: Which box score has an Attendance of 54,773? <context>: CREATE TABLE table_name_32 (boxscore VARCHAR, attendance VARCHAR) | SELECT boxscore FROM table_name_32 WHERE attendance = "54,773" |
14,166 | <question>: What loss happened june 8? <context>: CREATE TABLE table_name_43 (loss VARCHAR, date VARCHAR) | SELECT loss FROM table_name_43 WHERE date = "june 8" |
14,167 | <question>: Which record has a Boxscore of w2, and a Loss of kline (2β3)? <context>: CREATE TABLE table_name_89 (record VARCHAR, boxscore VARCHAR, loss VARCHAR) | SELECT record FROM table_name_89 WHERE boxscore = "w2" AND loss = "kline (2β3)" |
14,168 | <question>: What is the PCT when the total number of games is less than 944? <context>: CREATE TABLE table_name_84 (pct VARCHAR, total_games INTEGER) | SELECT pct FROM table_name_84 WHERE total_games < 944 |
14,169 | <question>: What is the highest number lost when the number tied is more than 42, the years are less than 132, and the PCT is less than 0.5729000000000001? <context>: CREATE TABLE table_name_57 (lost INTEGER, pct VARCHAR, tied VARCHAR, years VARCHAR) | SELECT MAX(lost) FROM table_name_57 WHERE tied > 42 AND years < 132 AND pct < 0.5729000000000001 |
14,170 | <question>: What is the average number lost when the PCT is more than 0.7334 and the total number of games is larger than 48? <context>: CREATE TABLE table_name_22 (lost INTEGER, pct VARCHAR, total_games VARCHAR) | SELECT AVG(lost) FROM table_name_22 WHERE pct > 0.7334 AND total_games > 48 |
14,171 | <question>: What is the total number of tied games when Old Dominion is the independent and the years is more than 4? <context>: CREATE TABLE table_name_41 (tied INTEGER, independent VARCHAR, years VARCHAR) | SELECT SUM(tied) FROM table_name_41 WHERE independent = "old dominion" AND years > 4 |
14,172 | <question>: What is the lowest PCT when Old Dominion is the independent and the years is more than 4? <context>: CREATE TABLE table_name_54 (pct INTEGER, independent VARCHAR, years VARCHAR) | SELECT MIN(pct) FROM table_name_54 WHERE independent = "old dominion" AND years > 4 |
14,173 | <question>: how many laps was the driver jacques villeneuve and the grid more than 7? <context>: CREATE TABLE table_name_55 (laps VARCHAR, driver VARCHAR, grid VARCHAR) | SELECT COUNT(laps) FROM table_name_55 WHERE driver = "jacques villeneuve" AND grid > 7 |
14,174 | <question>: What is the high assists score of Nick Collison (11)? <context>: CREATE TABLE table_name_85 (high_assists VARCHAR, high_rebounds VARCHAR) | SELECT high_assists FROM table_name_85 WHERE high_rebounds = "nick collison (11)" |
14,175 | <question>: What is Time/Retired with a Grid of 12? <context>: CREATE TABLE table_name_23 (time_retired VARCHAR, grid VARCHAR) | SELECT time_retired FROM table_name_23 WHERE grid = 12 |
14,176 | <question>: How many grids have a Manufacturer of honda, a Rider of yuki takahashi, and more than 22 laps? <context>: CREATE TABLE table_name_8 (grid VARCHAR, laps VARCHAR, manufacturer VARCHAR, rider VARCHAR) | SELECT COUNT(grid) FROM table_name_8 WHERE manufacturer = "honda" AND rider = "yuki takahashi" AND laps > 22 |
14,177 | <question>: How many laps have a Time/Retired of +1:35.553? <context>: CREATE TABLE table_name_84 (laps VARCHAR, time_retired VARCHAR) | SELECT COUNT(laps) FROM table_name_84 WHERE time_retired = "+1:35.553" |
14,178 | <question>: If fitzroy was the home team what date did they play? <context>: CREATE TABLE table_name_48 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_48 WHERE home_team = "fitzroy" |
14,179 | <question>: What is the score of the game with 4 goals? <context>: CREATE TABLE table_name_46 (score VARCHAR, goal VARCHAR) | SELECT score FROM table_name_46 WHERE goal = 4 |
14,180 | <question>: What is the score of the friendly competition with 1 goal? <context>: CREATE TABLE table_name_25 (score VARCHAR, competition VARCHAR, goal VARCHAR) | SELECT score FROM table_name_25 WHERE competition = "friendly" AND goal = 1 |
14,181 | <question>: What was the Illinois Derby purse? <context>: CREATE TABLE table_name_32 (purse___us$__ VARCHAR, race VARCHAR) | SELECT purse___us$__ FROM table_name_32 WHERE race = "illinois derby" |
14,182 | <question>: How much money did Crafty Bear wins with a dist of 1 mile? <context>: CREATE TABLE table_name_30 (purse___us$__ VARCHAR, dist VARCHAR, winning_horse VARCHAR) | SELECT purse___us$__ FROM table_name_30 WHERE dist = "1 mile" AND winning_horse = "crafty bear" |
14,183 | <question>: What track did they race on at the Fountain of Youth Stakes? <context>: CREATE TABLE table_name_69 (track VARCHAR, race VARCHAR) | SELECT track FROM table_name_69 WHERE race = "fountain of youth stakes" |
14,184 | <question>: What is the grid total for alain prost with over 14 laps? <context>: CREATE TABLE table_name_91 (grid INTEGER, laps VARCHAR, driver VARCHAR) | SELECT SUM(grid) FROM table_name_91 WHERE laps > 14 AND driver = "alain prost" |
14,185 | <question>: What is the Digital/analog signal with a Chipset based on with radeon 8500? <context>: CREATE TABLE table_name_50 (digital_analog_signal VARCHAR, chipset_based_on VARCHAR) | SELECT digital_analog_signal FROM table_name_50 WHERE chipset_based_on = "radeon 8500" |
14,186 | <question>: What is the Retail name with a Chipset based on with radeon 9200? <context>: CREATE TABLE table_name_1 (retail_name VARCHAR, chipset_based_on VARCHAR) | SELECT retail_name FROM table_name_1 WHERE chipset_based_on = "radeon 9200" |
14,187 | <question>: What is the Chipset based on with a Digital/analog signal of analog, with an Available interface of agp, with Retail name with all-in-wonder 9800? <context>: CREATE TABLE table_name_18 (chipset_based_on VARCHAR, retail_name VARCHAR, digital_analog_signal VARCHAR, available_interface VARCHAR) | SELECT chipset_based_on FROM table_name_18 WHERE digital_analog_signal = "analog" AND available_interface = "agp" AND retail_name = "all-in-wonder 9800" |
14,188 | <question>: What is the Retail name with an Available interface with pci express 2.0? <context>: CREATE TABLE table_name_24 (retail_name VARCHAR, available_interface VARCHAR) | SELECT retail_name FROM table_name_24 WHERE available_interface = "pci express 2.0" |
14,189 | <question>: What is the Digital/analog signal with an Available interface with pci express, with Retail name with all-in-wonder x600 pro? <context>: CREATE TABLE table_name_71 (digital_analog_signal VARCHAR, available_interface VARCHAR, retail_name VARCHAR) | SELECT digital_analog_signal FROM table_name_71 WHERE available_interface = "pci express" AND retail_name = "all-in-wonder x600 pro" |
14,190 | <question>: What is the Retail name with a Digital/analog signal with analog, and a Chipset based on with radeon 9600? <context>: CREATE TABLE table_name_15 (retail_name VARCHAR, digital_analog_signal VARCHAR, chipset_based_on VARCHAR) | SELECT retail_name FROM table_name_15 WHERE digital_analog_signal = "analog" AND chipset_based_on = "radeon 9600" |
14,191 | <question>: What was the score of the match on 11/2/01? <context>: CREATE TABLE table_name_94 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_94 WHERE date = "11/2/01" |
14,192 | <question>: Did the Bulls win or lose at Valley Parade? <context>: CREATE TABLE table_name_84 (result VARCHAR, venue VARCHAR) | SELECT result FROM table_name_84 WHERE venue = "valley parade" |
14,193 | <question>: What was the score when the Vikings won the championship at Namyangju Stadium? <context>: CREATE TABLE table_name_86 (score VARCHAR, champion VARCHAR, stadium VARCHAR) | SELECT score FROM table_name_86 WHERE champion = "vikings" AND stadium = "namyangju stadium" |
14,194 | <question>: Tell me the label for formats of cd and album and year of 2008 <context>: CREATE TABLE table_name_48 (label VARCHAR, year VARCHAR, formats VARCHAR, format VARCHAR) | SELECT label FROM table_name_48 WHERE formats = "cd" AND format = "album" AND year = 2008 |
14,195 | <question>: Tell me the label for digital format with nebula remixes <context>: CREATE TABLE table_name_9 (label VARCHAR, formats VARCHAR, title VARCHAR) | SELECT label FROM table_name_9 WHERE formats = "digital" AND title = "nebula remixes" |
14,196 | <question>: I want to know the catalog number for album and seed records label for cd and title of grey <context>: CREATE TABLE table_name_66 (catalog_number VARCHAR, title VARCHAR, formats VARCHAR, format VARCHAR, label VARCHAR) | SELECT catalog_number FROM table_name_66 WHERE format = "album" AND label = "seed records" AND formats = "cd" AND title = "grey" |
14,197 | <question>: Tell me the format with year more than 2000 and label of myuzyk with catalog number of mzykn08 <context>: CREATE TABLE table_name_48 (format VARCHAR, catalog_number VARCHAR, year VARCHAR, label VARCHAR) | SELECT format FROM table_name_48 WHERE year > 2000 AND label = "myuzyk" AND catalog_number = "mzykn08" |
14,198 | <question>: If the Venue was kardinia park what was the highest Crowd attended? <context>: CREATE TABLE table_name_12 (crowd INTEGER, venue VARCHAR) | SELECT MAX(crowd) FROM table_name_12 WHERE venue = "kardinia park" |
14,199 | <question>: If the Home team of collingwood was playing, what was the Away team? <context>: CREATE TABLE table_name_45 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_45 WHERE home_team = "collingwood" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.