mirror of
https://github.com/linuxserver/Clarkson.git
synced 2026-01-09 07:01:12 +08:00
18 lines
239 B
SQL
18 lines
239 B
SQL
DELIMITER $$
|
|
|
|
CREATE PROCEDURE `User_UpdatePasswordById`
|
|
(
|
|
in_id VARCHAR(36),
|
|
in_password VARCHAR(200)
|
|
)
|
|
BEGIN
|
|
|
|
UPDATE
|
|
`Users`
|
|
SET
|
|
`password` = in_password
|
|
WHERE
|
|
`id` = in_id;
|
|
|
|
END$$
|