Azure SQL Database Reference
Core Concepts
Understand the fundamental building blocks of Azure SQL Database, including databases, elastic pools, and serverless compute.
Resource Management
Learn how to manage your SQL Database resources, including creation, configuration, scaling, and monitoring.
Security
Explore security features like authentication, authorization, data encryption, and threat detection.
APIs & SDKs
Find information on REST APIs, PowerShell cmdlets, Azure CLI, and SDKs for programmatic access.
Troubleshooting & Support
Access resources for diagnosing and resolving common issues, plus information on getting support.
Tutorials & Quickstarts
Get started quickly with step-by-step guides and practical examples for common scenarios.
-- Example T-SQL query for Azure SQL Database
SELECT TOP 10
name,
create_date,
compatibility_level
FROM
sys.databases
WHERE
database_id > 4;