> For the complete documentation index, see [llms.txt](https://www.techwithtyler.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.techwithtyler.dev/cloud-security/azure/azure-services-info/databases/azure-sql-database.md).

# Azure SQL Database

## Connecting to Azure SQL Database

{% code overflow="wrap" %}

```zsh
brew install sqlcmd

sqlcmd -S <server-name>.database.windows.net -d <database-name> -U <user-name> -P <password>
```

{% endcode %}
