DeleteListColumn
SharePoint リストから列を削除します。リスト構造を改善し、余分なフィールドを削除するのに役立ちます。
Stored Procedure-Specific Information
The DeleteListColumn stored procedure removes a column from a SharePoint list. The List parameter specifies the list name, and the ColumnName parameter specifies the name of the column to delete.To execute this procedure, enter:
EXEC DeleteListColumn List = 'organizations', ColumnName = 'testColDisplayName';
Input
| Name | Type | Required | Description |
| List | String | True | 列が削除されるSharePoint リストの名前。例:'EmployeeRecords' や'ProjectTasks'。 |
| ColumnName | String | True | 指定されたリストから削除する列の名前。例:'StartDate' や'ProjectStatus'。 |
Result Set Columns
| Name | Type | Description |
| Success | Boolean | 列の削除が成功したかどうかを示します。列が正常に削除された場合は'true' を返し、それ以外の場合は'false' を返します。 |