Select-AdobeCommerce Cmdlet
Searches AdobeCommerce data.
Syntax
Select-AdobeCommerce [parameters]
Remarks
The Select-AdobeCommerce cmdlet allows you to use a syntax similar to SQL SELECT statements to search AdobeCommerce data.
$conn = Connect-AdobeCommerce -User 'admin' -Password 'admin' -Url 'https://myadobecommercehost' Select-AdobeCommerce -Connection $conn -Table "Products" -Columns @("Price","Name") -Where "EntityId='238'"