Copy the code in Fig. 21 in this article to install the function: http://www.sqlservercentral.com/articles/Tally+Table/72993/
Then use it like this:DECLARE @search VARCHAR(255) = 'car apple';
SELECT
t.*
FROM
YourTable t
INNER JOIN dbo.DelimitedSplit8K(@search,' ') d
ON ' ' + t.name + ' ' LIKE '% ' + d.Item + ' %'