How Read JSON Data From URL In SQL Server

前端 未结 2 1361

I\'m trying to read JSON data from a URL in SQL Server 2008, using this code:

DECLARE @temp table (RowNum int, DATA N         


        
2条回答
  •  孤独总比滥情好
    2021-01-14 13:58

    E.J. explained it quite well, I agree with him.

    I would like to add that if you want to keep everything in database code you can try CLR procedures that are essentially written in C# but work inside SQL Server.

    See these links for details on how to do this in C#

    HTTP request with post
    How to make a GET request by using Visual C#

提交回复
热议问题