Introduction
Introduction
()
What you should know
()
Instructions on how to use exercise files
()
1. Create a New Azure SQL Database
Create a new Azure subscription
()
Create a new Azure SQL database
()
Configure the Azure SQL Server firewall
()
Connect with SQL Server Management Studio
()
Create a new SSMS project
()
2. One Table
CREATE TABLE <table1> (..., ...)
()
SELECT * FROM <table1>
()
INSERT
()
SELECT, WHERE
()
ALTER TABLE <table1> ADD <column>
()
SELECT, WHERE
()
UPDATE
()
DELETE
()
3. Data Types
ALTER TABLE <table1> ADD <column>
()
SELECT <not star> FROM <table1>
()
SELECT <data conversion> FROM <table1>
()
Numbers
()
Text
()
4. Two Tables
CREATE TABLE <table2> (..., ...)
()
INSERT waterfalls
()
SELECT, INNER JOIN, ON
()
SELECT, OUTER JOIN, ON
()
Formatting results
()
Filtering results
()
5. Aggregates, Sorting, and Views
Calculations with GROUP BY
()
ORDER BY
()
Create a view to store a query
()
6. Azure SQL Tasks
CREATE USER
()
Azure portal tasks
()
Ex_Files_Azure_SQL_Querying.zip
(338 KB)