PARSE()

Returns the result of an expression, translated to the requested data type in SQL Server.

Signature

PARSE ( string_value AS data_type [ USING culture ] )

Parameters

  • string_value — nvarchar(4000) value representing the formatted value to parse into the specified data type.
  • data_type — Literal value representing the data type requested for the result.
  • culture — Optional string that identifies the culture in which *string_value* is formatted.

Examples

SELECT PARSE('Monday, 13 December 2010' AS datetime2 USING 'en-US') AS Result;
2010-12-13 00:00:00.0000000
SELECT PARSE('€345,98' AS money USING 'de-DE') AS Result;
345.9800

Run against SQL Server 16.0.4265.3 on 2026-09-13. This is the output we got, not the documentation’s.

Available on

  • SQL Server 2017 and later
  • Azure SQL Database
  • Azure SQL Managed Instance
  • Azure Synapse Analytics
  • Microsoft Fabric warehouse
  • Fabric SQL database

Signature and description adapted from the Microsoft SQL documentation, used under the CC BY 4.0. SQL Server and Azure are trademarks of the Microsoft group of companies. This page is not affiliated with Microsoft.