SQL Statement help
I've been trying to delete some links from my database using the following statement:
DELETE FROM `links` WHERE (SELECT * FROM `links` WHERE `url` LIKE '%domain%')
but get the following error:
"Operand should contain 1 column(s)"
Can anyone tell me where I'm going wrong?
Thanks!
|