Views
SharePoint 内にあるリストを作成、更新、削除、およびクエリします。
Table Specific Information
Views is a special table. It may be used to get, update, insert, and delete views from a specified List.
Select
To return results from Views, yout must specify either the ID or List in the SELECT statement. For example,
SELECT * FROM Views WHERE List = 'MyListName'
Insert
The List, Name, and Fields columns are required to insert to this table.
Columns
| Name | Type | ReadOnly | Description |
| ID [KEY] | String | True |
ビューのId。 |
| List | String | True |
ビューを関連付けるリスト。SELECTステートメントの実行時にIdを指定しない場合は、リストを指定する必要があります。 |
| ViewID | String | True |
ビューのId。特定のリストに対して一意であれば十分です。 |
| Name | String | False |
ビューの名前。 |
| Type | String | False |
ビューのタイプ。挿入および更新では、この値を指定する必要があります。 使用できる値は次のとおりです。CALENDAR, GRID, HTML デフォルト値はHTMLです。 |
| Fields | String | False |
ビューに関連付けられたフィールドのカンマ区切りリスト。これは、スペースを文字と認識します。 |
| IsDefault | Boolean | False |
ビューがリストのデフォルトビューかどうかを示すboolean。 |
| Query | String | False |
ビューのクエリ。 |