answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT position FROM table_name_38 WHERE team = "sahara force india f1 team" AND points = "46" | CREATE TABLE table_name_38 (position VARCHAR, team VARCHAR, points VARCHAR) | What Position is Team Sahara Force india f1 team with 46 Points? |
SELECT poles FROM table_name_63 WHERE position = "4th" | CREATE TABLE table_name_63 (poles VARCHAR, position VARCHAR) | Which Poles have a position of 4th? |
SELECT f_laps FROM table_name_77 WHERE points = "27" | CREATE TABLE table_name_77 (f_laps VARCHAR, points VARCHAR) | Which F/Laps have 27 Points? |
SELECT country FROM table_name_71 WHERE name = "sba towers tower hayneville" | CREATE TABLE table_name_71 (country VARCHAR, name VARCHAR) | What country has the SBA Towers Tower Hayneville? |
SELECT structure_type FROM table_name_17 WHERE name = "american tower christmas" | CREATE TABLE table_name_17 (structure_type VARCHAR, name VARCHAR) | What type of structure is there at the American Tower Christmas? |
SELECT name FROM table_name_53 WHERE town = "egypt, arkansas" | CREATE TABLE table_name_53 (name VARCHAR, town VARCHAR) | What's the name of the structure at Egypt, Arkansas? |
SELECT country FROM table_name_83 WHERE date = 1991 AND birth_date = "1976-07-23" | CREATE TABLE table_name_83 (country VARCHAR, date VARCHAR, birth_date VARCHAR) | What country was the woman from who was born 1976-07-23 and became a grandmaster in 1991? |
SELECT MIN(points) FROM table_name_41 WHERE team = "sportivo luqueño" AND wins > 1 | CREATE TABLE table_name_41 (points INTEGER, team VARCHAR, wins VARCHAR) | Name the Points which has a Team of sportivo luqueño, and Wins larger than 1? |
SELECT MIN(wins) FROM table_name_80 WHERE points < 10 AND losses < 3 AND scored = 11 | CREATE TABLE table_name_80 (wins INTEGER, scored VARCHAR, points VARCHAR, losses VARCHAR) | Name the Wins which has Points smaller than 10, Losses smaller than 3, and a Scored of 11? |
SELECT MAX(conceded) FROM table_name_4 WHERE played < 5 | CREATE TABLE table_name_4 (conceded INTEGER, played INTEGER) | Please name the highest Conceded which has a Played smaller than 5? |
SELECT MAX(losses) FROM table_name_57 WHERE played < 5 | CREATE TABLE table_name_57 (losses INTEGER, played INTEGER) | Please name the Losses that has a Played smaller than 5? |
SELECT COUNT(scored) FROM table_name_28 WHERE position > 6 | CREATE TABLE table_name_28 (scored VARCHAR, position INTEGER) | Name the Scored which has a Position larger than 6? |
SELECT MIN(week) FROM table_name_15 WHERE opponent = "cincinnati bengals" | CREATE TABLE table_name_15 (week INTEGER, opponent VARCHAR) | What is the earliest week with an opponent of cincinnati bengals? |
SELECT SUM(week) FROM table_name_55 WHERE date = "october 30, 1994" | CREATE TABLE table_name_55 (week INTEGER, date VARCHAR) | What is the sum for the week with the date october 30, 1994? |
SELECT date FROM table_name_18 WHERE week < 9 AND opponent = "dallas cowboys" | CREATE TABLE table_name_18 (date VARCHAR, week VARCHAR, opponent VARCHAR) | What is the date for a week before 9, and a opponent of dallas cowboys? |
SELECT MAX(week) FROM table_name_18 WHERE opponent = "washington redskins" | CREATE TABLE table_name_18 (week INTEGER, opponent VARCHAR) | What is the biggest week with an opponent of washington redskins? |
SELECT attendance FROM table_name_58 WHERE week > 3 AND opponent = "philadelphia eagles" | CREATE TABLE table_name_58 (attendance VARCHAR, week VARCHAR, opponent VARCHAR) | What was the attendance for a week larger than 3, and an opponent of philadelphia eagles? |
SELECT res FROM table_name_96 WHERE opponent = "jeff monson" | CREATE TABLE table_name_96 (res VARCHAR, opponent VARCHAR) | What is the result of the match with Jeff Monson as opponent? |
SELECT round FROM table_name_78 WHERE opponent = "jason fairn" | CREATE TABLE table_name_78 (round VARCHAR, opponent VARCHAR) | How many rounds was the match against Jason Fairn? |
SELECT method FROM table_name_61 WHERE round = "1" AND res = "loss" AND opponent = "carlos newton" | CREATE TABLE table_name_61 (method VARCHAR, opponent VARCHAR, round VARCHAR, res VARCHAR) | What is the method of the match where there was a loss to Carlos Newton in round 1? |
SELECT high_points FROM table_name_12 WHERE game > 59 | CREATE TABLE table_name_12 (high_points VARCHAR, game INTEGER) | Who had the most points in games over 59? |
SELECT score FROM table_name_97 WHERE team = "san antonio" | CREATE TABLE table_name_97 (score VARCHAR, team VARCHAR) | What was the score for the game against San Antonio? |
SELECT high_assists FROM table_name_57 WHERE team = "indiana" | CREATE TABLE table_name_57 (high_assists VARCHAR, team VARCHAR) | Who had the most assists in the game against Indiana? |
SELECT railway FROM table_name_16 WHERE objectnumber = "1975-7023" | CREATE TABLE table_name_16 (railway VARCHAR, objectnumber VARCHAR) | What is the UK Railway with an ObjectNumber of 1975-7023? |
SELECT replaced_by FROM table_name_30 WHERE position_in_table = "11th" AND manner_of_departure = "resigned" | CREATE TABLE table_name_30 (replaced_by VARCHAR, position_in_table VARCHAR, manner_of_departure VARCHAR) | Who was the manager that was positioned 11th in table and resigned in departure? |
SELECT MIN(tournaments_played) FROM table_name_62 WHERE year = 1998 | CREATE TABLE table_name_62 (tournaments_played INTEGER, year VARCHAR) | what is the least tournaments played when the year is 1998? |
SELECT SUM(year) FROM table_name_89 WHERE tournaments_played < 2 AND cuts_made = 1 AND earnings___$__ < 10 OFFSET 547 | CREATE TABLE table_name_89 (year INTEGER, earnings___$__ VARCHAR, tournaments_played VARCHAR, cuts_made VARCHAR) | what is the year when tournaments played is less than 2, cuts made is 1 and earnings ($) is less than 10,547? |
SELECT best_finish FROM table_name_41 WHERE money_list_rank = "n/a" AND earnings___$__ > 0 AND cuts_made > 1 | CREATE TABLE table_name_41 (best_finish VARCHAR, cuts_made VARCHAR, money_list_rank VARCHAR, earnings___$__ VARCHAR) | what is the best finish when money list rank is n/a, earnings ($) is more than 0 and cuts made is more than 1? |
SELECT COUNT(tournaments_played) FROM table_name_97 WHERE money_list_rank = "221" AND cuts_made > 2 | CREATE TABLE table_name_97 (tournaments_played VARCHAR, money_list_rank VARCHAR, cuts_made VARCHAR) | how many times is the money list rank 221 and cuts more than 2? |
SELECT MIN(year) FROM table_name_82 WHERE best_finish = "t-65" | CREATE TABLE table_name_82 (year INTEGER, best_finish VARCHAR) | what is the earliest year with the best finish t-65? |
SELECT AVG(tournaments_played) FROM table_name_63 WHERE cuts_made = 14 | CREATE TABLE table_name_63 (tournaments_played INTEGER, cuts_made VARCHAR) | what is the average tournaments played when cuts made is 14? |
SELECT MIN(took_office) FROM table_name_2 WHERE district = 22 | CREATE TABLE table_name_2 (took_office INTEGER, district VARCHAR) | What is the earliest date of taking office for district 22? |
SELECT SUM(district) FROM table_name_37 WHERE party = "democratic" AND home_town = "roby" | CREATE TABLE table_name_37 (district INTEGER, party VARCHAR, home_town VARCHAR) | What district has a democratic leader from Roby? |
SELECT MAX(district) FROM table_name_72 WHERE party = "democratic" AND senator = "steve carriker" AND took_office > 1988 | CREATE TABLE table_name_72 (district INTEGER, took_office VARCHAR, party VARCHAR, senator VARCHAR) | What is the district where Steve Carriker is the Democratic Senator and he took office later than 1988? |
SELECT COUNT(series_number) FROM table_name_24 WHERE original_air_date < 1999 AND number_of_episodes > 7 AND dvd_region_1_release_date = "16 april 2013" | CREATE TABLE table_name_24 (series_number VARCHAR, dvd_region_1_release_date VARCHAR, original_air_date VARCHAR, number_of_episodes VARCHAR) | How many series originally aired before 1999 with more than 7 episodes and a DVD Region 1 release date of 16 april 2013? |
SELECT MAX(original_air_date) FROM table_name_17 WHERE dvd_region_2_release_date = "23 april 2012" AND number_of_episodes > 10 | CREATE TABLE table_name_17 (original_air_date INTEGER, dvd_region_2_release_date VARCHAR, number_of_episodes VARCHAR) | What's the latest original air date with more than 10 episodes and a DVD Region 2 release date of 23 april 2012? |
SELECT AVG(original_air_date) FROM table_name_20 WHERE series_number = 10 | CREATE TABLE table_name_20 (original_air_date INTEGER, series_number VARCHAR) | What was the original air date of series number 10? |
SELECT SUM(number_of_episodes) FROM table_name_99 WHERE original_air_date > 1991 AND series_number < 21 AND dvd_region_2_release_date = "26 march 2012" | CREATE TABLE table_name_99 (number_of_episodes INTEGER, dvd_region_2_release_date VARCHAR, original_air_date VARCHAR, series_number VARCHAR) | What's the sum of the number of episodes that originally aired after 1991 with a series number smaller than 21 and a DVD Region 2 release date of 26 march 2012? |
SELECT MIN(series_number) FROM table_name_69 WHERE original_air_date < 2009 AND dvd_region_2_release_date = "26 july 2004" AND number_of_episodes > 7 | CREATE TABLE table_name_69 (series_number INTEGER, number_of_episodes VARCHAR, original_air_date VARCHAR, dvd_region_2_release_date VARCHAR) | What's the lowest series number that originally aired before 2009 with more than 7 episodes and had a DVD Region 2 release date of 26 july 2004? |
SELECT COUNT(bronze) FROM table_name_15 WHERE silver > 2 | CREATE TABLE table_name_15 (bronze VARCHAR, silver INTEGER) | What is the total of bronze that has more silvers than 2? |
SELECT COUNT(gold) FROM table_name_64 WHERE bronze > 1 AND total > 4 | CREATE TABLE table_name_64 (gold VARCHAR, bronze VARCHAR, total VARCHAR) | What is the total of Golds with more bronzes than 1 and totaled larger than 4? |
SELECT MIN(total) FROM table_name_82 WHERE bronze > 1 AND silver > 2 | CREATE TABLE table_name_82 (total INTEGER, bronze VARCHAR, silver VARCHAR) | What is the least total that had more Bronzes than 1 and more silvers than 2? |
SELECT MIN(total) FROM table_name_81 WHERE gold < 2 AND rank = 4 AND bronze < 1 | CREATE TABLE table_name_81 (total INTEGER, bronze VARCHAR, gold VARCHAR, rank VARCHAR) | What is the least total that has fewer golds than 2, a higher rank than 4 and fewer bronzes than 1? |
SELECT MIN(bronze) FROM table_name_79 WHERE rank = 2 AND silver < 0 | CREATE TABLE table_name_79 (bronze INTEGER, rank VARCHAR, silver VARCHAR) | What is the lest amount of bronzes that ranked 2 and has less silvers than 0? |
SELECT COUNT(total) FROM table_name_48 WHERE bronze > 13 AND rank = "8" AND silver < 11 | CREATE TABLE table_name_48 (total VARCHAR, silver VARCHAR, bronze VARCHAR, rank VARCHAR) | How many Total(s) are there, when the number of Bronze is greater than 13, when the Rank is 8, and when the number of Silver is less than 11? |
SELECT nation FROM table_name_26 WHERE bronze < 17 AND gold < 16 | CREATE TABLE table_name_26 (nation VARCHAR, bronze VARCHAR, gold VARCHAR) | What is the Nation, when the number of Bronze is less than 17, and when the number of Gold is less than 16? |
SELECT MAX(silver) FROM table_name_50 WHERE nation = "japan (jpn)" AND total > 37 | CREATE TABLE table_name_50 (silver INTEGER, nation VARCHAR, total VARCHAR) | What is the highest number of Silver, when the Nation is Japan (JPN), and when the Total is greater than 37? |
SELECT MIN(gold) FROM table_name_97 WHERE bronze < 36 AND rank = "2" AND silver < 37 | CREATE TABLE table_name_97 (gold INTEGER, silver VARCHAR, bronze VARCHAR, rank VARCHAR) | What is the lowest number of Gold, when the number of Bronze is less than 36, when the Rank is 2, and when Silver is less than 37? |
SELECT res FROM table_name_83 WHERE event = "ft 6 - full throttle 6" | CREATE TABLE table_name_83 (res VARCHAR, event VARCHAR) | What is Res., when Event is "FT 6 - Full Throttle 6"? |
SELECT opponent FROM table_name_17 WHERE event = "iscf - southeast championships" | CREATE TABLE table_name_17 (opponent VARCHAR, event VARCHAR) | What is Opponent, when Event is "ISCF - Southeast Championships"? |
SELECT event FROM table_name_13 WHERE record = "3-0" | CREATE TABLE table_name_13 (event VARCHAR, record VARCHAR) | What is Event, when Record is "3-0"? |
SELECT date FROM table_name_42 WHERE opponents = "chelsea" AND league_position = "14th" | CREATE TABLE table_name_42 (date VARCHAR, opponents VARCHAR, league_position VARCHAR) | What is the date of the game against Chelsea when the league position is 14th? |
SELECT method FROM table_name_85 WHERE time = "0:46" | CREATE TABLE table_name_85 (method VARCHAR, time VARCHAR) | Which method had a time of 0:46? |
SELECT round FROM table_name_91 WHERE opponent = "brandon bledsoe" | CREATE TABLE table_name_91 (round VARCHAR, opponent VARCHAR) | In the fight against Brandon Bledsoe, how many rounds did the fight last? |
SELECT method FROM table_name_99 WHERE event = "ufc fight night: teixeira vs. bader" | CREATE TABLE table_name_99 (method VARCHAR, event VARCHAR) | What methos did Keith Wisniewski use in the ufc fight night: teixeira vs. bader? |
SELECT vmax FROM table_name_45 WHERE capacity = "1.556 cc" | CREATE TABLE table_name_45 (vmax VARCHAR, capacity VARCHAR) | What was the maximum speed of the car with 1.556 cc capacity? |
SELECT vmax FROM table_name_60 WHERE cylinder = "straight-4" AND capacity = "1.466 cc" AND type = "r 150" | CREATE TABLE table_name_60 (vmax VARCHAR, type VARCHAR, cylinder VARCHAR, capacity VARCHAR) | What was the maximum speed for straight-4, 1.466 cc Type r 150? |
SELECT vmax FROM table_name_78 WHERE type = "p4-1 (24/36 ps)" | CREATE TABLE table_name_78 (vmax VARCHAR, type VARCHAR) | What was the maximum speed for the P4-1 (24/36 ps)? |
SELECT country FROM table_name_17 WHERE player = "jack nicklaus" | CREATE TABLE table_name_17 (country VARCHAR, player VARCHAR) | What country is Jack Nicklaus from? |
SELECT to_par FROM table_name_37 WHERE place = "t7" AND player = "bill britton" | CREATE TABLE table_name_37 (to_par VARCHAR, place VARCHAR, player VARCHAR) | What was the To par for bill britton when he placed t7? |
SELECT to_par FROM table_name_71 WHERE player = "jack nicklaus" | CREATE TABLE table_name_71 (to_par VARCHAR, player VARCHAR) | What was the To par of Jack Nicklaus? |
SELECT country FROM table_name_39 WHERE money___$__ = "45,000" | CREATE TABLE table_name_39 (country VARCHAR, money___$__ VARCHAR) | What country was the golfer from who had a money amount of 45,000? |
SELECT to_par FROM table_name_17 WHERE country = "united states" AND player = "fred couples" | CREATE TABLE table_name_17 (to_par VARCHAR, country VARCHAR, player VARCHAR) | What was the To par for United States golfer fred couples? |
SELECT fate FROM table_name_97 WHERE nationality = "french" AND ship = "pierre lott" | CREATE TABLE table_name_97 (fate VARCHAR, nationality VARCHAR, ship VARCHAR) | what is the fate when the nationality is french and the ship is pierre lott? |
SELECT ship FROM table_name_87 WHERE date = "28.1.1915" | CREATE TABLE table_name_87 (ship VARCHAR, date VARCHAR) | what is the ship with the date of 28.1.1915? |
SELECT nationality FROM table_name_64 WHERE ship = "willerby" | CREATE TABLE table_name_64 (nationality VARCHAR, ship VARCHAR) | what is the nationality when the ship is willerby? |
SELECT MIN(tonnage_grt) FROM table_name_84 WHERE nationality = "british" AND ship = "kidalton" | CREATE TABLE table_name_84 (tonnage_grt INTEGER, nationality VARCHAR, ship VARCHAR) | what is the least tonnage grt when the nationality is british and the ship is kidalton? |
SELECT season FROM table_name_99 WHERE team_2 = "hanoi acb" | CREATE TABLE table_name_99 (season VARCHAR, team_2 VARCHAR) | Can you tell me the Season that has the Team 2 of hanoi acb? |
SELECT team_2 FROM table_name_27 WHERE venue = "binh duong stadium, vietnam" | CREATE TABLE table_name_27 (team_2 VARCHAR, venue VARCHAR) | Can you tell me the Team 2 that has the Venue of binh duong stadium, vietnam? |
SELECT COUNT(season) FROM table_name_27 WHERE team_2 = "chonburi" AND score = "0:1" | CREATE TABLE table_name_27 (season VARCHAR, team_2 VARCHAR, score VARCHAR) | Can you tell me the total number of Season that has the Team 2 of chonburi, and the Score of 0:1? |
SELECT score FROM table_name_43 WHERE place = "t6" AND player = "raymond floyd" | CREATE TABLE table_name_43 (score VARCHAR, place VARCHAR, player VARCHAR) | Which Score has a Place of t6, and a Player of raymond floyd? |
SELECT COUNT(to_par) FROM table_name_47 WHERE place = "t1" AND score = 70 - 70 - 71 - 71 = 282 | CREATE TABLE table_name_47 (to_par VARCHAR, place VARCHAR, score VARCHAR) | How much To par has a Place of t1, and a Score of 70-70-71-71=282? |
SELECT SUM(to_par) FROM table_name_56 WHERE player = "tony lema" | CREATE TABLE table_name_56 (to_par INTEGER, player VARCHAR) | What is tony lema's to par? |
SELECT score FROM table_name_25 WHERE player = "gary player" | CREATE TABLE table_name_25 (score VARCHAR, player VARCHAR) | What was gary player's score? |
SELECT COUNT(year) FROM table_name_56 WHERE class = "piw" AND program_title = "the adventures of..." AND score > 94.6 | CREATE TABLE table_name_56 (year VARCHAR, score VARCHAR, class VARCHAR, program_title VARCHAR) | What was the total number for the PIW Class' The Adventures Of... and had a score bigger than 94.6? |
SELECT class FROM table_name_33 WHERE score = 95.1 | CREATE TABLE table_name_33 (class VARCHAR, score VARCHAR) | What class had a score of 95.1? |
SELECT MIN(score) FROM table_name_89 WHERE year < 2008 AND placement = "3rd" | CREATE TABLE table_name_89 (score INTEGER, year VARCHAR, placement VARCHAR) | What is the lowest score for a year before 2008 and had 3rd place? |
SELECT MAX(year) FROM table_name_50 WHERE program_title = "taboo" AND score < 96.125 | CREATE TABLE table_name_50 (year INTEGER, program_title VARCHAR, score VARCHAR) | What was the latest year placement for Taboo with a score smaller than 96.125? |
SELECT winning_score FROM table_name_87 WHERE year < 1959 AND runner_s__up = "jackie pung" | CREATE TABLE table_name_87 (winning_score VARCHAR, year VARCHAR, runner_s__up VARCHAR) | What is the winning score before 1959, with runner-up Jackie Pung? |
SELECT directed_by FROM table_name_27 WHERE original_air_date = "april 29, 2000" | CREATE TABLE table_name_27 (directed_by VARCHAR, original_air_date VARCHAR) | Which Directed by has an Original air date of april 29, 2000? |
SELECT result FROM table_name_68 WHERE date = "september 10, 2000" | CREATE TABLE table_name_68 (result VARCHAR, date VARCHAR) | What was the result of the game from September 10, 2000? |
SELECT ceremony FROM table_name_91 WHERE date = "may 15, 1965" | CREATE TABLE table_name_91 (ceremony VARCHAR, date VARCHAR) | Which award ceremony took place on May 15, 1965? |
SELECT film_of_the_year FROM table_name_2 WHERE date = "may 8, 1964" | CREATE TABLE table_name_2 (film_of_the_year VARCHAR, date VARCHAR) | Which movie was awarded Film of the Year on May 8, 1964? |
SELECT MAX(dcsf_number) FROM table_name_52 WHERE name = "field" AND ofsted_number > 117160 | CREATE TABLE table_name_52 (dcsf_number INTEGER, name VARCHAR, ofsted_number VARCHAR) | Can you tell me the highest DCSF number that has the Name of field, and the Ofsted number larger than 117160? |
SELECT SUM(intake) FROM table_name_54 WHERE faith = "rc" AND dcsf_number > 2428 | CREATE TABLE table_name_54 (intake INTEGER, faith VARCHAR, dcsf_number VARCHAR) | Can you tell me the sum of Intake that has the Faith of rc, and the DCSF number larger than 2428? |
SELECT name FROM table_name_11 WHERE dcsf_number = 2117 | CREATE TABLE table_name_11 (name VARCHAR, dcsf_number VARCHAR) | Can you tell me the Name that has the DCSF number of 2117? |
SELECT MAX(ofsted_number) FROM table_name_36 WHERE type = "infants" AND intake > 60 | CREATE TABLE table_name_36 (ofsted_number INTEGER, type VARCHAR, intake VARCHAR) | Can you tell me the highest Ofsted number that has the Type of infants, and the Intake larger than 60? |
SELECT COUNT(week) FROM table_name_81 WHERE opponent = "at chicago bears" AND attendance > 49 OFFSET 070 | CREATE TABLE table_name_81 (week VARCHAR, opponent VARCHAR, attendance VARCHAR) | What is the total number of Week, when Opponent is At Chicago Bears, and when Attendance is greater than 49,070? |
SELECT date FROM table_name_45 WHERE week = 11 | CREATE TABLE table_name_45 (date VARCHAR, week VARCHAR) | What is Date, when Week is 11? |
SELECT MIN(week) FROM table_name_27 WHERE attendance = 38 OFFSET 624 | CREATE TABLE table_name_27 (week INTEGER, attendance VARCHAR) | What is the lowest Week, when Attendance is 38,624? |
SELECT SUM(international_mail) FROM table_name_35 WHERE change = "+35,7%" AND year > 2008 | CREATE TABLE table_name_35 (international_mail INTEGER, change VARCHAR, year VARCHAR) | How much international mail has a change of +35,7% later than 2008? |
SELECT MAX(domestic_freight) FROM table_name_23 WHERE change = "+9,8%" AND total_freight_and_mail > 3 OFFSET 278 | CREATE TABLE table_name_23 (domestic_freight INTEGER, change VARCHAR, total_freight_and_mail VARCHAR) | What is the most domestic freight with a change of +9,8% and a total freight and mail of more than 3,278? |
SELECT COUNT(international_freight) FROM table_name_75 WHERE change = "+0,2%" AND international_mail > 0 | CREATE TABLE table_name_75 (international_freight VARCHAR, change VARCHAR, international_mail VARCHAR) | How much international freight has a change of +0,2% with more than 0 international mail? |
SELECT MAX(international_mail) FROM table_name_45 WHERE change = "+0,2%" AND domestic_mail < 0 | CREATE TABLE table_name_45 (international_mail INTEGER, change VARCHAR, domestic_mail VARCHAR) | What is the international mail with the highest number that has a change of +0,2% and less than 0 domestic mail? |
SELECT MIN(international_mail) FROM table_name_82 WHERE domestic_freight < 72 AND domestic_mail = 0 AND year < 2012 AND total_freight_and_mail > 4 OFFSET 695 | CREATE TABLE table_name_82 (international_mail INTEGER, total_freight_and_mail VARCHAR, year VARCHAR, domestic_freight VARCHAR, domestic_mail VARCHAR) | What is the international mail with the lowest number to have less than 72 domestic freight, 0 domestic mail later than 2012 with total freight and mail more than 4,695? |
SELECT venue FROM table_name_99 WHERE date = "16 january 1996" | CREATE TABLE table_name_99 (venue VARCHAR, date VARCHAR) | what is the venue when the date is 16 january 1996? |
SELECT competition FROM table_name_14 WHERE date = "16 january 1996" | CREATE TABLE table_name_14 (competition VARCHAR, date VARCHAR) | what is the competition when the date is 16 january 1996? |
SELECT record FROM table_name_62 WHERE date = "february 11" | CREATE TABLE table_name_62 (record VARCHAR, date VARCHAR) | WHAT IS THE RECORD FOR FEBRUARY 11? |
SELECT award FROM table_name_32 WHERE year < 2001 | CREATE TABLE table_name_32 (award VARCHAR, year INTEGER) | What was the award before 2001? |
SELECT MAX(week) FROM table_name_66 WHERE location = "molson stadium" | CREATE TABLE table_name_66 (week INTEGER, location VARCHAR) | What is the highest week for a game that was located at the Molson Stadium? |
Subsets and Splits