text
stringlengths
114
1.06k
### question: What is Country, when Time is 1:29.43.60? ### answer: SELECT country FROM table_name_68 WHERE time = "1:29.43.60" ### context: CREATE TABLE table_name_68 (country VARCHAR, time VARCHAR)
### question: What is the lowest Place, when Points are greater than 2? ### answer: SELECT MIN(place) FROM table_name_17 WHERE points > 2 ### context: CREATE TABLE table_name_17 (place INTEGER, points INTEGER)
### question: What team was the opponent when the result was l 0-27? ### answer: SELECT opponent FROM table_name_21 WHERE result = "l 0-27" ### context: CREATE TABLE table_name_21 (opponent VARCHAR, result VARCHAR)
### question: What team was the opponent on 09/20/1975? ### answer: SELECT opponent FROM table_name_62 WHERE date = "09/20/1975" ### context: CREATE TABLE table_name_62 (opponent VARCHAR, date VARCHAR)
### question: What is the Location of the game on 11/08/1975*? ### answer: SELECT location FROM table_name_43 WHERE date = "11/08/1975*" ### context: CREATE TABLE table_name_43 (location VARCHAR, date VARCHAR)
### question: How many gold medals were awarded to the team with more than 2 bronze and exactly 29 silver medals? ### answer: SELECT gold FROM table_name_19 WHERE bronze > 2 AND silver = 29 ### context: CREATE TABLE table_name_19 (gold VARCHAR, bronze VARCHAR, silver VARCHAR)
### question: What is the latest year that Cicely Tyson is the Golden Globe Award actor? ### answer: SELECT MAX(year) FROM table_name_76 WHERE actor = "cicely tyson" ### context: CREATE TABLE table_name_76 (year INTEGER, actor VARCHAR)
### question: What Motion Picture after 2003 had Viola Davis nominated for Best Supporting Actress? ### answer: SELECT motion_picture FROM table_name_70 WHERE year > 2003 AND result = "nominated" AND actor = "viola davis" AND award = "best supporting actress" ### context: CREATE TABLE table_name_70 (motion_picture VARC...
### question: What Award has a date of 2002? ### answer: SELECT award FROM table_name_5 WHERE year = 2002 ### context: CREATE TABLE table_name_5 (award VARCHAR, year VARCHAR)
### question: What Award was received bby the Motion Picture What's Love Got To Do With It? ### answer: SELECT award FROM table_name_97 WHERE motion_picture = "what's love got to do with it" ### context: CREATE TABLE table_name_97 (award VARCHAR, motion_picture VARCHAR)
### question: What is the latest Year with Marianne Jean-Baptiste as the Golden Globe Actor? ### answer: SELECT MAX(year) FROM table_name_50 WHERE actor = "marianne jean-baptiste" ### context: CREATE TABLE table_name_50 (year INTEGER, actor VARCHAR)
### question: Which film was released in August 2004? ### answer: SELECT title FROM table_name_67 WHERE date = "august 2004" ### context: CREATE TABLE table_name_67 (title VARCHAR, date VARCHAR)
### question: What was the production cost for the film directed by 2004? ### answer: SELECT production_cost FROM table_name_39 WHERE director = "2004" ### context: CREATE TABLE table_name_39 (production_cost VARCHAR, director VARCHAR)
### question: What film did Pen-Ek Ratanaruang direct? ### answer: SELECT title FROM table_name_62 WHERE director = "pen-ek ratanaruang" ### context: CREATE TABLE table_name_62 (title VARCHAR, director VARCHAR)
### question: When was the film directed by Pen-Ek Ratanaruang released? ### answer: SELECT date FROM table_name_13 WHERE director = "pen-ek ratanaruang" ### context: CREATE TABLE table_name_13 (date VARCHAR, director VARCHAR)
### question: Who directed Tequila? ### answer: SELECT director FROM table_name_50 WHERE title = "tequila" ### context: CREATE TABLE table_name_50 (director VARCHAR, title VARCHAR)
### question: Who left office in June 2011? ### answer: SELECT name FROM table_name_1 WHERE left_office = "june 2011" ### context: CREATE TABLE table_name_1 (name VARCHAR, left_office VARCHAR)
### question: What is the Born-Died date for the Representative of Italy? ### answer: SELECT born_died FROM table_name_16 WHERE country = "italy" ### context: CREATE TABLE table_name_16 (born_died VARCHAR, country VARCHAR)
### question: What is the country of the Representative that left office as incumbent? ### answer: SELECT country FROM table_name_29 WHERE left_office = "incumbent" ### context: CREATE TABLE table_name_29 (country VARCHAR, left_office VARCHAR)
### question: What is Package/Option, when Language is Italian, and when Television Service is Sky Radio? ### answer: SELECT package_option FROM table_name_51 WHERE language = "italian" AND television_service = "sky radio" ### context: CREATE TABLE table_name_51 (package_option VARCHAR, language VARCHAR, television_ser...
### question: What is HDTV, when Television Service is MTV Rocks? ### answer: SELECT hdtv FROM table_name_21 WHERE television_service = "mtv rocks" ### context: CREATE TABLE table_name_21 (hdtv VARCHAR, television_service VARCHAR)
### question: What is Television Service, when HDTV is No, and when Language is Italian? ### answer: SELECT television_service FROM table_name_11 WHERE hdtv = "no" AND language = "italian" ### context: CREATE TABLE table_name_11 (television_service VARCHAR, hdtv VARCHAR, language VARCHAR)
### question: What is Television Service, when Package/Option is Sky Famiglia, and when Language is Italian? ### answer: SELECT television_service FROM table_name_54 WHERE package_option = "sky famiglia" AND language = "italian" ### context: CREATE TABLE table_name_54 (television_service VARCHAR, package_option VARCHAR...
### question: What is HDTV, when Language is English, and when Television Service is MTV Dance? ### answer: SELECT hdtv FROM table_name_82 WHERE language = "english" AND television_service = "mtv dance" ### context: CREATE TABLE table_name_82 (hdtv VARCHAR, language VARCHAR, television_service VARCHAR)
### question: How many average 100s were there for Tim Bresnan? ### answer: SELECT AVG(100 AS s) FROM table_name_51 WHERE player = "tim bresnan" ### context: CREATE TABLE table_name_51 (player VARCHAR)
### question: How many Platforms have a Frequency of less than 2? ### answer: SELECT COUNT(platform) FROM table_name_60 WHERE frequency__per_hour_ < 2 ### context: CREATE TABLE table_name_60 (platform VARCHAR, frequency__per_hour_ INTEGER)
### question: What is the 1999-2000 team, when the Height (cm) is less than 187, and when the Birthplace is Cloquet, Minnesota? ### answer: SELECT 1999 AS _2000_team FROM table_name_93 WHERE height__cm_ < 187 AND birthplace = "cloquet, minnesota" ### context: CREATE TABLE table_name_93 (height__cm_ VARCHAR, birthplace ...
### question: What is the sum of Height (cm), when the Weight (kg) is 90? ### answer: SELECT SUM(height__cm_) FROM table_name_13 WHERE weight__kg_ = 90 ### context: CREATE TABLE table_name_13 (height__cm_ INTEGER, weight__kg_ VARCHAR)
### question: Which Losses have a Pct of .451 and Finished 6th? ### answer: SELECT losses FROM table_name_92 WHERE pct = ".451" AND finish = "6th" ### context: CREATE TABLE table_name_92 (losses VARCHAR, pct VARCHAR, finish VARCHAR)
### question: Which season has Losses of 30? ### answer: SELECT season FROM table_name_65 WHERE losses = "30" ### context: CREATE TABLE table_name_65 (season VARCHAR, losses VARCHAR)
### question: In which Season was the Division Washington Bullets? ### answer: SELECT season FROM table_name_4 WHERE division = "washington bullets" ### context: CREATE TABLE table_name_4 (season VARCHAR, division VARCHAR)
### question: In which season were there Wins of 29 and a Finished place of 3rd? ### answer: SELECT season FROM table_name_10 WHERE wins = "29" AND finish = "3rd" ### context: CREATE TABLE table_name_10 (season VARCHAR, wins VARCHAR, finish VARCHAR)
### question: What is the EASA (EU) when the notes show aoc 135? ### answer: SELECT easa__eu_ FROM table_name_76 WHERE notes = "aoc 135" ### context: CREATE TABLE table_name_76 (easa__eu_ VARCHAR, notes VARCHAR)
### question: What is the Notes when the fleet size is 3? ### answer: SELECT notes FROM table_name_39 WHERE fleet_size = 3 ### context: CREATE TABLE table_name_39 (notes VARCHAR, fleet_size VARCHAR)
### question: What is the Fleet Size when the EASA (EU) is no? ### answer: SELECT fleet_size FROM table_name_27 WHERE easa__eu_ = "no" ### context: CREATE TABLE table_name_27 (fleet_size VARCHAR, easa__eu_ VARCHAR)
### question: hat is the Airline when the EASA (EU) is yes? ### answer: SELECT airline FROM table_name_55 WHERE easa__eu_ = "yes" ### context: CREATE TABLE table_name_55 (airline VARCHAR, easa__eu_ VARCHAR)
### question: What is the Airline when the notes show aoc 135? ### answer: SELECT airline FROM table_name_51 WHERE notes = "aoc 135" ### context: CREATE TABLE table_name_51 (airline VARCHAR, notes VARCHAR)
### question: What is the highest Year with a Competition that is new york city marathon? ### answer: SELECT MAX(year) FROM table_name_10 WHERE competition = "new york city marathon" ### context: CREATE TABLE table_name_10 (year INTEGER, competition VARCHAR)
### question: What is the Notes with a Venue that is venice, italy? ### answer: SELECT notes FROM table_name_23 WHERE venue = "venice, italy" ### context: CREATE TABLE table_name_23 (notes VARCHAR, venue VARCHAR)
### question: What is 1994, when 2002 is ATP Masters Series? ### answer: SELECT 1994 FROM table_name_76 WHERE 2002 = "atp masters series" ### context: CREATE TABLE table_name_76 (Id VARCHAR)
### question: What is 2001, when 1987 is N/A, and when Career SR is N/A? ### answer: SELECT 2001 FROM table_name_50 WHERE 1987 = "n/a" AND career_sr = "n/a" ### context: CREATE TABLE table_name_50 (career_sr VARCHAR)
### question: What is 1989, when 1999 is F, and when 1994 is 2R? ### answer: SELECT 1989 FROM table_name_39 WHERE 1999 = "f" AND 1994 = "2r" ### context: CREATE TABLE table_name_39 (Id VARCHAR)
### question: What is 2001, when 1990 is A, when 1987 is NME, and when 1997 is 1R? ### answer: SELECT 2001 FROM table_name_33 WHERE 1990 = "a" AND 1987 = "nme" AND 1997 = "1r" ### context: CREATE TABLE table_name_33 (Id VARCHAR)
### question: What is 1997, when 2003 is 0 / 4? ### answer: SELECT 1997 FROM table_name_22 WHERE 2003 = "0 / 4" ### context: CREATE TABLE table_name_22 (Id VARCHAR)
### question: What is the average total 0 are nominated by the Taoiseach and the agricultural panel is greater than 5? ### answer: SELECT AVG(total) FROM table_name_38 WHERE nominated_by_the_taoiseach = 0 AND agricultural_panel > 5 ### context: CREATE TABLE table_name_38 (total INTEGER, nominated_by_the_taoiseach VARCH...
### question: What is the total of the cultural and educational panel when the industrial and commercial panel is 0 and the agricultural panel is greater than 0? ### answer: SELECT SUM(cultural_and_educational_panel) FROM table_name_90 WHERE industrial_and_commercial_panel = 0 AND agricultural_panel > 0 ### context: CR...
### question: What is the total for the University of Dublin when 2 are nominated by Taoiseach and the industrial and commercial panel is greater than 0? ### answer: SELECT SUM(university_of_dublin) FROM table_name_71 WHERE nominated_by_the_taoiseach = 2 AND industrial_and_commercial_panel > 0 ### context: CREATE TABLE...
### question: What is the highest labour panel when the university of dublin is less than 2 and the agricultural panel is greater than 5? ### answer: SELECT MAX(labour_panel) FROM table_name_46 WHERE university_of_dublin < 2 AND agricultural_panel > 5 ### context: CREATE TABLE table_name_46 (labour_panel INTEGER, unive...
### question: What is the average for the university of dublin when the industrial and commercial panel is greater than 4 and the total of the national university of ireland is larger than 3? ### answer: SELECT AVG(university_of_dublin) FROM table_name_75 WHERE industrial_and_commercial_panel > 4 AND national_universit...
### question: When has a Site of tainan city and a Score of 8–6? ### answer: SELECT year FROM table_name_21 WHERE site = "tainan city" AND score = "8–6" ### context: CREATE TABLE table_name_21 (year VARCHAR, site VARCHAR, score VARCHAR)
### question: Which Score that has a Winning team of wei chuan dragons? ### answer: SELECT score FROM table_name_35 WHERE winning_team = "wei chuan dragons" ### context: CREATE TABLE table_name_35 (score VARCHAR, winning_team VARCHAR)
### question: What is the number of 2011 passengers in millions that have traveled a distance of 1271km? ### answer: SELECT 2011 AS _passengers__in_millions_ FROM table_name_37 WHERE distance = "1271km" ### context: CREATE TABLE table_name_37 (distance VARCHAR)
### question: What is the number of 2012 passengers in millions that have traveled a distance of 1075km? ### answer: SELECT COUNT(2012 AS _passengers__in_millions_) FROM table_name_56 WHERE distance = "1075km" ### context: CREATE TABLE table_name_56 (distance VARCHAR)
### question: What is SECOND, when SIXTH is Victoria? ### answer: SELECT second FROM table_name_18 WHERE sixth = "victoria" ### context: CREATE TABLE table_name_18 (second VARCHAR, sixth VARCHAR)
### question: What is SECOND, when FIRST is Western Australia? ### answer: SELECT second FROM table_name_64 WHERE first = "western australia" ### context: CREATE TABLE table_name_64 (second VARCHAR, first VARCHAR)
### question: How many losses does corinthians have when they scored over 22 points? ### answer: SELECT COUNT(lost) FROM table_name_21 WHERE team = "corinthians" AND points > 22 ### context: CREATE TABLE table_name_21 (lost VARCHAR, team VARCHAR, points VARCHAR)
### question: What was the termination type for the headphones with comfort pads and selling for $150? ### answer: SELECT termination FROM table_name_2 WHERE earpads = "comfort pads" AND us_msrp = "$150" ### context: CREATE TABLE table_name_2 (termination VARCHAR, earpads VARCHAR, us_msrp VARCHAR)
### question: What are the earpads for the headphones that are Reference class and have MSRP of $695? ### answer: SELECT earpads FROM table_name_88 WHERE headphone_class = "reference" AND us_msrp = "$695" ### context: CREATE TABLE table_name_88 (earpads VARCHAR, headphone_class VARCHAR, us_msrp VARCHAR)
### question: What earpads do the headphones with driver-matched dB over 0.05 and MSRP of $79 have? ### answer: SELECT earpads FROM table_name_49 WHERE driver_matched_db > 0.05 AND us_msrp = "$79" ### context: CREATE TABLE table_name_49 (earpads VARCHAR, driver_matched_db VARCHAR, us_msrp VARCHAR)
### question: What is the name of the race from round 1? ### answer: SELECT race_name FROM table_name_90 WHERE round = 1 ### context: CREATE TABLE table_name_90 (race_name VARCHAR, round VARCHAR)
### question: Which race was in Sydney, New South Wales? ### answer: SELECT race_name FROM table_name_37 WHERE city_state = "sydney, new south wales" ### context: CREATE TABLE table_name_37 (race_name VARCHAR, city_state VARCHAR)
### question: Which circuit had a round larger than 5? ### answer: SELECT circuit FROM table_name_30 WHERE round > 5 ### context: CREATE TABLE table_name_30 (circuit VARCHAR, round INTEGER)
### question: What is the title of the story published on October 19, 2011? ### answer: SELECT story FROM table_name_42 WHERE date = "october 19, 2011" ### context: CREATE TABLE table_name_42 (story VARCHAR, date VARCHAR)
### question: What Issue number was released on August 17, 2011? ### answer: SELECT issue FROM table_name_22 WHERE date = "august 17, 2011" ### context: CREATE TABLE table_name_22 (issue VARCHAR, date VARCHAR)
### question: What story title was included in Issue #8? ### answer: SELECT story FROM table_name_47 WHERE issue = "#8" ### context: CREATE TABLE table_name_47 (story VARCHAR, issue VARCHAR)
### question: Which young classification has general classification of Christian Vande Velde for Team Columbia and Mark Cavendish? ### answer: SELECT young_classification FROM table_name_26 WHERE general_classification = "christian vande velde" AND team_classification = "team columbia" AND sprint_classification = "mark...
### question: What mountains classification corresponds to Mark Cavendish and the Garmin-Chipotle-H30? ### answer: SELECT mountains_classification FROM table_name_80 WHERE general_classification = "mark cavendish" AND team_classification = "garmin-chipotle-h30" ### context: CREATE TABLE table_name_80 (mountains_classif...
### question: Who was the winner for a Sprint Classification and Young Classification to Mark Cavendish and Garmin-Chipotle-H30 for team? ### answer: SELECT stage__winner_ FROM table_name_42 WHERE sprint_classification = "mark cavendish" AND team_classification = "garmin-chipotle-h30" AND young_classification = "mark c...
### question: Which outcome has a partner named Mark Dickson, with the opponents of Hans Gildemeister Belus Prajoux? ### answer: SELECT outcome FROM table_name_66 WHERE partner = "mark dickson" AND opponents_in_the_final = "hans gildemeister belus prajoux" ### context: CREATE TABLE table_name_66 (outcome VARCHAR, partn...
### question: What is the Format with a Catalog that is vcrd 103? ### answer: SELECT format FROM table_name_78 WHERE catalog = "vcrd 103" ### context: CREATE TABLE table_name_78 (format VARCHAR, catalog VARCHAR)
### question: What is the Region with a Catalog that is vlmx 1087-3? ### answer: SELECT region FROM table_name_27 WHERE catalog = "vlmx 1087-3" ### context: CREATE TABLE table_name_27 (region VARCHAR, catalog VARCHAR)
### question: What is the Format with a Label of electropolis and a Date that is 2002? ### answer: SELECT format FROM table_name_90 WHERE label = "electropolis" AND date = "2002" ### context: CREATE TABLE table_name_90 (format VARCHAR, label VARCHAR, date VARCHAR)
### question: How many in the cultural and educational panel have a university of Dublin of 3 & A labor panel larger than 11? ### answer: SELECT COUNT(cultural_and_educational_panel) FROM table_name_41 WHERE university_of_dublin = 3 AND labour_panel > 11 ### context: CREATE TABLE table_name_41 (cultural_and_educational...
### question: What is Margin, when Match Date is Oct 17, 2007? ### answer: SELECT margin FROM table_name_86 WHERE match_date = "oct 17, 2007" ### context: CREATE TABLE table_name_86 (margin VARCHAR, match_date VARCHAR)
### question: What is Team (B), when S No is greater than 17? ### answer: SELECT team__b_ FROM table_name_10 WHERE s_no > 17 ### context: CREATE TABLE table_name_10 (team__b_ VARCHAR, s_no INTEGER)
### question: What is the total number of S No(s), when the Margin is 16 runs? ### answer: SELECT COUNT(s_no) FROM table_name_88 WHERE margin = "16 runs" ### context: CREATE TABLE table_name_88 (s_no VARCHAR, margin VARCHAR)
### question: What is the highest S No, when the Match Date is Nov 1, 2003? ### answer: SELECT MAX(s_no) FROM table_name_8 WHERE match_date = "nov 1, 2003" ### context: CREATE TABLE table_name_8 (s_no INTEGER, match_date VARCHAR)
### question: What is Team (B), when S No is less than 18, when Margin is 8 Wickets, and when Match Date is Oct 30, 1989? ### answer: SELECT team__b_ FROM table_name_31 WHERE s_no < 18 AND margin = "8 wickets" AND match_date = "oct 30, 1989" ### context: CREATE TABLE table_name_31 (team__b_ VARCHAR, match_date VARCHAR,...
### question: When was the last time, since December 14, 1986, that the attendance was lower than 47,096? ### answer: SELECT MAX(week) FROM table_name_51 WHERE date = "december 14, 1986" AND attendance < 47 OFFSET 096 ### context: CREATE TABLE table_name_51 (week INTEGER, date VARCHAR, attendance VARCHAR)
### question: What is the Surface of indoor/carpet Outcome on 13 October 1996 ### answer: SELECT outcome FROM table_name_33 WHERE surface = "indoor/carpet" AND date = "13 october 1996" ### context: CREATE TABLE table_name_33 (outcome VARCHAR, surface VARCHAR, date VARCHAR)
### question: What the Outcome for the Tournament of Johannesburg, South Africa ### answer: SELECT outcome FROM table_name_5 WHERE tournament = "johannesburg, south africa" ### context: CREATE TABLE table_name_5 (outcome VARCHAR, tournament VARCHAR)
### question: What is the launch site of the delta iv rocket? ### answer: SELECT launch_site FROM table_name_26 WHERE rocket = "delta iv" ### context: CREATE TABLE table_name_26 (launch_site VARCHAR, rocket VARCHAR)
### question: What is the type of the gps iif-10 satellite with an unknown date? ### answer: SELECT type FROM table_name_13 WHERE date = "unknown" AND satellite = "gps iif-10" ### context: CREATE TABLE table_name_13 (type VARCHAR, date VARCHAR, satellite VARCHAR)
### question: What is the type of the gps iif-10 satellite? ### answer: SELECT type FROM table_name_38 WHERE satellite = "gps iif-10" ### context: CREATE TABLE table_name_38 (type VARCHAR, satellite VARCHAR)
### question: What is the launch site of the delta iv rocket with an unknown date and a gps iif-10 satellite? ### answer: SELECT launch_site FROM table_name_86 WHERE date = "unknown" AND rocket = "delta iv" AND satellite = "gps iif-10" ### context: CREATE TABLE table_name_86 (launch_site VARCHAR, satellite VARCHAR, dat...
### question: What is the date of the gps iif-7 satellite? ### answer: SELECT date FROM table_name_48 WHERE satellite = "gps iif-7" ### context: CREATE TABLE table_name_48 (date VARCHAR, satellite VARCHAR)
### question: What was the finish for 1992? ### answer: SELECT finish FROM table_name_89 WHERE year = 1992 ### context: CREATE TABLE table_name_89 (finish VARCHAR, year VARCHAR)
### question: What was Andretti's finish for the year he had a Buick engine and started 16th? ### answer: SELECT finish FROM table_name_50 WHERE engine = "buick" AND start = "16th" ### context: CREATE TABLE table_name_50 (finish VARCHAR, engine VARCHAR, start VARCHAR)
### question: What was Andretti's finish the year he started 16th with a Buick engine? ### answer: SELECT finish FROM table_name_62 WHERE engine = "buick" AND start = "16th" ### context: CREATE TABLE table_name_62 (finish VARCHAR, engine VARCHAR, start VARCHAR)
### question: Which Drawn has a Points of 6, and a Against larger than 16? ### answer: SELECT SUM(drawn) FROM table_name_17 WHERE points = 6 AND against > 16 ### context: CREATE TABLE table_name_17 (drawn INTEGER, points VARCHAR, against VARCHAR)
### question: Which Points has a Difference of 3, and a Played smaller than 10? ### answer: SELECT AVG(points) FROM table_name_80 WHERE difference = "3" AND played < 10 ### context: CREATE TABLE table_name_80 (points INTEGER, difference VARCHAR, played VARCHAR)
### question: Which Points has a Team of são paulo athletic, and a Position larger than 5? ### answer: SELECT SUM(points) FROM table_name_15 WHERE team = "são paulo athletic" AND position > 5 ### context: CREATE TABLE table_name_15 (points INTEGER, team VARCHAR, position VARCHAR)
### question: Which Position has a Played larger than 9, and a Points smaller than 11, and a Drawn smaller than 0? ### answer: SELECT MIN(position) FROM table_name_95 WHERE played > 9 AND points < 11 AND drawn < 0 ### context: CREATE TABLE table_name_95 (position INTEGER, drawn VARCHAR, played VARCHAR, points VARCHAR)
### question: What track has a catalogue of 47-9465? ### answer: SELECT SUM(track) FROM table_name_21 WHERE catalogue = "47-9465" ### context: CREATE TABLE table_name_21 (track INTEGER, catalogue VARCHAR)
### question: What track has a time of 2:30? ### answer: SELECT track FROM table_name_23 WHERE time = "2:30" ### context: CREATE TABLE table_name_23 (track VARCHAR, time VARCHAR)
### question: What catalogue was recorded on 9/10/67 and a release date of 1/9/68? ### answer: SELECT catalogue FROM table_name_77 WHERE recorded = "9/10/67" AND release_date = "1/9/68" ### context: CREATE TABLE table_name_77 (catalogue VARCHAR, recorded VARCHAR, release_date VARCHAR)
### question: Where does Norway rank in total medals among countries with fewer than 7 bronzes? ### answer: SELECT rank FROM table_name_96 WHERE bronze < 7 AND nation = "norway" ### context: CREATE TABLE table_name_96 (rank VARCHAR, bronze VARCHAR, nation VARCHAR)
### question: What is the Inns of 435 Runs? ### answer: SELECT inns FROM table_name_80 WHERE runs = 435 ### context: CREATE TABLE table_name_80 (inns VARCHAR, runs VARCHAR)
### question: What is the average 1st place with a Rank that is larger than 10? ### answer: SELECT AVG(1 AS st_place) FROM table_name_26 WHERE rank > 10 ### context: CREATE TABLE table_name_26 (rank INTEGER)
### question: What week was the Runner-up Lori McNeil? ### answer: SELECT week_of FROM table_name_70 WHERE runner_up = "lori mcneil" ### context: CREATE TABLE table_name_70 (week_of VARCHAR, runner_up VARCHAR)