training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_42 (laps INTEGER, constructor VARCHAR, time_retired VARCHAR) ###human: What is the high lap total for tyrrell - yamaha, and a Time/Retired of + 1 lap? ###assistant: SELECT MAX(laps) FROM table_name_42 WHERE constructor = "tyrrell - yamaha" AND time_retired = "+ 1 lap"
###context:CREATE TABLE table_name_12 (laps INTEGER, grid VARCHAR) ###human: What is the low lap total for a grid of 14? ###assistant: SELECT MIN(laps) FROM table_name_12 WHERE grid = 14
###context:CREATE TABLE table_name_54 (laps VARCHAR, driver VARCHAR, grid VARCHAR) ###human: How many laps for martin brundle with a grid of less than 10? ###assistant: SELECT COUNT(laps) FROM table_name_54 WHERE driver = "martin brundle" AND grid < 10
###context:CREATE TABLE table_name_72 (points INTEGER, domestic_cup VARCHAR) ###human: What was the average points in the quarterfinals domestic cup? ###assistant: SELECT AVG(points) FROM table_name_72 WHERE domestic_cup = "quarterfinals"
###context:CREATE TABLE table_name_22 (level VARCHAR, domestic_cup VARCHAR) ###human: Which level is quarterfinals domestic cup? ###assistant: SELECT level FROM table_name_22 WHERE domestic_cup = "quarterfinals"
###context:CREATE TABLE table_name_78 (format VARCHAR, catalogue VARCHAR) ###human: What format is catalogue 148615 in? ###assistant: SELECT format FROM table_name_78 WHERE catalogue = "148615"
###context:CREATE TABLE table_name_7 (region VARCHAR, date VARCHAR) ###human: Which region was on June 8, 2004? ###assistant: SELECT region FROM table_name_7 WHERE date = "june 8, 2004"
###context:CREATE TABLE table_name_94 (format VARCHAR, catalogue VARCHAR) ###human: What format is catalogue WPCR13504 in? ###assistant: SELECT format FROM table_name_94 WHERE catalogue = "wpcr13504"
###context:CREATE TABLE table_name_79 (format VARCHAR, catalogue VARCHAR, region VARCHAR) ###human: What format is the Catalogue 9362486152 from the region of Australia in? ###assistant: SELECT format FROM table_name_79 WHERE catalogue = "9362486152" AND region = "australia"
###context:CREATE TABLE table_name_50 (region VARCHAR, catalogue VARCHAR, date VARCHAR) ###human: What region is the catalogue number 9362486152 that was from September 3, 2004 from? ###assistant: SELECT region FROM table_name_50 WHERE catalogue = "9362486152" AND date = "september 3, 2004"
###context:CREATE TABLE table_name_88 (region VARCHAR, date VARCHAR) ###human: What region is the catalogue released on June 8, 2004 from? ###assistant: SELECT region FROM table_name_88 WHERE date = "june 8, 2004"
###context:CREATE TABLE table_name_87 (date VARCHAR, home_team VARCHAR) ###human: What day is carlton the home side? ###assistant: SELECT date FROM table_name_87 WHERE home_team = "carlton"
###context:CREATE TABLE table_name_23 (home_team VARCHAR, away_team VARCHAR) ###human: What is the home team's score when south melbourne is away? ###assistant: SELECT home_team AS score FROM table_name_23 WHERE away_team = "south melbourne"
###context:CREATE TABLE table_name_17 (listed VARCHAR, cerclis_id VARCHAR) ###human: Tell me the listed when cerclis id is msd004006995 ###assistant: SELECT listed FROM table_name_17 WHERE cerclis_id = "msd004006995"
###context:CREATE TABLE table_name_2 (rank__timeslot_ INTEGER, rank__night_ VARCHAR, rating VARCHAR) ###human: What is the timeslor rank for the episode with larger than 2.9 rating, rating/share of 2.6/8 and rank for the night higher than 5? ###assistant: SELECT AVG(rank__timeslot_) FROM table_name_2 WHERE rating > 2.9 AND rating / SHARE(18 - 49) = 2.6 / 8 AND rank__night_ > 5
###context:CREATE TABLE table_name_27 (rating INTEGER, episode VARCHAR, rank__night_ VARCHAR, rank__timeslot_ VARCHAR) ###human: What is the smallest rating with nightly rank smaller than 7, timeslot rank smaller than 5 and eposide after episode 6? ###assistant: SELECT MIN(rating) FROM table_name_27 WHERE rank__night_ < 7 AND rank__timeslot_ < 5 AND episode > 6
###context:CREATE TABLE table_name_91 (rank__night_ INTEGER, episode VARCHAR, rating VARCHAR) ###human: What is the lowest nightly rank for an episode after episode 1 with a rating/share of 2.6/8? ###assistant: SELECT MIN(rank__night_) FROM table_name_91 WHERE rating / SHARE(18 - 49) = 2.6 / 8 AND episode > 1
###context:CREATE TABLE table_name_97 (rank__timeslot_ INTEGER, rating VARCHAR, share VARCHAR) ###human: What is the timeslot rank when the rating is smaller than 2.6 and the share is more than 4? ###assistant: SELECT AVG(rank__timeslot_) FROM table_name_97 WHERE rating < 2.6 AND share > 4
###context:CREATE TABLE table_name_29 (rank__timeslot_ INTEGER, rating INTEGER) ###human: What is the smallest timeslot rank when the rating is smaller than 2.6? ###assistant: SELECT MIN(rank__timeslot_) FROM table_name_29 WHERE rating < 2.6
###context:CREATE TABLE table_name_24 (away_team VARCHAR, venue VARCHAR) ###human: What away team played at Kardinia Park? ###assistant: SELECT away_team FROM table_name_24 WHERE venue = "kardinia park"
###context:CREATE TABLE table_name_82 (away_team VARCHAR, home_team VARCHAR) ###human: What team played Hawthorn? ###assistant: SELECT away_team FROM table_name_82 WHERE home_team = "hawthorn"
###context:CREATE TABLE table_name_19 (wins INTEGER, goals_against INTEGER) ###human: What is the total wins with less than 21 goals taken? ###assistant: SELECT SUM(wins) FROM table_name_19 WHERE goals_against < 21
###context:CREATE TABLE table_name_96 (date VARCHAR, game VARCHAR) ###human: What is the date of game 59? ###assistant: SELECT date FROM table_name_96 WHERE game = 59
###context:CREATE TABLE table_name_16 (player VARCHAR, position VARCHAR, caps VARCHAR) ###human: What player is a lock with 1 cap? ###assistant: SELECT player FROM table_name_16 WHERE position = "lock" AND caps = 1
###context:CREATE TABLE table_name_41 (position VARCHAR, player VARCHAR, club_province VARCHAR, caps VARCHAR) ###human: What position does ceri sweeney with under 87 caps of the newport gwent dragons play? ###assistant: SELECT position FROM table_name_41 WHERE club_province = "newport gwent dragons" AND caps < 87 AND player = "ceri sweeney"
###context:CREATE TABLE table_name_36 (player VARCHAR, caps VARCHAR) ###human: What player has 12 caps? ###assistant: SELECT player FROM table_name_36 WHERE caps = 12
###context:CREATE TABLE table_name_90 (shuji_kondo VARCHAR, mazada VARCHAR, ryuji_hijikata VARCHAR) ###human: Tell me the Shuji Kondo for MAZADA of X with Ryuji Hijikata of hijikata (14:24) ###assistant: SELECT shuji_kondo FROM table_name_90 WHERE mazada = "x" AND ryuji_hijikata = "hijikata (14:24)"
###context:CREATE TABLE table_name_30 (el_samurai VARCHAR, mazada VARCHAR, ryuji_hijikata VARCHAR) ###human: Name the El samurai with MAZADA of x for Ryuji Hijikata of draw (30:00) ###assistant: SELECT el_samurai FROM table_name_30 WHERE mazada = "x" AND ryuji_hijikata = "draw (30:00)"
###context:CREATE TABLE table_name_67 (mazada VARCHAR, el_samurai VARCHAR) ###human: Name the MAZADA for El Samurai of mazada (16:22) ###assistant: SELECT mazada FROM table_name_67 WHERE el_samurai = "mazada (16:22)"
###context:CREATE TABLE table_name_61 (shuji_kondo VARCHAR, mazada VARCHAR) ###human: Name the Shuji Kondo for MAZADA of hijikata (14:24) ###assistant: SELECT shuji_kondo FROM table_name_61 WHERE mazada = "hijikata (14:24)"
###context:CREATE TABLE table_name_78 (withdrawn INTEGER, builder VARCHAR, introduced VARCHAR) ###human: when was the building withdrawn when the builder was ac cars and was introduced before 1958? ###assistant: SELECT SUM(withdrawn) FROM table_name_78 WHERE builder = "ac cars" AND introduced < 1958
###context:CREATE TABLE table_name_44 (decision VARCHAR, date VARCHAR) ###human: What was the decision on october 5? ###assistant: SELECT decision FROM table_name_44 WHERE date = "october 5"
###context:CREATE TABLE table_name_41 (home_team VARCHAR, venue VARCHAR) ###human: Who played home team at Victoria Park? ###assistant: SELECT home_team FROM table_name_41 WHERE venue = "victoria park"
###context:CREATE TABLE table_name_34 (season VARCHAR, goals VARCHAR, apps VARCHAR) ###human: What Season has Goals greater than 0 and less than 33 Apps? ###assistant: SELECT season FROM table_name_34 WHERE goals > 0 AND apps < 33
###context:CREATE TABLE table_name_65 (car INTEGER, avg VARCHAR, long VARCHAR) ###human: How many carries for the RB averaging 4.7, and a long of over 30 yards? ###assistant: SELECT SUM(car) FROM table_name_65 WHERE avg = 4.7 AND long > 30
###context:CREATE TABLE table_name_43 (avg INTEGER, player VARCHAR, long VARCHAR) ###human: How many yards did kevin swayne average, with a long carry over 7? ###assistant: SELECT MIN(avg) FROM table_name_43 WHERE player = "kevin swayne" AND long > 7
###context:CREATE TABLE table_name_59 (catalogue VARCHAR, song_title VARCHAR) ###human: What is the catalogue for Harbor Lights as a title? ###assistant: SELECT catalogue FROM table_name_59 WHERE song_title = "harbor lights"
###context:CREATE TABLE table_name_51 (catalogue VARCHAR, track VARCHAR) ###human: What cataglogue has 27 tracks? ###assistant: SELECT catalogue FROM table_name_51 WHERE track = 27
###context:CREATE TABLE table_name_12 (first_year_played VARCHAR, doubles_w_l VARCHAR) ###human: Which year first played with Double W-L of 8–3? ###assistant: SELECT first_year_played FROM table_name_12 WHERE doubles_w_l = "8–3"
###context:CREATE TABLE table_name_28 (height_ft___m VARCHAR, year VARCHAR, name VARCHAR) ###human: What is the height that has a year after 1983 and is named Phoenix Tower? ###assistant: SELECT height_ft___m FROM table_name_28 WHERE year > 1983 AND name = "phoenix tower"
###context:CREATE TABLE table_name_87 (year INTEGER, name VARCHAR) ###human: What is the oldest year listed with the 1500 Louisiana Street name? ###assistant: SELECT MIN(year) FROM table_name_87 WHERE name = "1500 louisiana street"
###context:CREATE TABLE table_name_32 (height_ft___m VARCHAR, rank VARCHAR) ###human: What is the Height of rank 11? ###assistant: SELECT height_ft___m FROM table_name_32 WHERE rank = "11"
###context:CREATE TABLE table_name_82 (enrolment INTEGER, founded VARCHAR, denomination VARCHAR, day_boarding VARCHAR) ###human: What is the largest enrollment for anglican day schools founded after 1929? ###assistant: SELECT MAX(enrolment) FROM table_name_82 WHERE denomination = "anglican" AND day_boarding = "day" AND founded > 1929
###context:CREATE TABLE table_name_44 (city_of_license VARCHAR, call_sign VARCHAR) ###human: What city of license is associated with call sign w244bk? ###assistant: SELECT city_of_license FROM table_name_44 WHERE call_sign = "w244bk"
###context:CREATE TABLE table_name_52 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR) ###human: What city of license has a Frequency under 107.7, and a call sign of w247aq? ###assistant: SELECT city_of_license FROM table_name_52 WHERE frequency_mhz < 107.7 AND call_sign = "w247aq"
###context:CREATE TABLE table_name_19 (team VARCHAR, high_assists VARCHAR, date VARCHAR) ###human: Which team was played against on the game where Earl Watson (6) had the highest assists on January 19? ###assistant: SELECT team FROM table_name_19 WHERE high_assists = "earl watson (6)" AND date = "january 19"
###context:CREATE TABLE table_name_18 (singular_word VARCHAR, singular_abbreviation VARCHAR) ###human: A singular abbreviation of p. is used for what singular word? ###assistant: SELECT singular_word FROM table_name_18 WHERE singular_abbreviation = "p."
###context:CREATE TABLE table_name_82 (singular_word VARCHAR, plural_abbreviation VARCHAR) ###human: A plural abbreviation of pp. is used for what singular word? ###assistant: SELECT singular_word FROM table_name_82 WHERE plural_abbreviation = "pp."
###context:CREATE TABLE table_name_24 (singular_word VARCHAR, plural_word VARCHAR) ###human: The plural word of hands uses what singular word? ###assistant: SELECT singular_word FROM table_name_24 WHERE plural_word = "hands"
###context:CREATE TABLE table_name_21 (plural_abbreviation VARCHAR, plural_word VARCHAR) ###human: The plural word of following lines or pages has what plural abbreviation? ###assistant: SELECT plural_abbreviation FROM table_name_21 WHERE plural_word = "following lines or pages"
###context:CREATE TABLE table_name_94 (plural_word VARCHAR, plural_abbreviation VARCHAR) ###human: The plural abbreviation of ll. uses what plural word? ###assistant: SELECT plural_word FROM table_name_94 WHERE plural_abbreviation = "ll."
###context:CREATE TABLE table_name_20 (plural_word VARCHAR, singular_word VARCHAR) ###human: The singular word of hand uses what plural word? ###assistant: SELECT plural_word FROM table_name_20 WHERE singular_word = "hand"
###context:CREATE TABLE table_name_76 (home_team VARCHAR) ###human: How much did the home team st kilda score? ###assistant: SELECT home_team AS score FROM table_name_76 WHERE home_team = "st kilda"
###context:CREATE TABLE table_name_84 (away_team VARCHAR, crowd INTEGER) ###human: When the crowd was larger than 7,500 what was the away teams score? ###assistant: SELECT away_team AS score FROM table_name_84 WHERE crowd > 7 OFFSET 500
###context:CREATE TABLE table_name_42 (crowd VARCHAR, venue VARCHAR) ###human: What's the total number of people to attend games at junction oval? ###assistant: SELECT COUNT(crowd) FROM table_name_42 WHERE venue = "junction oval"
###context:CREATE TABLE table_name_62 (crowd VARCHAR, venue VARCHAR) ###human: How many people have attended victoria park? ###assistant: SELECT COUNT(crowd) FROM table_name_62 WHERE venue = "victoria park"
###context:CREATE TABLE table_name_79 (number_of_votes VARCHAR, election VARCHAR) ###human: How many people voted in the election of 1941? ###assistant: SELECT number_of_votes FROM table_name_79 WHERE election = 1941
###context:CREATE TABLE table_name_99 (candidate VARCHAR, outcome_of_election VARCHAR, number_of_votes VARCHAR) ###human: Which candidate lost the election that 770,046 people voted in? ###assistant: SELECT candidate FROM table_name_99 WHERE outcome_of_election = "lost" AND number_of_votes = "770,046"
###context:CREATE TABLE table_name_82 (candidate VARCHAR, share_of_votes VARCHAR) ###human: Which candidate won 61.47% of the votes? ###assistant: SELECT candidate FROM table_name_82 WHERE share_of_votes = "61.47%"
###context:CREATE TABLE table_name_26 (share_of_votes VARCHAR, election VARCHAR) ###human: What percentage of votes did the candidate win in the election of 1969? ###assistant: SELECT share_of_votes FROM table_name_26 WHERE election = 1969
###context:CREATE TABLE table_name_79 (gwr_nos VARCHAR, quantity VARCHAR, m VARCHAR, swj_nos VARCHAR) ###human: Which GWR numbers had a quantity less than 2 when the M&SWJ number was 9? ###assistant: SELECT gwr_nos FROM table_name_79 WHERE quantity < 2 AND m & swj_nos = "9"
###context:CREATE TABLE table_name_68 (manufacturer VARCHAR, type VARCHAR) ###human: Which manucfaturer's type was 2-6-0? ###assistant: SELECT manufacturer FROM table_name_68 WHERE type = "2-6-0"
###context:CREATE TABLE table_name_61 (score VARCHAR, record VARCHAR) ###human: What was the score of the game when the Devils had a record of 14–10–2? ###assistant: SELECT score FROM table_name_61 WHERE record = "14–10–2"
###context:CREATE TABLE table_name_49 (date VARCHAR, record VARCHAR) ###human: What was the date of the game when the Devils had a record of 21–14–3? ###assistant: SELECT date FROM table_name_49 WHERE record = "21–14–3"
###context:CREATE TABLE table_name_7 (distance VARCHAR, winning_horse VARCHAR) ###human: What distance did the winning horse run in the Summer Doldrums. ###assistant: SELECT distance FROM table_name_7 WHERE winning_horse = "summer doldrums"
###context:CREATE TABLE table_name_81 (winning_horse VARCHAR, winning_jockey VARCHAR) ###human: Who is the jockey for the winning horse Rafael Bejarano? ###assistant: SELECT winning_horse FROM table_name_81 WHERE winning_jockey = "rafael bejarano"
###context:CREATE TABLE table_name_29 (track VARCHAR, distance VARCHAR, race VARCHAR) ###human: What is the race with the track distance of 6 furlongs and spectacular bid stakes? ###assistant: SELECT track FROM table_name_29 WHERE distance = "6 furlongs" AND race = "spectacular bid stakes"
###context:CREATE TABLE table_name_57 (race VARCHAR, winning_horse VARCHAR, distance VARCHAR) ###human: what race did Dominican win with a distance of 1-1/16 miles? ###assistant: SELECT race FROM table_name_57 WHERE winning_horse = "dominican" AND distance = "1-1/16 miles"
###context:CREATE TABLE table_name_66 (tournament VARCHAR, result VARCHAR, year VARCHAR) ###human: What tournament since 1973 has a result of 1st? ###assistant: SELECT tournament FROM table_name_66 WHERE result = "1st" AND year > 1973
###context:CREATE TABLE table_name_31 (tournament VARCHAR, extra VARCHAR) ###human: In what tournament was there an extra of 400 m hurdles? ###assistant: SELECT tournament FROM table_name_31 WHERE extra = "400 m hurdles"
###context:CREATE TABLE table_name_97 (result VARCHAR, year VARCHAR) ###human: What was the Result in Year 1973? ###assistant: SELECT result FROM table_name_97 WHERE year = 1973
###context:CREATE TABLE table_name_95 (year VARCHAR, result VARCHAR, extra VARCHAR, tournament VARCHAR) ###human: In which year was the Tournament of european indoor championships played where the Extra was 800 m and the Result was 2nd? ###assistant: SELECT year FROM table_name_95 WHERE extra = "800 m" AND tournament = "european indoor championships" AND result = "2nd"
###context:CREATE TABLE table_name_29 (player VARCHAR, hometown VARCHAR) ###human: What player is from Chula Vista, Ca? ###assistant: SELECT player FROM table_name_29 WHERE hometown = "chula vista, ca"
###context:CREATE TABLE table_name_80 (mlb_draft VARCHAR, player VARCHAR) ###human: What MLB draft has Shaun Boyd? ###assistant: SELECT mlb_draft FROM table_name_80 WHERE player = "shaun boyd"
###context:CREATE TABLE table_name_96 (college_junior_club_team__league_ VARCHAR, round VARCHAR, player VARCHAR) ###human: what is the college/junior/club team (league) when the round is more than 2 and the player is bert robertsson (d)? ###assistant: SELECT college_junior_club_team__league_ FROM table_name_96 WHERE round > 2 AND player = "bert robertsson (d)"
###context:CREATE TABLE table_name_82 (college_junior_club_team__league_ VARCHAR, round INTEGER) ###human: what is the college/junior/club team (league) when the round is less than 7? ###assistant: SELECT college_junior_club_team__league_ FROM table_name_82 WHERE round < 7
###context:CREATE TABLE table_name_92 (nhl_team VARCHAR, round VARCHAR) ###human: what is the nhl team for round 10? ###assistant: SELECT nhl_team FROM table_name_92 WHERE round = 10
###context:CREATE TABLE table_name_90 (round INTEGER, player VARCHAR) ###human: what is the highest round when the player is troy creurer (d)? ###assistant: SELECT MAX(round) FROM table_name_90 WHERE player = "troy creurer (d)"
###context:CREATE TABLE table_name_10 (opponent VARCHAR, week VARCHAR) ###human: Who was the opponent on week 3? ###assistant: SELECT opponent FROM table_name_10 WHERE week = 3
###context:CREATE TABLE table_name_65 (chapter VARCHAR, location VARCHAR) ###human: What chapter is located in Normal, Illinois? ###assistant: SELECT chapter FROM table_name_65 WHERE location = "normal, illinois"
###context:CREATE TABLE table_name_79 (pos INTEGER, league VARCHAR, postseason VARCHAR) ###human: What is the average position for tb2l teams promoted champion? ###assistant: SELECT AVG(pos) FROM table_name_79 WHERE league = "tb2l" AND postseason = "promoted champion"
###context:CREATE TABLE table_name_51 (pos VARCHAR, postseason VARCHAR, tier VARCHAR) ###human: How many teams were promoted in the postseason in a tier above 2? ###assistant: SELECT COUNT(pos) FROM table_name_51 WHERE postseason = "promoted" AND tier < 2
###context:CREATE TABLE table_name_48 (home_team VARCHAR, venue VARCHAR) ###human: What is the Home team score At Windy Hill? ###assistant: SELECT home_team AS score FROM table_name_48 WHERE venue = "windy hill"
###context:CREATE TABLE table_name_10 (partner VARCHAR, score_in_the_final VARCHAR) ###human: Who is the partner in the final with a score of 2–6, 7–6, 7–6? ###assistant: SELECT partner FROM table_name_10 WHERE score_in_the_final = "2–6, 7–6, 7–6"
###context:CREATE TABLE table_name_66 (surface VARCHAR, score_in_the_final VARCHAR, outcome VARCHAR, partner VARCHAR) ###human: On what surface was Ivan Lendl a partner with a runner-up outcome and final score of 2–6, 6–7? ###assistant: SELECT surface FROM table_name_66 WHERE outcome = "runner-up" AND partner = "ivan lendl" AND score_in_the_final = "2–6, 6–7"
###context:CREATE TABLE table_name_97 (crowd INTEGER, venue VARCHAR) ###human: What was the highest crowd at the venue MCG? ###assistant: SELECT MAX(crowd) FROM table_name_97 WHERE venue = "mcg"
###context:CREATE TABLE table_name_8 (away_team VARCHAR, venue VARCHAR) ###human: What is the away team score at the Windy Hill venue? ###assistant: SELECT away_team AS score FROM table_name_8 WHERE venue = "windy hill"
###context:CREATE TABLE table_name_53 (venue VARCHAR, away_team VARCHAR) ###human: Where was the game when Melbourne was the away team? ###assistant: SELECT venue FROM table_name_53 WHERE away_team = "melbourne"
###context:CREATE TABLE table_name_70 (away_team VARCHAR, venue VARCHAR) ###human: What was the away score when the game was at Brunswick Street Oval? ###assistant: SELECT away_team AS score FROM table_name_70 WHERE venue = "brunswick street oval"
###context:CREATE TABLE table_name_28 (round VARCHAR, circuit VARCHAR) ###human: How many rounds were run at Calder Park? ###assistant: SELECT COUNT(round) FROM table_name_28 WHERE circuit = "calder park"
###context:CREATE TABLE table_name_74 (state VARCHAR, circuit VARCHAR) ###human: In which state can you find the Sandown circuit? ###assistant: SELECT state FROM table_name_74 WHERE circuit = "sandown"
###context:CREATE TABLE table_name_84 (round VARCHAR, state VARCHAR) ###human: How many rounds were run in New South Wales? ###assistant: SELECT COUNT(round) FROM table_name_84 WHERE state = "new south wales"
###context:CREATE TABLE table_name_42 (driver VARCHAR, year VARCHAR) ###human: Who is the driver from 1969? ###assistant: SELECT driver FROM table_name_42 WHERE year = "1969"
###context:CREATE TABLE table_name_83 (driver VARCHAR, year VARCHAR) ###human: Who was the driver in 1964? ###assistant: SELECT driver FROM table_name_83 WHERE year = "1964"
###context:CREATE TABLE table_name_68 (diff INTEGER, drawn VARCHAR, played VARCHAR) ###human: What is the highest diff with drawn of 6 and play larger than 18? ###assistant: SELECT MAX(diff) FROM table_name_68 WHERE drawn = 6 AND played > 18
###context:CREATE TABLE table_name_85 (played INTEGER, lost VARCHAR, points VARCHAR) ###human: How many games were played when the loss is less than 5 and points greater than 41? ###assistant: SELECT SUM(played) FROM table_name_85 WHERE lost < 5 AND points > 41
###context:CREATE TABLE table_name_13 (genes VARCHAR, species VARCHAR, base_pairs VARCHAR) ###human: How many genes are in species burkholderia pseudomallei with 4,126,292 base pairs? ###assistant: SELECT genes FROM table_name_13 WHERE species = "burkholderia pseudomallei" AND base_pairs = "4,126,292"
###context:CREATE TABLE table_name_50 (strain VARCHAR, genes VARCHAR) ###human: Which strain has 1,312 genes? ###assistant: SELECT strain FROM table_name_50 WHERE genes = "1,312"
###context:CREATE TABLE table_name_94 (genes VARCHAR, base_pairs VARCHAR) ###human: Which gene has 4,895,836 base pairs? ###assistant: SELECT genes FROM table_name_94 WHERE base_pairs = "4,895,836"
###context:CREATE TABLE table_name_58 (species VARCHAR, genes VARCHAR) ###human: Which species has 3,441 genes? ###assistant: SELECT species FROM table_name_58 WHERE genes = "3,441"