3 lines
110 B
SQL
3 lines
110 B
SQL
UPDATE public.users
|
|
SET first_name = 'Telegram', username = 'telegram', updated_at = now()
|
|
WHERE id = 777000;
|