INSERT INTO user_account (user_type, username, password_hash, status, points_balance)
VALUES (#{userType}, #{username}, #{passwordHash}, #{status}, #{pointsBalance})
UPDATE user_account
status = #{status},points_balance = #{pointsBalance},
WHERE id = #{id}
UPDATE user_account SET status = #{status} WHERE id = #{id}
UPDATE user_account SET password_hash = #{passwordHash} WHERE id = #{id}