database entries query #3290
-
hi guys, how would you do multiple number change in a query. PRIMARY KEY ( I would like to change the italic above to: any help would be much appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
for now, i'm trying this: any better way to do it would be appreciated |
Beta Was this translation helpful? Give feedback.
-
REPLACE INTO `augements` VALUES (327,0,840,1,0,0); this only works in table sthat have primary keys (which this one does). For tables without primary keys (for example mob drops) its possible to delete the row then do a normal INSERT statement. |
Beta Was this translation helpful? Give feedback.
-
thank you. thank you |
Beta Was this translation helpful? Give feedback.
this only works in table sthat have primary keys (which this one does).
For tables without primary keys (for example mob drops) its possible to delete the row then do a normal INSERT statement.