Select-MariaDB Cmdlet
Searches MariaDB data.
Syntax
Select-MariaDB [parameters]
Remarks
The Select-MariaDB cmdlet allows you to use a syntax similar to SQL SELECT statements to search MariaDB data.
$conn = Connect-MariaDB -User 'myUser' -Password 'myPassword' -Database 'NorthWind' -Server 'myServer' -Port 3306 Select-MariaDB -Connection $conn -Table "Orders" -Columns @("ShipName","ShipCity") -Where "ShipCountry='USA'"