Azure SQL Database API Reference

Overview

This page provides an overview of the Azure SQL Database API Reference, including documentation, examples, and links to key resources.

Key Components

The API Reference includes the following key components:

  • SQL Server Drivers: Provides drivers for different programming languages (e.g., .NET, Java, Python).
  • API Endpoints: Offers API endpoints for CRUD operations, data manipulation, and querying.
  • Data Types: Details about supported data types, including string, integer, datetime, and boolean.
  • SQL Statements: Examples of commonly used SQL statements.

Examples

Here are some example queries:

Get all tables in the database:

SELECT * FROM dbo.dbo;

Insert a new row:

INSERT INTO MyTable (Column1, Column2) VALUES (1, 'Value');

Links