Hi guys.
I have a SQL query SELECT * FROM table WHERE column LIKE '%pdd%'
.
The problem is I need to get all results excluding those which start with "pdd", I mean find everything where "pdd" is not at the beginning. How could it be done?
Thank you.
UPD. Sorry, I should've clarified my question a little bit more. I do need to match "pdd" except at the beginning of the column.