GroupUsers
Query the groups created in your account and the users that are associated with the groups.
テーブル固有の情報
Select
アカウントからすべてのグループを取得し、それぞれのグループのすべてのユーザーを取得します。
SELECT * FROM GroupUsers
1つのグループに所属するすべてのユーザーを取得することも可能です。
SELECT * FROM GroupUsers WHERE GroupId = '123'
Columns
| Name | Type | References | Description |
| GroupId [KEY] | Integer | The unique identifier of the group. | |
| GroupName | String | The name of the group. | |
| UserId [KEY] | Integer | Id of the user belonging to the group. | |
| Username | String | Name of the user belonging to the group. | |
| UserEmailAddress | String | Name of the user belonging to the group. |