I have a SQL table set up that stores .json files as base-64 encoded text of type varchar. Is there a way I can convert these files to JSON string using only SQL statements? I'm just trying to retrieve the JSON string from the encoded files.
I've tried many of the T-SQL JSON functions. However, they only work on JSON strings, not JSON documents.