I\'m trying to read JSON data from a URL in SQL Server 2008, using this code:
DECLARE @temp table (RowNum int, DATA N
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#