Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 1.64 KB

File metadata and controls

47 lines (36 loc) · 1.64 KB
title VERSION (Transact-SQL)
description Version - Transact SQL Metadata functions
author MikeRayMSFT
ms.author mikeray
ms.reviewer
ms.date 06/10/2016
ms.prod sql
ms.prod_service synapse-analytics, pdw
ms.technology t-sql
ms.topic reference
ms.custom
dev_langs
TSQL
monikerRange >= aps-pdw-2016 || = azure-sqldw-latest

Version - Transact SQL Metadata functions

[!INCLUDEapplies-to-version/asa-pdw]

Returns the version of [!INCLUDEssSDW] or [!INCLUDEssPDW_md] running on the appliance.

Topic link icon Transact-SQL Syntax Conventions (Transact-SQL)

Syntax

-- Azure Synapse Analytics and Parallel Data Warehouse  
VERSION ( )  

Arguments

General Remarks

A table name must be specified in a FROM clause for this function to return results. A result row will be returned for each row in the result set for the query; use TOP (Transact-SQL) to limit the number of returned rows.

Examples

The following example returns the version number.

SELECT VERSION();  

See Also

SESSION_ID (Transact-SQL)
DB_NAME (Transact-SQL)