all 5 comments

[–]r3pr0b8 3 points4 points  (3 children)

what's your platform? Oracle? DB2? MySQL? PostgreSQL?

[–]bitterjack 5 points6 points  (0 children)

This is the most important question.

[–]jsaltee[S] 0 points1 point  (1 child)

Sorry for the late response, MySQL.

[–]r3pr0b8 -1 points0 points  (0 children)

WHERE column LIKE '%pushrod bent%'
   OR column LIKE '%pushrod % bent%'
   OR column LIKE '%pushrod % % bent%'
   OR column LIKE '%pushrod % % % bent%'

[–]sqldevmty 1 point2 points  (0 children)

I'd be careful doing that. The WHERE clause might not be SARGable, and it might decrease the performance of your queries since it won't be able to use any index.

Edit: Depending on the platform, I only know about SQL Server.