A quick one please, a person asked me to delete all his galleries, except when they're from two specific image hosts.
I can remove all galleries from a person except when they're from ONE host.
But from TWO hosts, I kinda don't see how.
Please, would you have suggestions?
Code:
Code:
select count(*) from table
where username='userid'
and column not like '%imagehost1%'
Code:
select count(*) from table
where username='userid'
and column not like '%imagehost2%'
It's to combine the two that I am stuck.
All suggestions would be welcome
