17.04.2011, 12:19
Its
Judging what you're trying to do is updating a certain table
pawn Код:
INSERT INTO `table` (`row1`, `other rows`) VALUES ('%s', '%s')
pawn Код:
UPDATE `table` SET `row1` = '%s', `other rows` = '%s' WHERE `condition` = '%s'

