Select-PostgreSQL Cmdlet
PostgreSQL データを検索します。
Syntax
Select-PostgreSQL [parameters]
Remarks
Select-PostgreSQL コマンドレットを使って、SQL SELECT ステートメントに似た構文を用いてPostgreSQL データを検索できます。
$conn = Connect-PostgreSQL -User 'postgres' -Password 'admin' -Server '127.0.0.1' -Port '5432' -Database 'postgres' Select-PostgreSQL -Connection $conn -Table "`"postgres`".`"schema01`".Orders" -Columns @("ShipName","ShipCity") -Where "ShipCountry='USA'"