Select-SuiteCRM Cmdlet
SuiteCRM データを検索します。
Syntax
Select-SuiteCRM [parameters]
Remarks
Select-SuiteCRM コマンドレットを使って、SQL SELECT ステートメントに似た構文を用いてSuiteCRM データを検索できます。
$conn = Connect-SuiteCRM -URL 'http://mySuiteCRM.com' -User 'myUser' -Password 'myPassword'
Select-SuiteCRM -Connection $conn -Table "Accounts" -Columns @("Name","Industry") -Where "Industry='Manufacturing'"