training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_59 (position VARCHAR, club_province VARCHAR, player VARCHAR) ###human: Which position has a club of Meralomas and a player named David Biddle? ###assistant: SELECT position FROM table_name_59 WHERE club_province = "meralomas" AND player = "david biddle"
###context:CREATE TABLE table_name_75 (caps INTEGER, club_province VARCHAR, position VARCHAR) ###human: What is the average number of caps for Meralomas with positions of centre? ###assistant: SELECT AVG(caps) FROM table_name_75 WHERE club_province = "meralomas" AND position = "centre"
###context:CREATE TABLE table_name_4 (scorers VARCHAR, score VARCHAR) ###human: Who are the scorers when the score is 9-2? ###assistant: SELECT scorers FROM table_name_4 WHERE score = "9-2"
###context:CREATE TABLE table_name_94 (population INTEGER, region INTEGER) ###human: What is the smallest population in a region greater than 9? ###assistant: SELECT MIN(population) FROM table_name_94 WHERE region > 9
###context:CREATE TABLE table_name_80 (area__km_2__ INTEGER, code VARCHAR, population VARCHAR) ###human: What is the average area for code 98030 with population over 312? ###assistant: SELECT AVG(area__km_2__) FROM table_name_80 WHERE code = 98030 AND population > 312
###context:CREATE TABLE table_name_62 (attendance VARCHAR, date VARCHAR) ###human: What is the attendance on may 28? ###assistant: SELECT attendance FROM table_name_62 WHERE date = "may 28"
###context:CREATE TABLE table_name_83 (runner_s__up VARCHAR, date VARCHAR) ###human: On the Date of 4 Oct 2009, who was the Runner(s)-up? ###assistant: SELECT runner_s__up FROM table_name_83 WHERE date = "4 oct 2009"
###context:CREATE TABLE table_name_52 (runner_s__up VARCHAR, date VARCHAR) ###human: On the Date of 2 Aug 2009, who was the Runner(s)-up? ###assistant: SELECT runner_s__up FROM table_name_52 WHERE date = "2 aug 2009"
###context:CREATE TABLE table_name_23 (tournament VARCHAR, date VARCHAR) ###human: Which Tournament was on the Date 6 Sep 2009? ###assistant: SELECT tournament FROM table_name_23 WHERE date = "6 sep 2009"
###context:CREATE TABLE table_name_55 (winning_score VARCHAR, tournament VARCHAR) ###human: What was the Winning score for the Mynavi ABC Championship Tournament? ###assistant: SELECT winning_score FROM table_name_55 WHERE tournament = "mynavi abc championship"
###context:CREATE TABLE table_name_29 (winning_score VARCHAR, margin_of_victory VARCHAR, date VARCHAR) ###human: What was the Winning score when the Margin of victory is 5 strokes and the Date was 6 Sep 2009? ###assistant: SELECT winning_score FROM table_name_29 WHERE margin_of_victory = "5 strokes" AND date = "6 sep 2009"
###context:CREATE TABLE table_name_66 (runner_s__up VARCHAR, date VARCHAR) ###human: Who was the Runner(s)-up on the Date 4 Oct 2009? ###assistant: SELECT runner_s__up FROM table_name_66 WHERE date = "4 oct 2009"
###context:CREATE TABLE table_name_33 (score VARCHAR, third_place VARCHAR) ###human: What is the score with third place of stefan edberg? ###assistant: SELECT score FROM table_name_33 WHERE third_place = "stefan edberg"
###context:CREATE TABLE table_name_40 (runner_up VARCHAR, tournament VARCHAR) ###human: Name the runner-up for algarve tournament ###assistant: SELECT runner_up FROM table_name_40 WHERE tournament = "algarve"
###context:CREATE TABLE table_name_25 (tournament VARCHAR, third_place VARCHAR) ###human: I want to know the tournament that has a third place of magnus gustafsson ###assistant: SELECT tournament FROM table_name_25 WHERE third_place = "magnus gustafsson"
###context:CREATE TABLE table_name_11 (winner VARCHAR, third_place VARCHAR) ###human: Who was the winner when the third place was fernando meligeni? ###assistant: SELECT winner FROM table_name_11 WHERE third_place = "fernando meligeni"
###context:CREATE TABLE table_name_3 (tournament VARCHAR, winner VARCHAR) ###human: Name the tournament for patrick rafter winning ###assistant: SELECT tournament FROM table_name_3 WHERE winner = "patrick rafter"
###context:CREATE TABLE table_name_10 (owner VARCHAR, trainer VARCHAR, year VARCHAR) ###human: Who was the owner in 1996 of trainer Nick Zito? ###assistant: SELECT owner FROM table_name_10 WHERE trainer = "nick zito" AND year = "1996"
###context:CREATE TABLE table_name_40 (year VARCHAR, distance VARCHAR, jockey VARCHAR) ###human: What year did jockey Ramon Dominguez have a distance of 1-1/16? ###assistant: SELECT year FROM table_name_40 WHERE distance = "1-1/16" AND jockey = "ramon dominguez"
###context:CREATE TABLE table_name_80 (owner VARCHAR, trainer VARCHAR) ###human: Who was the owner of the trainer Steve Klesaris? ###assistant: SELECT owner FROM table_name_80 WHERE trainer = "steve klesaris"
###context:CREATE TABLE table_name_43 (owner VARCHAR, winner VARCHAR) ###human: Who is the owner of the Raglan Road winner? ###assistant: SELECT owner FROM table_name_43 WHERE winner = "raglan road"
###context:CREATE TABLE table_name_2 (year VARCHAR, winner VARCHAR) ###human: What year was Burning Roma the winner? ###assistant: SELECT year FROM table_name_2 WHERE winner = "burning roma"
###context:CREATE TABLE table_name_23 (win_loss VARCHAR, coach VARCHAR) ###human: What is the win/loss of coach Peter German? ###assistant: SELECT win_loss FROM table_name_23 WHERE coach = "peter german"
###context:CREATE TABLE table_name_14 (tyres VARCHAR, year VARCHAR, laps VARCHAR) ###human: Which tyre was before 1995 with 142 laps? ###assistant: SELECT tyres FROM table_name_14 WHERE year < 1995 AND laps = 142
###context:CREATE TABLE table_name_89 (tyres VARCHAR, laps VARCHAR, team VARCHAR) ###human: Which tyres has more than 5 laps with team nissan motorsports international? ###assistant: SELECT tyres FROM table_name_89 WHERE laps > 5 AND team = "nissan motorsports international"
###context:CREATE TABLE table_name_56 (pos VARCHAR, tyres VARCHAR, laps VARCHAR) ###human: What position that has m tyres and 352 or more laps? ###assistant: SELECT pos FROM table_name_56 WHERE tyres = "m" AND laps > 352
###context:CREATE TABLE table_name_29 (team_2 VARCHAR, team_1 VARCHAR) ###human: who is the team 2 when the team 1 is sestese(e16)? ###assistant: SELECT team_2 FROM table_name_29 WHERE team_1 = "sestese(e16)"
###context:CREATE TABLE table_name_2 (base_pairs INTEGER, strain VARCHAR) ###human: What is the largest base pair with a Strain of unspecified? ###assistant: SELECT MAX(base_pairs) FROM table_name_2 WHERE strain = "unspecified"
###context:CREATE TABLE table_name_21 (base_pairs INTEGER, species VARCHAR, genes VARCHAR) ###human: What is the lowst base pair with a Species of borrelia garinii, and a Genes larger than 832? ###assistant: SELECT MIN(base_pairs) FROM table_name_21 WHERE species = "borrelia garinii" AND genes > 832
###context:CREATE TABLE table_name_65 (type VARCHAR, species VARCHAR, genes VARCHAR) ###human: What type has an unspecified species and less than 367 genes? ###assistant: SELECT type FROM table_name_65 WHERE species = "unspecified" AND genes < 367
###context:CREATE TABLE table_name_79 (base_pairs VARCHAR, genes VARCHAR) ###human: What base pair has 832 genes? ###assistant: SELECT base_pairs FROM table_name_79 WHERE genes = 832
###context:CREATE TABLE table_name_53 (competition VARCHAR, rank VARCHAR) ###human: Which competition was ranked 9? ###assistant: SELECT competition FROM table_name_53 WHERE rank = 9
###context:CREATE TABLE table_name_94 (drawn INTEGER, goals VARCHAR) ###human: What is the sum of draws with 274-357 goals? ###assistant: SELECT SUM(drawn) FROM table_name_94 WHERE goals = "274-357"
###context:CREATE TABLE table_name_65 (played_2 INTEGER, drawn VARCHAR, club_1 VARCHAR, lost VARCHAR, seasons VARCHAR) ###human: What is the lowest played 2 number with less than 83 losses and less than 65 draws with Chernomorets Novorossiysk in season 8? ###assistant: SELECT MIN(played_2) FROM table_name_65 WHERE lost > 83 AND seasons = 8 AND club_1 = "chernomorets novorossiysk" AND drawn < 65
###context:CREATE TABLE table_name_88 (rank VARCHAR, goals VARCHAR, seasons VARCHAR) ###human: What is the rank number with 562-506 goals before season 13? ###assistant: SELECT COUNT(rank) FROM table_name_88 WHERE goals = "562-506" AND seasons < 13
###context:CREATE TABLE table_name_77 (seasons VARCHAR, goals VARCHAR, lost VARCHAR) ###human: How many seasons have goals of 261-338 with more than 111 losses? ###assistant: SELECT COUNT(seasons) FROM table_name_77 WHERE goals = "261-338" AND lost > 111
###context:CREATE TABLE table_name_28 (seasons INTEGER, spells VARCHAR, drawn VARCHAR, rank VARCHAR) ###human: What is the highest season number with 57 draws, rank 20, and more than 1 spell? ###assistant: SELECT MAX(seasons) FROM table_name_28 WHERE drawn = 57 AND rank = 20 AND spells > 1
###context:CREATE TABLE table_name_51 (result VARCHAR, venue VARCHAR) ###human: What was the results of the game at Doha? ###assistant: SELECT result FROM table_name_51 WHERE venue = "doha"
###context:CREATE TABLE table_name_42 (score VARCHAR, competition VARCHAR) ###human: What was the score during the competition of 1998 fifa world cup qualification? ###assistant: SELECT score FROM table_name_42 WHERE competition = "1998 fifa world cup qualification"
###context:CREATE TABLE table_name_45 (competition VARCHAR, date VARCHAR) ###human: What is the competition that took place on October 1, 1994? ###assistant: SELECT competition FROM table_name_45 WHERE date = "october 1, 1994"
###context:CREATE TABLE table_name_58 (competition VARCHAR, result VARCHAR) ###human: What is the competition that had a 2-2 result? ###assistant: SELECT competition FROM table_name_58 WHERE result = "2-2"
###context:CREATE TABLE table_name_46 (venue VARCHAR, result VARCHAR) ###human: Where did the competition take place that had a 4-2 result? ###assistant: SELECT venue FROM table_name_46 WHERE result = "4-2"
###context:CREATE TABLE table_name_7 (venue VARCHAR, result VARCHAR) ###human: Where was the competition that took place that had a 5-1 result? ###assistant: SELECT venue FROM table_name_7 WHERE result = "5-1"
###context:CREATE TABLE table_name_5 (goals INTEGER, tries VARCHAR, position VARCHAR) ###human: Tell me the highest goals with tries less than 1 and fullback position ###assistant: SELECT MAX(goals) FROM table_name_5 WHERE tries < 1 AND position = "fullback"
###context:CREATE TABLE table_name_40 (tries INTEGER, points VARCHAR, goals VARCHAR, position VARCHAR) ###human: Tell me the lowest tries for goals more than 0 with centre position and points less than 54 ###assistant: SELECT MIN(tries) FROM table_name_40 WHERE goals > 0 AND position = "centre" AND points < 54
###context:CREATE TABLE table_name_18 (player VARCHAR, position VARCHAR, tries VARCHAR, points VARCHAR) ###human: I want to know the player with tries more than 1 and position of hooker with points less than 54 ###assistant: SELECT player FROM table_name_18 WHERE tries > 1 AND points < 54 AND position = "hooker"
###context:CREATE TABLE table_name_56 (player VARCHAR, tries VARCHAR, points VARCHAR, goals VARCHAR) ###human: Tell me the player with points larger than 36 and goals more than 0 with tries of 12 ###assistant: SELECT player FROM table_name_56 WHERE points > 36 AND goals > 0 AND tries = 12
###context:CREATE TABLE table_name_58 (tournament VARCHAR) ###human: What Tournament was the 2010 Olympic Games? ###assistant: SELECT tournament FROM table_name_58 WHERE 2010 = "olympic games"
###context:CREATE TABLE table_name_3 (width VARCHAR, entered_service VARCHAR) ###human: Which width had an entered service year of 2010? ###assistant: SELECT width FROM table_name_3 WHERE entered_service = 2010
###context:CREATE TABLE table_name_44 (built INTEGER, entered_service VARCHAR, knots VARCHAR) ###human: What is the most recent built year when the year of entering service was more recent than 2003, and the knots is less than 27? ###assistant: SELECT MAX(built) FROM table_name_44 WHERE entered_service > 2003 AND knots < 27
###context:CREATE TABLE table_name_11 (knots VARCHAR, ship VARCHAR, passengers VARCHAR) ###human: How many knots did the Ms Moby Vincent have when passengers was less than 1.6? ###assistant: SELECT COUNT(knots) FROM table_name_11 WHERE ship = "ms moby vincent" AND passengers < 1.6
###context:CREATE TABLE table_name_51 (venue VARCHAR, away_team VARCHAR) ###human: Where did Richmond play as the away team? ###assistant: SELECT venue FROM table_name_51 WHERE away_team = "richmond"
###context:CREATE TABLE table_name_21 (attendance VARCHAR, opponent VARCHAR, date VARCHAR) ###human: When the phillies 1:15 pm played on April 9, what was the attendance? ###assistant: SELECT attendance FROM table_name_21 WHERE opponent = "phillies 1:15 pm" AND date = "april 9"
###context:CREATE TABLE table_name_42 (date VARCHAR, score VARCHAR) ###human: When was there a score of 5-1? ###assistant: SELECT date FROM table_name_42 WHERE score = "5-1"
###context:CREATE TABLE table_name_62 (silver INTEGER, bronze INTEGER) ###human: What is the average number of silvers for nations with over 1 bronze medal? ###assistant: SELECT AVG(silver) FROM table_name_62 WHERE bronze > 1
###context:CREATE TABLE table_name_37 (interregnum_ended VARCHAR, count_palatine_of_saxony VARCHAR) ###human: What is the Interregnum ended for Count Palatine of Saxony of frederick augustus i, elector of saxony? ###assistant: SELECT interregnum_ended FROM table_name_37 WHERE count_palatine_of_saxony = "frederick augustus i, elector of saxony"
###context:CREATE TABLE table_name_69 (interregnum_ended VARCHAR, count_palatine_of_saxony VARCHAR) ###human: What is the Interregnum ended for Count Palatine of Saxony of john george ii, elector of saxony? ###assistant: SELECT interregnum_ended FROM table_name_69 WHERE count_palatine_of_saxony = "john george ii, elector of saxony"
###context:CREATE TABLE table_name_53 (duration VARCHAR, count_palatine_of_the_rhine VARCHAR) ###human: What is the duration for Count Palatine of the Rhine of charles albert, elector of bavaria? ###assistant: SELECT duration FROM table_name_53 WHERE count_palatine_of_the_rhine = "charles albert, elector of bavaria"
###context:CREATE TABLE table_name_65 (count_palatine_of_the_rhine VARCHAR, interregnum_began VARCHAR) ###human: What is the name of the Count Palatine of the Rhine with a Interregnum began of 2 april 1657 death of ferdinand iii? ###assistant: SELECT count_palatine_of_the_rhine FROM table_name_65 WHERE interregnum_began = "2 april 1657 death of ferdinand iii"
###context:CREATE TABLE table_name_78 (interregnum_ended VARCHAR, duration VARCHAR) ###human: What is the Interregnum ended for the person with a Duration of 3 months, 6 days? ###assistant: SELECT interregnum_ended FROM table_name_78 WHERE duration = "3 months, 6 days"
###context:CREATE TABLE table_name_53 (crowd VARCHAR, home_team VARCHAR) ###human: What was the crowd size when the home team was Hawthorn? ###assistant: SELECT crowd FROM table_name_53 WHERE home_team = "hawthorn"
###context:CREATE TABLE table_name_25 (share INTEGER, rank__overall_ VARCHAR, timeslot VARCHAR, air_date VARCHAR) ###human: What is the total share with Timeslot of 8:30 p.m., anAir Date of march 27, 2008, and a Rank greater than 65? ###assistant: SELECT SUM(share) FROM table_name_25 WHERE timeslot = "8:30 p.m." AND air_date = "march 27, 2008" AND rank__overall_ > 65
###context:CREATE TABLE table_name_80 (viewers__m_ VARCHAR, rank__night_ VARCHAR, timeslot VARCHAR) ###human: What is the total number of Viewers with a Rank (Night) of n/a, and a Timeslot of 8:30 p.m.? ###assistant: SELECT COUNT(viewers__m_) FROM table_name_80 WHERE rank__night_ = "n/a" AND timeslot = "8:30 p.m."
###context:CREATE TABLE table_name_11 (attendance VARCHAR, decision VARCHAR, home VARCHAR) ###human: How many people attended the game when Calgary was the home team and the decision was McLean? ###assistant: SELECT COUNT(attendance) FROM table_name_11 WHERE decision = "mclean" AND home = "calgary"
###context:CREATE TABLE table_name_38 (record VARCHAR, home VARCHAR) ###human: What is the record of the game when Los Angeles was the home team? ###assistant: SELECT record FROM table_name_38 WHERE home = "los angeles"
###context:CREATE TABLE table_name_39 (record VARCHAR, score VARCHAR) ###human: What is the record of the game with a score of 1 – 5? ###assistant: SELECT record FROM table_name_39 WHERE score = "1 – 5"
###context:CREATE TABLE table_name_97 (attendance INTEGER, home VARCHAR) ###human: What is the least number of people to attend a game when Los Angeles was the home team? ###assistant: SELECT MIN(attendance) FROM table_name_97 WHERE home = "los angeles"
###context:CREATE TABLE table_name_96 (runner_up VARCHAR, tournament VARCHAR) ###human: who is the runner- up when the tournament is santiago? ###assistant: SELECT runner_up FROM table_name_96 WHERE tournament = "santiago"
###context:CREATE TABLE table_name_54 (score VARCHAR, runner_up VARCHAR) ###human: what is the score when the runner-up is richard krajicek? ###assistant: SELECT score FROM table_name_54 WHERE runner_up = "richard krajicek"
###context:CREATE TABLE table_name_48 (tournament VARCHAR, score VARCHAR) ###human: what is the tournament when the score is 7-6(0), 6-3? ###assistant: SELECT tournament FROM table_name_48 WHERE score = "7-6(0), 6-3"
###context:CREATE TABLE table_name_77 (third_place VARCHAR, tournament VARCHAR) ###human: who is third place when the tournament is delray beach? ###assistant: SELECT third_place FROM table_name_77 WHERE tournament = "delray beach"
###context:CREATE TABLE table_name_63 (score VARCHAR, competition VARCHAR, date VARCHAR) ###human: What was the score in the Continental Qualifier on February 23, 2003? ###assistant: SELECT score FROM table_name_63 WHERE competition = "continental qualifier" AND date = "february 23, 2003"
###context:CREATE TABLE table_name_72 (score VARCHAR, competition VARCHAR) ###human: What was the score for the World Cup Qualifier? ###assistant: SELECT score FROM table_name_72 WHERE competition = "world cup qualifier"
###context:CREATE TABLE table_name_61 (result VARCHAR, date VARCHAR) ###human: What was the result on February 18, 2003? ###assistant: SELECT result FROM table_name_61 WHERE date = "february 18, 2003"
###context:CREATE TABLE table_name_14 (commissioned VARCHAR, fate VARCHAR) ###human: When was the ship that had a fate of 'converted to laker, 1961; still in service' commissioned? ###assistant: SELECT commissioned FROM table_name_14 WHERE fate = "converted to laker, 1961; still in service"
###context:CREATE TABLE table_name_94 (final_decommission VARCHAR, original_name VARCHAR) ###human: When was the ship originally named sachem finally decommissioned? ###assistant: SELECT final_decommission FROM table_name_94 WHERE original_name = "sachem"
###context:CREATE TABLE table_name_69 (away_team VARCHAR, home_team VARCHAR) ###human: What did the away team score in the game against Richmond? ###assistant: SELECT away_team AS score FROM table_name_69 WHERE home_team = "richmond"
###context:CREATE TABLE table_name_41 (player VARCHAR, no_result VARCHAR, tied VARCHAR) ###human: Which player has no 0 results and multiples ties? ###assistant: SELECT player FROM table_name_41 WHERE no_result = 0 AND tied > 0
###context:CREATE TABLE table_name_80 (no_result INTEGER, lost VARCHAR, _percentage_win_ VARCHAR, a_ VARCHAR) ###human: What is the low no result with more than 5 loss and a win ration lesser than 58.06? ###assistant: SELECT MIN(no_result) FROM table_name_80 WHERE lost > 5 AND _percentage_win_[a_] < 58.06
###context:CREATE TABLE table_name_73 (opponent VARCHAR, date VARCHAR) ###human: Name the opponent for may 12 ###assistant: SELECT opponent FROM table_name_73 WHERE date = "may 12"
###context:CREATE TABLE table_name_31 (date VARCHAR, loss VARCHAR) ###human: Name the date for Loss of schilling (5–2) ###assistant: SELECT date FROM table_name_31 WHERE loss = "schilling (5–2)"
###context:CREATE TABLE table_name_64 (record VARCHAR, date VARCHAR) ###human: Name the record for may 31 ###assistant: SELECT record FROM table_name_64 WHERE date = "may 31"
###context:CREATE TABLE table_name_84 (average INTEGER, interview VARCHAR) ###human: What was the highest average for the contestant having an interview score of 8.46? ###assistant: SELECT MAX(average) FROM table_name_84 WHERE interview = 8.46
###context:CREATE TABLE table_name_45 (date VARCHAR, time VARCHAR) ###human: What day had a time of 29.816? ###assistant: SELECT date FROM table_name_45 WHERE time = "29.816"
###context:CREATE TABLE table_name_7 (car_make VARCHAR, record VARCHAR) ###human: What kind of car has the NASCAR Camping World Truck Series record? ###assistant: SELECT car_make FROM table_name_7 WHERE record = "nascar camping world truck series"
###context:CREATE TABLE table_name_6 (home VARCHAR, date VARCHAR) ###human: Was it a home game on the date of April 6? ###assistant: SELECT home FROM table_name_6 WHERE date = "april 6"
###context:CREATE TABLE table_name_28 (date VARCHAR, home VARCHAR) ###human: What was the date when the home team was Dallas? ###assistant: SELECT date FROM table_name_28 WHERE home = "dallas"
###context:CREATE TABLE table_name_94 (pick__number INTEGER, player VARCHAR) ###human: What is Rhett Mclane's highest pick number? ###assistant: SELECT MAX(pick__number) FROM table_name_94 WHERE player = "rhett mclane"
###context:CREATE TABLE table_name_9 (pick__number INTEGER, college VARCHAR) ###human: What is Colorado College's lowest pick number? ###assistant: SELECT MIN(pick__number) FROM table_name_9 WHERE college = "colorado"
###context:CREATE TABLE table_name_34 (player VARCHAR, college VARCHAR) ###human: What player belongs to Northwestern College? ###assistant: SELECT player FROM table_name_34 WHERE college = "northwestern"
###context:CREATE TABLE table_name_76 (cfl_team VARCHAR, player VARCHAR) ###human: What CFL Team is Pascal Masson on? ###assistant: SELECT cfl_team FROM table_name_76 WHERE player = "pascal masson"
###context:CREATE TABLE table_name_28 (number_ VARCHAR, _name VARCHAR, date INTEGER) ###human: What's the number & name for the date after 1954? ###assistant: SELECT number_ & _name FROM table_name_28 WHERE date > 1954
###context:CREATE TABLE table_name_77 (date VARCHAR, owner_s_ VARCHAR) ###human: What's the date for princess royal class locomotive trust? ###assistant: SELECT date FROM table_name_77 WHERE owner_s_ = "princess royal class locomotive trust"
###context:CREATE TABLE table_name_72 (number_ VARCHAR, _name VARCHAR, description VARCHAR) ###human: What's the number & name for the description peckett 0-4-0st? ###assistant: SELECT number_ & _name FROM table_name_72 WHERE description = "peckett 0-4-0st"
###context:CREATE TABLE table_name_10 (number_ VARCHAR, _name VARCHAR, description VARCHAR) ###human: What's the number & name for a description of lms fowler class 3f 0-6-0t? ###assistant: SELECT number_ & _name FROM table_name_10 WHERE description = "lms fowler class 3f 0-6-0t"
###context:CREATE TABLE table_name_25 (driver VARCHAR, laps VARCHAR, grid VARCHAR) ###human: Who drive 74 laps in a grid larger than 9? ###assistant: SELECT driver FROM table_name_25 WHERE laps = 74 AND grid > 9
###context:CREATE TABLE table_name_48 (player VARCHAR, school_club_team_country VARCHAR) ###human: Who is the player for St. Mary's team? ###assistant: SELECT player FROM table_name_48 WHERE school_club_team_country = "st. mary's"
###context:CREATE TABLE table_name_15 (height_in_ft VARCHAR, school_club_team_country VARCHAR) ###human: How tall is the player from Mississippi ###assistant: SELECT height_in_ft FROM table_name_15 WHERE school_club_team_country = "mississippi"
###context:CREATE TABLE table_name_66 (no_s_ VARCHAR, school_club_team_country VARCHAR) ###human: What is the player number for the player from Centenary? ###assistant: SELECT no_s_ FROM table_name_66 WHERE school_club_team_country = "centenary"
###context:CREATE TABLE table_name_69 (height_in_ft VARCHAR, no_s_ VARCHAR, school_club_team_country VARCHAR) ###human: How tall is player 42 from Long Beach State? ###assistant: SELECT height_in_ft FROM table_name_69 WHERE no_s_ = "42" AND school_club_team_country = "long beach state"