When can I save JSON or XML data in an SQL Table
The main questions are What are you going to do with this data? and How are you filtering/sorting/joining/manipulating this data? JSON (like XML) is great for data exchange, small storage and generically defined structures, but it cannot participate in typical actions you run within your RDBMS. In most cases it will be better to transfer … Read more