Azure Storage के लिए डेवलप करें
Shahzad Mian
Content developer, DataCamp









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

Updating किसी entity की properties को नए मानों से बदलता है।
Deleting entity को पूरी तरह हटाता है।
example commands:
table_client.update_entity(entity)
table_client.delete_entity("CustomerA","1001")
simple, scalable, और cost-efficient structured data के लिए Table Storage उपयोग करें।
हर रिकॉर्ड में PartitionKey और RowKey अनिवार्य हैं।
richer querying, global replication, या multiple data models के लिए Cosmos DB चुनें।
hybrid data architectures में दोनों सेवाएँ एक-दूसरे को पूरक कर सकती हैं।


Azure Storage के लिए डेवलप करें