Select-AlloyDB Cmdlet
Searches AlloyDB data.
Syntax
Select-AlloyDB [parameters]
Remarks
The Select-AlloyDB cmdlet allows you to use a syntax similar to SQL SELECT statements to search AlloyDB data.
$conn = Connect-AlloyDB -User 'alloydb' -Password 'admin' -Server '127.0.0.1' -Port '5432' -Database 'alloydb' Select-AlloyDB -Connection $conn -Table "`"alloydb`".`"schema01`".Orders" -Columns @("ShipName","ShipCity") -Where "ShipCountry='USA'"