Skip to content

Instantly share code, notes, and snippets.

@nfarah86
Created December 11, 2020 05:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nfarah86/3133f1d99a98142bcf24720b11ed60f5 to your computer and use it in GitHub Desktop.
Save nfarah86/3133f1d99a98142bcf24720b11ed60f5 to your computer and use it in GitHub Desktop.
A query to find all customers in DynamoDB
SELECT
c.full_name,
c.email,
c.orders,
c.active,
c.created_at,
c.last_updated,
c.orders
FROM
commons.customer_orders c
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment