8 lines
116 B
SQL
8 lines
116 B
SQL
UPDATE horses
|
|
SET
|
|
name = 'Diesel',
|
|
breed = 'бурая',
|
|
disciplines = 'конкур'
|
|
WHERE
|
|
id = 1;
|