Read a product
Reads a single product record from the Products table by specifying the Id. This example demonstrates how to filter results to a specific product using the WHERE clause.
SELECT * FROM Products
WHERE Id = 'abc'
Reads a single product record from the Products table by specifying the Id. This example demonstrates how to filter results to a specific product using the WHERE clause.
SELECT * FROM Products
WHERE Id = 'abc'