Reputation: 349
I am using dynamo db(no sql) in .net
I have two table is bellowing
so there i want to access { itemid ,itemname,categoryid,categoryname)
and how i create table structure .
Please help me.
Upvotes: 1
Views: 2909
Reputation: 270164
Amazon DynamoDB is a NoSQL (non-relational) database, which means it is not possible to "join" tables together.
If you wish to combine information from these two tables (eg via itemid
), you would need to retrieve data separately from each table and combine the information within your application.
You can create indexes on tables (eg the Category table might have an index on itemid
) that would make it easier to retrieve specific data.
Upvotes: 6