Users
SharePoint のユーザーを更新、削除、およびクエリします。
Table Specific Information
Select
Retrieves all users created for the SharePoint Account:
SELECT * FROM Users
You can retrieve Users that belong to a specific Group. In this case specify the Group Name:
SELECT * FROM Users WHERE [Group] = "GroupName"
Or you can retrieve Users that have a specific Role. In this case specify the Role Name:
SELECT * FROM Users WHERE [Role] = "RoleName"
Columns
| Name | Type | ReadOnly | Description |
| ID | String | True |
ユーザーのId。 |
| LoginName# [KEY] | String | False |
ユーザーのログイン名。 |
| Name# | String | False |
ユーザーの名前。 |
| Email# | String | False |
ユーザーのE メールアドレス。 |
| IsInDomainGroup | Boolean | True |
ユーザーがドメイングループに属するかどうかを示すboolean。 |
| IsSiteAdmin | Boolean | True |
ユーザーがサイト管理者であるかどうかを示すboolean。 |
| Notes# | String | False |
ユーザーに関するオプションのメモ。 |
| SecurityId | String | True |
ユーザーのセキュリティId(SID)。 |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似列フィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description |
| Group | String |
ユーザーを追加、および選択/削除する先のグループ。これは入力専用の値です。挿入および選択の場合はGroup またはRole を指定する必要がありますが、削除の場合はオプションです。 |
| Role | String |
ユーザーを追加、および選択/削除する先のロール。これは入力専用の値です。挿入および選択の場合はGroup またはRole を指定する必要がありますが、削除の場合はオプションです。 |