Query relational data in Azure

Introduction to SQL

SQL statement types

StatementDescriptionApplied
SELECTSelect/Read rows from a tableBy Default, Every Row at a time
INSERTInsert new rows into a tableOne Row at a time
UPDATEEdit/Update existing rowsBy Default, Every Row at a time
DELETEDelete existing rows in a tableBy Default, Every Row at a time
DROPall the rows in that table are lost.By Default, Every Row at a time

#### Data Types : 1) INT 2) VARCHAR 3) NOT NULL

Retrieve connection information for Azure SQL Database

Tools to query data held in Azure SQL Database:

Find the details about using the tools

Retrieve connection information for Azure Database for PostgreSQL

Retrieve connection information for Azure Database for MySql

<- Back to Main Menu