Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
41,400 | <question>: Tell me the average attendance for week of 11 <context>: CREATE TABLE table_name_58 (attendance INTEGER, week VARCHAR) | SELECT AVG(attendance) FROM table_name_58 WHERE week = 11 |
41,401 | <question>: Tell me opponent for result of w 33-31 <context>: CREATE TABLE table_name_96 (opponent VARCHAR, result VARCHAR) | SELECT opponent FROM table_name_96 WHERE result = "w 33-31" |
41,402 | <question>: What Name is administered by oral or iv, and is being investigated for thyroid imaging thyroid metastases imaging? <context>: CREATE TABLE table_name_61 (name VARCHAR, route_of_administration VARCHAR, investigation VARCHAR) | SELECT name FROM table_name_61 WHERE route_of_administration = "oral or iv" AND investigation = "thyroid imaging thyroid metastases imaging" |
41,403 | <question>: Who is the owner with a call sign of cjgx? <context>: CREATE TABLE table_name_5 (owner VARCHAR, call_sign VARCHAR) | SELECT owner FROM table_name_5 WHERE call_sign = "cjgx" |
41,404 | <question>: Who is the owner of the branding gx94? <context>: CREATE TABLE table_name_78 (owner VARCHAR, branding VARCHAR) | SELECT owner FROM table_name_78 WHERE branding = "gx94" |
41,405 | <question>: What is the call frequency sign of cjjc-fm? <context>: CREATE TABLE table_name_28 (frequency VARCHAR, call_sign VARCHAR) | SELECT frequency FROM table_name_28 WHERE call_sign = "cjjc-fm" |
41,406 | <question>: Who is the owner with the branding fox fm? <context>: CREATE TABLE table_name_48 (owner VARCHAR, branding VARCHAR) | SELECT owner FROM table_name_48 WHERE branding = "fox fm" |
41,407 | <question>: What is the branding frequency of cbc radio 2? <context>: CREATE TABLE table_name_74 (frequency VARCHAR, branding VARCHAR) | SELECT frequency FROM table_name_74 WHERE branding = "cbc radio 2" |
41,408 | <question>: Tell me the location for altitude being less thaan 6102 <context>: CREATE TABLE table_name_31 (location VARCHAR, altitude__metres_ INTEGER) | SELECT location FROM table_name_31 WHERE altitude__metres_ < 6102 |
41,409 | <question>: Say the region for 6854 altitudes <context>: CREATE TABLE table_name_97 (region VARCHAR, altitude__metres_ VARCHAR) | SELECT region FROM table_name_97 WHERE altitude__metres_ = 6854 |
41,410 | <question>: What is the frequency of number 161? <context>: CREATE TABLE table_name_59 (frequency VARCHAR, number VARCHAR) | SELECT frequency FROM table_name_59 WHERE number = 161 |
41,411 | <question>: What is the frequency of number 3 with a bus station origin? <context>: CREATE TABLE table_name_33 (frequency VARCHAR, origin VARCHAR, number VARCHAR) | SELECT frequency FROM table_name_33 WHERE origin = "bus station" AND number = 3 |
41,412 | <question>: What is the origin of the one with a number larger than 161? <context>: CREATE TABLE table_name_66 (origin VARCHAR, number INTEGER) | SELECT origin FROM table_name_66 WHERE number > 161 |
41,413 | <question>: What is the origin of the one whose final destination is Brandholmen? <context>: CREATE TABLE table_name_15 (origin VARCHAR, final_destination VARCHAR) | SELECT origin FROM table_name_15 WHERE final_destination = "brandholmen" |
41,414 | <question>: What is the highest rank of a rider whose time was 1:19.02.8? <context>: CREATE TABLE table_name_70 (place INTEGER, time VARCHAR) | SELECT MAX(place) FROM table_name_70 WHERE time = "1:19.02.8" |
41,415 | <question>: Tell me the revised of mccune reischauer of yŏn (s) ryŏn (n) <context>: CREATE TABLE table_name_48 (revised VARCHAR, mccune_reischauer VARCHAR) | SELECT revised FROM table_name_48 WHERE mccune_reischauer = "yŏn (s) ryŏn (n)" |
41,416 | <question>: Name the hanja for hangul of 주 <context>: CREATE TABLE table_name_77 (hanja VARCHAR, hangul VARCHAR) | SELECT hanja FROM table_name_77 WHERE hangul = "주" |
41,417 | <question>: Tell me the hanja of eum <context>: CREATE TABLE table_name_85 (hanja VARCHAR, revised VARCHAR) | SELECT hanja FROM table_name_85 WHERE revised = "eum" |
41,418 | <question>: What model was released in 2005? <context>: CREATE TABLE table_name_89 (model VARCHAR, released VARCHAR) | SELECT model FROM table_name_89 WHERE released = 2005 |
41,419 | <question>: Tell me the score for 9 may 2001 <context>: CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_15 WHERE date = "9 may 2001" |
41,420 | <question>: Tell me the competition for 25 march 2001 <context>: CREATE TABLE table_name_43 (competition VARCHAR, date VARCHAR) | SELECT competition FROM table_name_43 WHERE date = "25 march 2001" |
41,421 | <question>: Who was the Race Winner of the Southern Illinois 100? <context>: CREATE TABLE table_name_48 (race_winner VARCHAR, event_name VARCHAR) | SELECT race_winner FROM table_name_48 WHERE event_name = "southern illinois 100" |
41,422 | <question>: At which track did the event Daytona Arca 200 take place? <context>: CREATE TABLE table_name_64 (track VARCHAR, event_name VARCHAR) | SELECT track FROM table_name_64 WHERE event_name = "daytona arca 200" |
41,423 | <question>: At which event was Ken Schrader the Race Winner at the Toledo Speedway? <context>: CREATE TABLE table_name_38 (event_name VARCHAR, race_winner VARCHAR, track VARCHAR) | SELECT event_name FROM table_name_38 WHERE race_winner = "ken schrader" AND track = "toledo speedway" |
41,424 | <question>: At which track was Frank Kimmel the Pole Winner of the Pennsylvania 200? <context>: CREATE TABLE table_name_80 (track VARCHAR, pole_winner VARCHAR, event_name VARCHAR) | SELECT track FROM table_name_80 WHERE pole_winner = "frank kimmel" AND event_name = "pennsylvania 200" |
41,425 | <question>: Steve Wallace was a Race Winner at the Kentucky Speedway on what date? <context>: CREATE TABLE table_name_75 (date VARCHAR, race_winner VARCHAR, track VARCHAR) | SELECT date FROM table_name_75 WHERE race_winner = "steve wallace" AND track = "kentucky speedway" |
41,426 | <question>: What is the lowest number of silver owned by a nation that is not ranked number 1? <context>: CREATE TABLE table_name_41 (silver INTEGER, rank INTEGER) | SELECT MIN(silver) FROM table_name_41 WHERE rank < 1 |
41,427 | <question>: What is Driver Kimi Räikkönen's number on the grid? <context>: CREATE TABLE table_name_83 (grid VARCHAR, driver VARCHAR) | SELECT grid FROM table_name_83 WHERE driver = "kimi räikkönen" |
41,428 | <question>: Which driver had a Part 1 time of 1:13.306? <context>: CREATE TABLE table_name_56 (driver VARCHAR, part_1 VARCHAR) | SELECT driver FROM table_name_56 WHERE part_1 = "1:13.306" |
41,429 | <question>: What ride opened after 2011? <context>: CREATE TABLE table_name_91 (current_name VARCHAR, year_first_opened INTEGER) | SELECT current_name FROM table_name_91 WHERE year_first_opened > 2011 |
41,430 | <question>: Which stadium can hold 63,443 people? <context>: CREATE TABLE table_name_97 (result VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_97 WHERE attendance = "63,443" |
41,431 | <question>: Tell me the number of weeks for bye <context>: CREATE TABLE table_name_5 (week VARCHAR, date VARCHAR) | SELECT COUNT(week) FROM table_name_5 WHERE date = "bye" |
41,432 | <question>: Tell me the number of weeks for december 5, 2005 <context>: CREATE TABLE table_name_83 (week VARCHAR, date VARCHAR) | SELECT COUNT(week) FROM table_name_83 WHERE date = "december 5, 2005" |
41,433 | <question>: Tell me the start time for december 24, 2005 <context>: CREATE TABLE table_name_48 (start_time VARCHAR, date VARCHAR) | SELECT start_time FROM table_name_48 WHERE date = "december 24, 2005" |
41,434 | <question>: Tell me the result for lincoln financial field december 11, 2005 <context>: CREATE TABLE table_name_90 (result VARCHAR, venue VARCHAR, date VARCHAR) | SELECT result FROM table_name_90 WHERE venue = "lincoln financial field" AND date = "december 11, 2005" |
41,435 | <question>: Tell me the total number of years for wins less than 2 and class of 50cc with points of 15 <context>: CREATE TABLE table_name_4 (year VARCHAR, points VARCHAR, wins VARCHAR, class VARCHAR) | SELECT COUNT(year) FROM table_name_4 WHERE wins < 2 AND class = "50cc" AND points = 15 |
41,436 | <question>: Tell me the year for class of 125cc <context>: CREATE TABLE table_name_55 (year VARCHAR, class VARCHAR) | SELECT year FROM table_name_55 WHERE class = "125cc" |
41,437 | <question>: Tell me the average wins for class of 50cc and rank of 8th <context>: CREATE TABLE table_name_47 (wins INTEGER, class VARCHAR, rank VARCHAR) | SELECT AVG(wins) FROM table_name_47 WHERE class = "50cc" AND rank = "8th" |
41,438 | <question>: Tell me the lowest wins for class of 50cc and team of tomos for year less than 1969 <context>: CREATE TABLE table_name_9 (wins INTEGER, year VARCHAR, class VARCHAR, team VARCHAR) | SELECT MIN(wins) FROM table_name_9 WHERE class = "50cc" AND team = "tomos" AND year < 1969 |
41,439 | <question>: Which country has the highest bronze amount and a silver amount bigger than 41? <context>: CREATE TABLE table_name_65 (bronze INTEGER, silver INTEGER) | SELECT MAX(bronze) FROM table_name_65 WHERE silver > 41 |
41,440 | <question>: What is the lowest amount of medals Russia has if they have more than 2 silver medals and less than 4 gold medals? <context>: CREATE TABLE table_name_89 (total INTEGER, gold VARCHAR, silver VARCHAR, nation VARCHAR) | SELECT MIN(total) FROM table_name_89 WHERE silver > 2 AND nation = "russia" AND gold < 4 |
41,441 | <question>: How many points did the 2005 1st place team receive? <context>: CREATE TABLE table_name_90 (points VARCHAR, year VARCHAR) | SELECT points FROM table_name_90 WHERE year = 2005 |
41,442 | <question>: What engine was used by the teams that used a Lola b02/00 chassis and ranked 1st? <context>: CREATE TABLE table_name_45 (engine VARCHAR, chassis VARCHAR, rank VARCHAR) | SELECT engine FROM table_name_45 WHERE chassis = "lola b02/00" AND rank = "1st" |
41,443 | <question>: How many years did Team Newman/Haas Racing receive a 1st place ranking? <context>: CREATE TABLE table_name_86 (year VARCHAR, team VARCHAR, rank VARCHAR) | SELECT COUNT(year) FROM table_name_86 WHERE team = "newman/haas racing" AND rank = "1st" |
41,444 | <question>: What is the aggregate of place for points being 35? <context>: CREATE TABLE table_name_52 (place INTEGER, points VARCHAR) | SELECT SUM(place) FROM table_name_52 WHERE points = 35 |
41,445 | <question>: Name the fewest points of 5 place <context>: CREATE TABLE table_name_86 (points INTEGER, place VARCHAR) | SELECT MIN(points) FROM table_name_86 WHERE place = 5 |
41,446 | <question>: Name the total number of places for vicky gordon and points more than 23 <context>: CREATE TABLE table_name_72 (place VARCHAR, artist VARCHAR, points VARCHAR) | SELECT COUNT(place) FROM table_name_72 WHERE artist = "vicky gordon" AND points > 23 |
41,447 | <question>: Tell me the opponent for attendance of 68,264 <context>: CREATE TABLE table_name_74 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_74 WHERE attendance = "68,264" |
41,448 | <question>: Tell me the sum of week for result of l 24–21 <context>: CREATE TABLE table_name_15 (week INTEGER, result VARCHAR) | SELECT SUM(week) FROM table_name_15 WHERE result = "l 24–21" |
41,449 | <question>: Tell me the result for attendance of 54,462 <context>: CREATE TABLE table_name_32 (result VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_32 WHERE attendance = "54,462" |
41,450 | <question>: Tell me the opponent for attendance of 53,899 <context>: CREATE TABLE table_name_49 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_49 WHERE attendance = "53,899" |
41,451 | <question>: What is the points that is more than 636 and has a value of 50? <context>: CREATE TABLE table_name_82 (pts_ VARCHAR, b_ VARCHAR, reb_ VARCHAR, no_ VARCHAR, a_ VARCHAR) | SELECT pts_[b_] FROM table_name_82 WHERE reb_[b_] > 636 AND no_[a_] = "50" |
41,452 | <question>: Which rebound was 8 and has and ast that was less than 57? <context>: CREATE TABLE table_name_64 (b_ VARCHAR, reb_ INTEGER, no_ VARCHAR, a_ VARCHAR, ast_ VARCHAR) | SELECT AVG(reb_)[b_] FROM table_name_64 WHERE no_[a_] = "8" AND ast_[b_] < 57 |
41,453 | <question>: Tell me the country for ICAO of tjig <context>: CREATE TABLE table_name_84 (country VARCHAR, icao VARCHAR) | SELECT country FROM table_name_84 WHERE icao = "tjig" |
41,454 | <question>: Tell me the country for san juan <context>: CREATE TABLE table_name_62 (country VARCHAR, city VARCHAR) | SELECT country FROM table_name_62 WHERE city = "san juan" |
41,455 | <question>: Tell me the country for ICAO tjvq <context>: CREATE TABLE table_name_14 (country VARCHAR, icao VARCHAR) | SELECT country FROM table_name_14 WHERE icao = "tjvq" |
41,456 | <question>: Tell me the iata for icao of tjrv <context>: CREATE TABLE table_name_2 (iata VARCHAR, icao VARCHAR) | SELECT iata FROM table_name_2 WHERE icao = "tjrv" |
41,457 | <question>: Tell me the icao of isla grande <context>: CREATE TABLE table_name_76 (icao VARCHAR, city VARCHAR) | SELECT icao FROM table_name_76 WHERE city = "isla grande" |
41,458 | <question>: What position does the Colorado Rapids pick after 15 play? <context>: CREATE TABLE table_name_35 (position VARCHAR, mls_team VARCHAR, pick__number VARCHAR) | SELECT position FROM table_name_35 WHERE mls_team = "colorado rapids" AND pick__number > 15 |
41,459 | <question>: I want to know the events for 106 bands <context>: CREATE TABLE table_name_16 (event VARCHAR, acts VARCHAR) | SELECT event FROM table_name_16 WHERE acts = "106 bands" |
41,460 | <question>: Tell me the nomination for ukraine <context>: CREATE TABLE table_name_17 (nomination VARCHAR, country VARCHAR) | SELECT nomination FROM table_name_17 WHERE country = "ukraine" |
41,461 | <question>: Tell me the nomination for goran paskaljevic <context>: CREATE TABLE table_name_12 (nomination VARCHAR, director VARCHAR) | SELECT nomination FROM table_name_12 WHERE director = "goran paskaljevic" |
41,462 | <question>: Which FA Cup apps has league goals of 1 with total goals less than 1? <context>: CREATE TABLE table_name_47 (fa_cup_apps INTEGER, league_goals VARCHAR, total_goals VARCHAR) | SELECT AVG(fa_cup_apps) FROM table_name_47 WHERE league_goals = 1 AND total_goals < 1 |
41,463 | <question>: What is the highest apps total with FA cup apps of 26 with total number of goals larger than 9? <context>: CREATE TABLE table_name_41 (total_apps INTEGER, fa_cup_apps VARCHAR, total_goals VARCHAR) | SELECT MAX(total_apps) FROM table_name_41 WHERE fa_cup_apps = 26 AND total_goals > 9 |
41,464 | <question>: Which league goals has FA cup apps of 2? <context>: CREATE TABLE table_name_39 (league_goals VARCHAR, fa_cup_apps VARCHAR) | SELECT league_goals FROM table_name_39 WHERE fa_cup_apps = 2 |
41,465 | <question>: What FA cup apps has a total larger than 12 and league apps larger than 38, and FA Cup goals larger than 1? <context>: CREATE TABLE table_name_50 (fa_cup_apps VARCHAR, fa_cup_goals VARCHAR, total_apps VARCHAR, league_apps VARCHAR) | SELECT COUNT(fa_cup_apps) FROM table_name_50 WHERE total_apps > 12 AND league_apps > 38 AND fa_cup_goals > 1 |
41,466 | <question>: What was the total attendance on December 14, 1975 after week 13? <context>: CREATE TABLE table_name_41 (attendance VARCHAR, date VARCHAR, week VARCHAR) | SELECT COUNT(attendance) FROM table_name_41 WHERE date = "december 14, 1975" AND week > 13 |
41,467 | <question>: What is the sum of all totals with a rank greater than 6, gold greater than 0, and silver greater than 2? <context>: CREATE TABLE table_name_11 (total INTEGER, silver VARCHAR, rank VARCHAR, gold VARCHAR) | SELECT SUM(total) FROM table_name_11 WHERE rank > 6 AND gold > 0 AND silver = 2 |
41,468 | <question>: How many values for silver occur when gold is less than 1, the rank is 13, and bronze is greater than 2? <context>: CREATE TABLE table_name_70 (silver VARCHAR, bronze VARCHAR, gold VARCHAR, rank VARCHAR) | SELECT COUNT(silver) FROM table_name_70 WHERE gold < 1 AND rank = 13 AND bronze > 2 |
41,469 | <question>: What is the average value of Bronze when silver is 0 and the total is less than 1? <context>: CREATE TABLE table_name_18 (bronze INTEGER, silver VARCHAR, total VARCHAR) | SELECT AVG(bronze) FROM table_name_18 WHERE silver = 0 AND total < 1 |
41,470 | <question>: What is the lowest value for bronze with a total of 3 and a value for silver greater than 1 while the value of gold is smaller than 1? <context>: CREATE TABLE table_name_56 (bronze INTEGER, gold VARCHAR, total VARCHAR, silver VARCHAR) | SELECT MIN(bronze) FROM table_name_56 WHERE total = 3 AND silver > 1 AND gold < 1 |
41,471 | <question>: How man values for bronze occur when gold is less than 1, rank is greater than 15, and total is greater than 1? <context>: CREATE TABLE table_name_9 (bronze VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR) | SELECT COUNT(bronze) FROM table_name_9 WHERE gold < 1 AND rank > 15 AND total > 1 |
41,472 | <question>: Name the position of pick 234 <context>: CREATE TABLE table_name_67 (position VARCHAR, pick VARCHAR) | SELECT position FROM table_name_67 WHERE pick = "234" |
41,473 | <question>: Name the team of vitali yeremeyev <context>: CREATE TABLE table_name_97 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_name_97 WHERE player = "vitali yeremeyev" |
41,474 | <question>: Tell me the result for 2007-09-29 <context>: CREATE TABLE table_name_98 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_98 WHERE date = "2007-09-29" |
41,475 | <question>: How many weeks have an attendance of 64,116? <context>: CREATE TABLE table_name_40 (week VARCHAR, attendance VARCHAR) | SELECT COUNT(week) FROM table_name_40 WHERE attendance = "64,116" |
41,476 | <question>: Which date has a week larger than 14? <context>: CREATE TABLE table_name_42 (date VARCHAR, week INTEGER) | SELECT date FROM table_name_42 WHERE week > 14 |
41,477 | <question>: Which venue has a week smaller than 2? <context>: CREATE TABLE table_name_29 (venue VARCHAR, week INTEGER) | SELECT venue FROM table_name_29 WHERE week < 2 |
41,478 | <question>: When was the Metallica: Escape from the Studio show? <context>: CREATE TABLE table_name_28 (date VARCHAR, event VARCHAR) | SELECT date FROM table_name_28 WHERE event = "metallica: escape from the studio" |
41,479 | <question>: When is the Monsters of Rock show with 12 bands? <context>: CREATE TABLE table_name_74 (date VARCHAR, event VARCHAR, acts VARCHAR) | SELECT date FROM table_name_74 WHERE event = "monsters of rock" AND acts = "12 bands" |
41,480 | <question>: Tell me the result for 15 july <context>: CREATE TABLE table_name_22 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_22 WHERE date = "15 july" |
41,481 | <question>: Tell me the number range for 1965-66 <context>: CREATE TABLE table_name_58 (no_range VARCHAR, year_built__converted VARCHAR, _ VARCHAR) | SELECT no_range FROM table_name_58 WHERE year_built__converted * _ = "1965-66" |
41,482 | <question>: Tell me the year built for withdrawn of 1983 <context>: CREATE TABLE table_name_19 (year_built__converted VARCHAR, _ VARCHAR, withdrawn VARCHAR) | SELECT year_built__converted * _ FROM table_name_19 WHERE withdrawn = 1983 |
41,483 | <question>: Tell me the year built for number built of 10 <context>: CREATE TABLE table_name_14 (year_built__converted VARCHAR, _ VARCHAR, no_built__converted VARCHAR) | SELECT year_built__converted * _ FROM table_name_14 WHERE no_built__converted * _ = "10" |
41,484 | <question>: Tell me the result for 2008-12-23 <context>: CREATE TABLE table_name_61 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_61 WHERE date = "2008-12-23" |
41,485 | <question>: Tell me the director nominated for best actor in a leading role <context>: CREATE TABLE table_name_73 (director VARCHAR, nomination VARCHAR) | SELECT director FROM table_name_73 WHERE nomination = "best actor in a leading role" |
41,486 | <question>: Tell me the nomination for peresohla zemlia <context>: CREATE TABLE table_name_41 (nomination VARCHAR, film_name VARCHAR) | SELECT nomination FROM table_name_41 WHERE film_name = "peresohla zemlia" |
41,487 | <question>: What are the average laps driven in the GT class? <context>: CREATE TABLE table_name_45 (laps INTEGER, class VARCHAR) | SELECT AVG(laps) FROM table_name_45 WHERE class = "gt" |
41,488 | <question>: I want the tsongas of may 22, 2007 <context>: CREATE TABLE table_name_45 (tsongas__d_ VARCHAR, date VARCHAR) | SELECT tsongas__d_ FROM table_name_45 WHERE date = "may 22, 2007" |
41,489 | <question>: Tell me the venue for winner of nevada and year more than 2004 <context>: CREATE TABLE table_name_7 (venue VARCHAR, winner VARCHAR, year VARCHAR) | SELECT venue FROM table_name_7 WHERE winner = "nevada" AND year > 2004 |
41,490 | <question>: What date is the 1:00 pm game at arrowhead stadium? <context>: CREATE TABLE table_name_37 (date VARCHAR, time___et__ VARCHAR, game_site VARCHAR) | SELECT date FROM table_name_37 WHERE time___et__ = "1:00 pm" AND game_site = "arrowhead stadium" |
41,491 | <question>: Where will the game at (ET) of 7:00 pm be at? <context>: CREATE TABLE table_name_2 (game_site VARCHAR, time___et__ VARCHAR) | SELECT game_site FROM table_name_2 WHERE time___et__ = "7:00 pm" |
41,492 | <question>: Who is the Driver that has a Laps smaller than 498, less than 58 points, a car number bigger than 22 and who has won $93,514? <context>: CREATE TABLE table_name_15 (driver VARCHAR, winnings VARCHAR, car__number VARCHAR, laps VARCHAR, points VARCHAR) | SELECT driver FROM table_name_15 WHERE laps < 498 AND points < 58 AND car__number > 22 AND winnings = "$93,514" |
41,493 | <question>: At what location was there a loss on 20 jan? <context>: CREATE TABLE table_name_98 (location VARCHAR, result VARCHAR, date VARCHAR) | SELECT location FROM table_name_98 WHERE result = "loss" AND date = "20 jan" |
41,494 | <question>: Tell me the venue for record of 2-7 <context>: CREATE TABLE table_name_39 (venue VARCHAR, record VARCHAR) | SELECT venue FROM table_name_39 WHERE record = "2-7" |
41,495 | <question>: Tell me the result for green bay packers <context>: CREATE TABLE table_name_77 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_77 WHERE opponent = "green bay packers" |
41,496 | <question>: Tell mem the opponent for result of w 31-21 <context>: CREATE TABLE table_name_52 (opponent VARCHAR, result VARCHAR) | SELECT opponent FROM table_name_52 WHERE result = "w 31-21" |
41,497 | <question>: What is the average speed of rider Peter Williams? <context>: CREATE TABLE table_name_44 (speed VARCHAR, rider VARCHAR) | SELECT speed FROM table_name_44 WHERE rider = "peter williams" |
41,498 | <question>: What is the time/s of team Triumph in those races in which Triumph ranked higher than 4? <context>: CREATE TABLE table_name_44 (time VARCHAR, team VARCHAR, rank VARCHAR) | SELECT time FROM table_name_44 WHERE team = "triumph" AND rank < 4 |
41,499 | <question>: What was the score in 1969? <context>: CREATE TABLE table_name_9 (score VARCHAR, year VARCHAR) | SELECT score FROM table_name_9 WHERE year = "1969" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.