Select-Presto Cmdlet
Searches Presto data.
Syntax
Select-Presto [parameters]
Remarks
The Select-Presto cmdlet allows you to use a syntax similar to SQL SELECT statements to search Presto data.
$conn = Connect-Presto -Server '127.0.0.1' -Port 9200 Select-Presto -Connection $conn -Table "[Hive].[Default].Customers" -Columns @("Id","Name") -Where "Industry='Floppy Disks'"