gpt4 book ai didi

sql - 如何通过SQL查询检查是否有JSON函数?

转载 作者:行者123 更新时间:2023-12-02 19:36:15 25 4
gpt4 key购买 nike

JSON Function in SQL 2016例如 JSON_VALUE、JSON_QUERY 等。

我想在查询中使用它,但我仍然有运行 SQL 2014 的旧服务器,例如,它们不允许使用新功能。

我可以通过查询检查是否有像 JSON_VALUE 这样的函数?类似的东西

IF operator_exists('JSON_VALUE')
SELECT JSON_VALUE([Value], '$.MyPath')
FROM [dbo].[MyTable]
WHERE [Name] = 'MyProperty'
ELSE
SELECT ''

谢谢。

更新

如果我像这样使用 ckecking (感谢 Rigerta Demiri)

DECLARE @compatibility_level int
SELECT @compatibility_level= compatibility_level FROM sys.databases WHERE name = 'MyDbName'
IF (@compatibility_level >= 130)
BEGIN
SELECT JSON_VALUE([Value], '$.MyPath')
FROM [dbo].[MyTable]
WHERE [Name] = 'MyProperty'
END
SELECT 'not allowed'

...我收到以下 SQL 异常(在 2014 SQL Studio 上):

'JSON_VALUE' is not a recognized built-in function name

enter image description here

可能是 2014 年 MSSQL 解释器尝试解析所有代码块,但无法理解 JSON_VALUE 是什么?

最佳答案

由于它取决于您安装的 SQL Server 版本,并且由于您有不同的实例(甚至比 SQL Server 2016 更旧的实例),您只需检查您尝试查询的数据库的兼容性级别是否相同到 130。

您可以执行以下操作:

declare @compatibility_level int
select @compatibility_level= compatibility_level from sys.databases where name = 'TestDB'

if (@compatibility_level >= 130)
begin
declare @jsoninfo nvarchar(max)

set @jsoninfo=N'{
"info":{
"type":1,
"address":{
"town":"bristol",
"county":"avon",
"country":"england"
},
"tags":["sport", "water polo"]
},
"type":"basic"
}'

select json_value(@jsoninfo,'$.info.address.town') as town
end

The OPENJSON function is available only under compatibility level 130 (or higher).

正如您在 documentation 中所读到的那样.

EDIT:

发生这种情况是因为显然“SQL Server 不知道或关心将输入条件的哪个分支;无论如何它都会验证批处理中的所有语句。”正如这篇文章的回答所述:T-Sql appears to be evaluating “If” statement even when the condition is not true .

因此,解决方法是将整个语句创建为动态字符串。像这样:

declare @compatibility_level int
select @compatibility_level= compatibility_level from sys.databases where name = 'TradingDWH'
if (@compatibility_level >= 130)
begin

declare @sql nvarchar(max);
set @sql = ' declare @jsoninfo nvarchar(max) ' + ' set @jsoninfo=N''{ "info":{' + ' "type":1, "address":{ "town":"bristol", "county":"avon", "country":"england" }, "tags":["sport", "water polo"] }, "type":"basic" }'
set @sql = @sql + 'select json_value(@jsoninfo,''$.info.address.town'') as town'
select @sql
--exec sp_executesql @sql

-- or your own query, like this:
declare @sql2 nvarchar(max);
declare @MyProperty nvarchar(100) = 'YourProperty'

set @sql2 = ' SELECT JSON_VALUE([Value], ''$.MyPath'') '
set @sql2 = @sql2 + 'FROM [dbo].[MyTable] WHERE [Name] = @MyProperty '
select @sql2
--exec sp_executesql @sql2, N'@MyProperty nvarchar(100)', @MyProperty

end
else
begin
select 'Version prior to 130!' as [message]
end

您可以阅读有关动态 SQL 的更多信息的众多资源之一是 Don’t Fear Dynamic SQL .

关于sql - 如何通过SQL查询检查是否有JSON函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44699201/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com