About 875,000 results
Open links in new tab
  1. Work with JSON Data in SQL Server - SQL Server | Microsoft Learn

    Jul 23, 2025 · This article provides an overview of the textual data format JSON in SQL Server, Azure SQL Database, Azure SQL Managed Instance, Azure Synapse Analytics, and SQL …

  2. SQL Server JSON

    In this tutorial, you will learn about SQL Server JSON and how to store JSON data, and retrieve JSON values.

  3. JSON in Microsoft SQL Server: A Comprehensive Guide

    Feb 28, 2019 · SQL Server provides several methods for querying and manipulating JSON data. Let's explore these capabilities, starting with basic extraction and moving to more complex …

  4. Working With JSON in SQL - GeeksforGeeks

    Jul 23, 2025 · SQL Server introduced native support for JSON handling starting from SQL Server 2016. This allows you to store JSON data in NVARCHAR columns and use SQL functions to …

  5. JSON Functions (Transact-SQL) - SQL Server | Microsoft Learn

    Jul 24, 2025 · Use the functions described in this article support querying, manipulating, and construction JSON data. Use JSON functions to validate or change JSON documents, or to …

  6. SQL Server JSON Functions JSON_OBJECTAGG and JSON

    Feb 24, 2025 · Two new T-SQL functions have been introduced to create JSON artifacts from your data: JSON_OBJECTAGG and JSON_ARRAYAGG. Both are aggregation functions and …

  7. How to Export SQL Server Query Results as JSON with FOR JSON

    Aug 28, 2025 · If you’ve ever had to send data to a web service, feed an API, or just save query results in a structured text format, JSON is a natural choice. Instead of writing complex …

  8. SQL Server JSONSQL Tutorial

    This blog explores SQL Server JSON support and JSON functions in-depth, helping developers and database administrators understand and leverage these features to handle modern data …

  9. SQL Server FOR JSON Clause

    First, specify the FOR JSON clause at the end of a query. Second, provide the JSON output format in the JSON format. The FOR JSON AUTO formats JSON automatically based on the …

  10. Working with JSON functions in SQL Server - Jonathan Crozier

    Mar 27, 2025 · With this in mind, I wanted to write a post that covers some of the key JSON functions you’ll need to know when working directly with JSON in a SQL Server (or Azure …