How to write a query from Amazon DynamoDB?

How do I write an SQL using data from dynamoDB? When I open a PostgreSQL resource, I'm easily able to write a SQL query but I can't do it when I'm on a dynamoDB resource. I want to write a query that matches information from a PostgreSQL resource to a dynamoDB resource

Hi Anthony, in general sql queries are for sql type of databases. But dynamodb is not a sql database. You can ultimately do the same sort of things in dynamodb, like "get me all the records/rows of patients who are cats." But the syntax is different. You could probably use a chatbot how to translate your sql query into a way to query dynamodb.