Azure Cosmos DB - SQL API

Introduction
Azure Cosmos DB is a globally distributed, multi-model database service that enables developers to build applications that can scale rapidly and reliably, regardless of where their users are located. The SQL API provides a familiar interface for querying and manipulating data stored in Cosmos DB.
Key Features
  • Global Distribution: Data is replicated across multiple Azure regions, providing low latency and high availability.
  • Multi-Model: Supports NoSQL document database, key-value, graph, and table APIs.
  • Scalability: Automatically scales to handle increasing workloads.
  • Flexible Data Model: Documents can contain nested JSON objects, arrays, and more.
  • SQL API: Familiar SQL syntax for querying and manipulating data.
Example Query
Here's a sample SQL query you might use:
                        SELECT * FROM c WHERE partitionKey = 'userId' AND city = 'New York'