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