Select-GoogleSpanner Cmdlet
Searches Google Spanner data.
Syntax
Select-GoogleSpanner [parameters]
Remarks
The Select-GoogleSpanner cmdlet allows you to use a syntax similar to SQL SELECT statements to search Google Spanner data.
$conn = Connect-GoogleSpanner -ProjectId 'project1' -InstanceId 'instance1' -Database 'db1' -OAuthClientId '757060765381' -OauthClientSecret 'abc' Select-GoogleSpanner -Connection $conn -Table "[CData].[GoogleSpanner].Customer" -Columns @("Name","TotalDue") -Where "CustomerId='12345'"