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