5 lines
85 B
MySQL
5 lines
85 B
MySQL
|
UPDATE OR REPLACE `post`
|
||
|
SET
|
||
|
`title` = ?,
|
||
|
`body` = ?
|
||
|
WHERE `post_id` = ?;
|