Q.68. What is Azure table primary key?
The Azure table's primary key = PK + RK which means Partition Key + Row Key.
As in a relational database table, the primary key in the azure table uniquely identifies each row.
The primary key for an Azure table is the combination of PartitionKey and RowKey properties which forms a single clustered index. Note that all entities in a Table are sorted by Partition Key and then Row Key.
Queries which specify these keys will be more efficient, and all results returned are sorted by PartitionKey and then by RowKey. Both properties are specified as string values and may be up to 1 KB in size. It is the developer's responsibility to provide values for these properties when a new entity is inserted, and to include them in any update or delete operation on an entity. When constructing an insert, update, and delete query, you must include the RowKey property in it.
While deciding the Partition Key and RowKey, we should remember that the values specified impacts scalability, query performance and operations efficiency.
So, Azure Table's primary key is the combination pair of Partition key and Row key.
As in a relational database table, the primary key in the azure table uniquely identifies each row.
The primary key for an Azure table is the combination of PartitionKey and RowKey properties which forms a single clustered index. Note that all entities in a Table are sorted by Partition Key and then Row Key.
Queries which specify these keys will be more efficient, and all results returned are sorted by PartitionKey and then by RowKey. Both properties are specified as string values and may be up to 1 KB in size. It is the developer's responsibility to provide values for these properties when a new entity is inserted, and to include them in any update or delete operation on an entity. When constructing an insert, update, and delete query, you must include the RowKey property in it.

While deciding the Partition Key and RowKey, we should remember that the values specified impacts scalability, query performance and operations efficiency.
So, Azure Table's primary key is the combination pair of Partition key and Row key.
See More Questions and Answers on - Azure Table Storage
- Why should i use Azure table storage?
- What are the benefits of table storage?
- Difference between sql database table and Azure storage table?
- Explain Azure table storage data model?
- why to partition Azure table?
- Guidelines on how to choose partition key and row key?
- Explain how partition key is linked to scalability?
- How do partitions work in storage services like blobs and queues?
- What are entity group transactions?