Update-ZohoCreator Cmdlet
Zoho Creator データを更新します。
Syntax
Update-ZohoCreator [parameters]
Remarks
Update-ZohoCreator コマンドレットを使って、SQL UPDATE ステートメントに似た構文を用いてZoho Creator データを更新できます。
$conn = Connect-ZohoCreator -InitiateOAuth "GETANDREFRESH" Update-ZohoCreator -Connection $conn -Table "[CData].[Employee Management].Leave_Types" -Columns @("Leave_Type") -Values @("Jon Doe") -Id "98891000000010007"Where パラメータはテーブルの主キーを指定するためにも使われます。
Update-ZohoCreator -Connection $conn -Table "[CData].[Employee Management].Leave_Types" -Columns @("Leave_Type") -Values @("Jon Doe") -Where "Id = '98891000000010007'"主キーは、パイプライン上でコマンドレットに渡すこともできます。
Select-ZohoCreator -Connection $conn -Table [CData].[Employee Management].Leave_Types -Where "Leave_Type = 'Sick'" | Update-ZohoCreator -Columns @("Leave_Type") -Values @("Sick 2")