Each row of SYSUSERAUTHORITY system view describes an authority granted to one user ID. The underlying system table for this view is ISYSUSERAUTHORITY.
Column name | Data type | Description |
---|---|---|
user_id | UNSIGNED INT | The ID of the user to whom the authority belongs. |
auth | VARCHAR(20) | The authority granted to the user. |
PRIMARY KEY (user_id, auth)
FOREIGN KEY (user_id) references SYS.ISYSUSER (user_id)