Select-Snowflake Cmdlet
Snowflake データを検索します。
Syntax
Select-Snowflake [parameters]
Remarks
Select-Snowflake コマンドレットを使って、SQL SELECT ステートメントに似た構文を用いてSnowflake データを検索できます。
$conn = Connect-Snowflake -Url 'https://myaccount.region.snowflakecomputing.com' -User 'Admin' -Password 'test123' -Database 'Northwind' -Warehouse 'TestWarehouse' Account 'Tester1'
Select-Snowflake -Connection $conn -Table "[DemoDB].[PUBLIC].Products" -Columns @("Id","ProductName") -Where "ProductName='Konbu'"