My sql query is look like
SELECT cate_id, MAX( book_price)
FROM book_mast
GROUP BY cate_id;
I'm new to dynamodb but I'm trying to translate the previous query into dynamoose query.
My sql query is look like
SELECT cate_id, MAX( book_price)
FROM book_mast
GROUP BY cate_id;
I'm new to dynamodb but I'm trying to translate the previous query into dynamoose query.