You can use wildcard characters: %
%
select * from table where name like '%BMW%'
I think you are looking for something like
SELECT * FROM TableWHERE Column LIKE '%BMW%'
the % are wildcards for the LIKE statement.
More information can be found HERE