I have a stored procedure with a simple select statement in which I return json:
SELECT A, B, C
FROM 123
FOR JSON AUTO
This works fine. However, the name of the result, if I call the stored procedure, is something like: JSON_F52E2B61-18A1-11d1-B105-00805F49916B
How can I specify the name of the return value?
Thanks!