在 TSQL 中解析 JSON

2021-12-02 00:00:00 json tsql sql-server

是否可以在TSQL中解析JSON?

我不是要创建一个 JSON 字符串;相反,我想解析作为 parameter 传入的 JSON 字符串.

I don't mean to create a JSON string; rather, I want to parse a JSON string passed in as a parameter.

推荐答案

更新:从 SQL Server 2016 在 TSQL 中解析 JSON 是现在可能.

本机不支持.您将不得不使用 CLR.就是这么简单,除非你有一个巨大的自虐倾向并且想用 SQL 编写一个 JSON 解析器

Natively, there is no support. You'll have to use CLR. It is as simple as that, unless you have a huge masochistic streak and want to write a JSON parser in SQL

通常,人们会要求从数据库获取 JSON 输出,并且互联网上有示例.但进入数据库?

Normally, folk ask for JSON output from the DB and there are examples on the internet. But into a DB?

相关文章