MySQL Help
#1

Is there anyway I can do something similar to:

pawn Код:
DELETE * FROM `contacts` WHERE `id` = %d AND `owner` = %d
The above doesn't seem to work.
Reply
#2

Why would you need to even put a "*"? You are not able to delete columns specifically, only rows? You can try:

pawn Код:
DELETE FROM `contacts` WHERE `id` = %d AND `owner` = %d
Reply
#3

Well, Cheers. I tend to make stupid idiotic mistakes.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)