Azure Powershell
- Azure Powershell is azure cmdlets. Cmd-Lets will be in the form of
verb-noun, Azure Powershell cmdlets will be in the form of<verb>-Az<noun> - To Search for the commands we can use a cmdlet
Get-Command `*-Az<search>`

- Once you find the command, you can search for the help by using
Get-Help -Online <cmd-let>i.e.Get-Help -Online New-AzResourceGroupRefer Here - To login into Azure from your System
Connect-AzAccount - The other way of searching cmdlets Naviagate to the Refer Here powershell docs page and expand the references section and find the cmdlets

- Searching for SQL Server creation cmd let

- NOw Lets try to Create Azure SQL Server with Single Database
- Refer Here for the script created in the class
