Reputation: 49
I want to select two columns from the table so is it possible to do that or i have to retrieve whole table.
Upvotes: 1
Views: 320
Reputation: 21134
The App Engine data store is not a relational database.
The fundamental unit of data storage are called an entity. You always fetch the whole entity, and not a subset of the entity.
For more information look at the App Engine Datastore API documentation as well as the Low Level API documentation.
Upvotes: 4