How to set a password to a customer via SQL?

UPDATE `customer_entity`
SET `password_hash` = CONCAT(SHA2('xxxxxxxx<password>', 256), ':xxxxxxxx:1')
WHERE `entity_id` = <customer ID>;