This should work
Try using the "--where" option of mysqldump.
For example, assuming you have a database "nfl_database", containing table "players" , one of whose columns is "teamname":
mysqldump --user=username --password=password --where="teamname = 'Rams'" nfl_database players > players_rams.sql
all the best
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --