12 lines
170 B
MySQL
12 lines
170 B
MySQL
|
|
UPDATE
|
||
|
|
games
|
||
|
|
SET
|
||
|
|
name = $1,
|
||
|
|
publishing_house = $2,
|
||
|
|
developer = $3,
|
||
|
|
description = $4,
|
||
|
|
multiplayer = $5,
|
||
|
|
is_free_to_play = $6
|
||
|
|
WHERE
|
||
|
|
id = $7
|