要将用户添加到用户组,可以使用以下步骤:
CREATE ROLE group_name;
CREATE USER username IDENTIFIED BY password;
GRANT group_name TO username;
通过以上步骤,您可以将用户成功添加到用户组中。