開發 Azure Storage
Shahzad Mian
Content developer, DataCamp









"PartitionKey": "CustomerA",
"RowKey": "1001",
"Name": "Ava",
"Points": 120

更新會以新值取代 entity 的屬性。
刪除會完全移除 entity。
指令範例:
table_client.update_entity(entity)
table_client.delete_entity("CustomerA","1001")
對簡單、可擴充、成本效益佳的結構化資料,用 Table Storage。
每筆紀錄都需要 PartitionKey 和 RowKey。
若需更豐富查詢、全球複寫或多資料模型,改用 Cosmos DB。
兩者可在混合式資料架構中互補。


開發 Azure Storage