转载自: http://blog.csdn.net/yapingxin/article/details/16913275

有小改动..

支持复杂结构的使用..

使用Parent_ID来对应Object_ID产生关系就好..

实现对Json数据的从文字到表变量的转换..

例:

[
{
"FieldName": "DateKey",
"Title": "汇总后日期",
"Description": "",
"DataType": 4,
"DataGroup": 0,
"SumMethod": 0,
"DataSumField": "",
"MaxLenght": 100,
"IsAllowNull": false,
"UnionFieldName": "",
"SortID": -99,
"IsSourceField": true,
"IsLabelSearch": true,
"IsPartition": true,
"IsSQLBSumField": true
},
{
"FieldName": "MemberNumber",
"Title": "会员卡编号",
"Description": "",
"DataType": 2,
"DataGroup": 0,
"SumMethod": 0,
"DataSumField": "",
"MaxLenght": 100,
"IsAllowNull": false,
"UnionFieldName": "",
"SortID": 0,
"IsSourceField": true,
"IsLabelSearch": false,
"IsPartition": false,
"IsSQLBSumField": true
},
{
"FieldName": "PageNo",
"Title": "频道页编号",
"Description": "",
"DataType": 2,
"DataGroup": 0,
"SumMethod": 0,
"DataSumField": "",
"MaxLenght": 100,
"IsAllowNull": false,
"UnionFieldName": "",
"SortID": 1,
"IsSourceField": true,
"IsLabelSearch": true,
"IsPartition": false,
"IsSQLBSumField": true
}
]
以上Json调用函数后输出一下图片中的内容..
Declare @str nvarchar(max)
set @str='上边的Json字符串'
Select * from parseJSON(@str)
 


--下边的函数..执行就好..

SET ANSI_NULLS ON;
SET QUOTED_IDENTIFIER ON;
GO IF NOT EXISTS(
select * from sys.objects where
object_id = OBJECT_ID(N'dbo.ParseJSON') AND
type in (N'FN', N'IF', N'TF', N'FS', N'FT', N'F'))
BEGIN
EXEC('CREATE FUNCTION dbo.ParseJSON() RETURNS @hierarchy table( id int ) AS BEGIN RETURN END;');
PRINT 'FUNCTION dbo.ParseJSON is created.';
END GO
ALTER FUNCTION [dbo].[ParseJSON]( @json nvarchar(max) )
RETURNS @hierarchy table
(
object_id int NOT NULL, /* [0 -- Not an object] each list or object has an object id. This ties all elements to a parent. Lists are treated as objects here */
parent_id int NOT NULL, /* [0 -- Root] if the element has a parent then it is in this column. The document is the ultimate parent, so you can get the structure from recursing from the document */
name nvarchar(2000), /* the name of the object */
stringvalue nvarchar(4000) NOT NULL, /*the string representation of the value of the element. */
valuetype nvarchar(100) NOT NULL, /* the declared type of the value represented as a string in stringvalue*/
bigintvalue bigint,
boolvalue bit
) AS BEGIN
DECLARE
@firstobject int, --the index of the first open bracket found in the JSON string
@opendelimiter int, --the index of the next open bracket found in the JSON string
@nextopendelimiter int,--the index of subsequent open bracket found in the JSON string
@nextclosedelimiter int,--the index of subsequent close bracket found in the JSON string
@type nvarchar(10),--whether it denotes an object or an array
@nextclosedelimiterChar CHAR(1),--either a '}' or a ']'
@contents nvarchar(MAX), --the unparsed contents of the bracketed expression
@start int, --index of the start of the token that you are parsing
@end int,--index of the end of the token that you are parsing
@param int,--the parameter at the end of the next Object/Array token
@endofname int,--the index of the start of the parameter at end of Object/Array token
@token nvarchar(4000),--either a string or object
@value nvarchar(MAX), -- the value as a string
@name nvarchar(200), --the name as a string
@parent_id int,--the next parent ID to allocate
@lenjson int,--the current length of the JSON String
@characters NCHAR(62),--used to convert hex to decimal
@result BIGINT,--the value of the hex symbol being parsed
@index SMALLINT,--used for parsing the hex value
@escape int; --the index of the next escape character /* in this temporary table we keep all strings, even the names of the elements, since they are 'escaped'
* in a different way, and may contain, unescaped, brackets denoting objects or lists. These are replaced in
* the JSON string by tokens representing the string
*/
DECLARE @strings table
(
string_id int IDENTITY(1, 1),
stringvalue nvarchar(MAX)
) /* initialise the characters to convert hex to ascii */
SET @characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
SET @parent_id = 0; /* firstly we process all strings. This is done because [{} and ] aren't escaped in strings, which complicates an iterative parse. */
WHILE 1 = 1 /* forever until there is nothing more to do */
BEGIN
SET @start = PATINDEX('%[^a-zA-Z]["]%', @json collate SQL_Latin1_General_CP850_Bin); /* next delimited string */ IF @start = 0 BREAK; /*no more so drop through the WHILE loop */ IF SUBSTRING(@json, @start+1, 1) = '"'
BEGIN /* Delimited name */
SET @start = @start+1;
SET @end = PATINDEX('%[^\]["]%', RIGHT(@json, LEN(@json+'|')-@start) collate SQL_Latin1_General_CP850_Bin);
END IF @end = 0 /*no end delimiter to last string*/
BREAK; /* no more */ SELECT @token = SUBSTRING(@json, @start+1, @end-1) /* now put in the escaped control characters */
SELECT @token = REPLACE(@token, from_string, to_string)
FROM
(
SELECT '\"' AS from_string, '"' AS to_string
UNION ALL
SELECT '\\', '\'
UNION ALL
SELECT '\/', '/'
UNION ALL
SELECT '\b', CHAR(08)
UNION ALL
SELECT '\f', CHAR(12)
UNION ALL
SELECT '\n', CHAR(10)
UNION ALL
SELECT '\r', CHAR(13)
UNION ALL
SELECT '\t', CHAR(09)
) substitutions; SET @result = 0;
SET @escape = 1; /*Begin to take out any hex escape codes*/
WHILE @escape > 0
BEGIN /* find the next hex escape sequence */
SET @index = 0;
SET @escape = PATINDEX('%\x[0-9a-f][0-9a-f][0-9a-f][0-9a-f]%', @token collate SQL_Latin1_General_CP850_Bin); IF @escape > 0 /* if there is one */
BEGIN WHILE @index < 4 /* there are always four digits to a \x sequence */
BEGIN
/* determine its value */
SET @result = @result + POWER(16, @index) * (CHARINDEX(SUBSTRING(@token, @escape + 2 + 3 - @index, 1), @characters) - 1);
SET @index = @index + 1;
END /* and replace the hex sequence by its unicode value */
SET @token = STUFF(@token, @escape, 6, NCHAR(@result));
END END /* now store the string away */
INSERT INTO @strings (stringvalue) SELECT @token; /* and replace the string with a token */
SET @json = STUFF(@json, @start, @end + 1, '@string' + CONVERT(nvarchar(5), @@identity)); END /* all strings are now removed. Now we find the first leaf. */
WHILE 1 = 1 /* forever until there is nothing more to do */
BEGIN SET @parent_id = @parent_id + 1; /* find the first object or list by looking for the open bracket */
SET @firstobject = PATINDEX('%[{[[]%', @json collate SQL_Latin1_General_CP850_Bin); /*object or array*/ IF @firstobject = 0 BREAK; IF (SUBSTRING(@json, @firstobject, 1) = '{')
SELECT @nextclosedelimiterChar = '}', @type = 'object';
ELSE
SELECT @nextclosedelimiterChar = ']', @type = 'array'; SET @opendelimiter = @firstobject; WHILE 1 = 1 --find the innermost object or list...
BEGIN
SET @lenjson = LEN(@json+'|') - 1; /* find the matching close-delimiter proceeding after the open-delimiter */
SET @nextclosedelimiter = CHARINDEX(@nextclosedelimiterChar, @json, @opendelimiter + 1); /* is there an intervening open-delimiter of either type */
SET @nextopendelimiter = PATINDEX('%[{[[]%',RIGHT(@json, @lenjson-@opendelimiter) collate SQL_Latin1_General_CP850_Bin); /*object*/ IF @nextopendelimiter = 0 BREAK; SET @nextopendelimiter = @nextopendelimiter + @opendelimiter; IF @nextclosedelimiter < @nextopendelimiter BREAK; IF SUBSTRING(@json, @nextopendelimiter, 1) = '{'
SELECT @nextclosedelimiterChar = '}', @type = 'object';
ELSE
SELECT @nextclosedelimiterChar = ']', @type = 'array'; SET @opendelimiter = @nextopendelimiter;
END /* and parse out the list or name/value pairs */
SET @contents = SUBSTRING(@json, @opendelimiter+1, @nextclosedelimiter-@opendelimiter - 1); SET @json = STUFF(@json, @opendelimiter, @nextclosedelimiter - @opendelimiter + 1, '@' + @type + CONVERT(nvarchar(5), @parent_id)); WHILE (PATINDEX('%[A-Za-z0-9@+.e]%', @contents collate SQL_Latin1_General_CP850_Bin)) < > 0
BEGIN /* WHILE PATINDEX */ IF @type = 'object' /*it will be a 0-n list containing a string followed by a string, number,boolean, or null*/
BEGIN SET @end = CHARINDEX(':', ' '+@contents); /*if there is anything, it will be a string-based name.*/
SET @start = PATINDEX('%[^A-Za-z@][@]%', ' ' + @contents collate SQL_Latin1_General_CP850_Bin); /*AAAAAAAA*/ SET @token = SUBSTRING(' '+@contents, @start + 1, @end - @start - 1);
SET @endofname = PATINDEX('%[0-9]%', @token collate SQL_Latin1_General_CP850_Bin);
SET @param = RIGHT(@token, LEN(@token)-@endofname + 1); SET @token = LEFT(@token, @endofname - 1);
SET @contents = RIGHT(' ' + @contents, LEN(' ' + @contents + '|') - @end - 1); SELECT @name = stringvalue FROM @strings WHERE string_id = @param; /*fetch the name*/ END
ELSE
BEGIN
SET @name = null;
END SET @end = CHARINDEX(',', @contents); /*a string-token, object-token, list-token, number,boolean, or null*/ IF @end = 0
SET @end = PATINDEX('%[A-Za-z0-9@+.e][^A-Za-z0-9@+.e]%', @contents+' ' collate SQL_Latin1_General_CP850_Bin) + 1; SET @start = PATINDEX('%[^A-Za-z0-9@+.e][A-Za-z0-9@+.e]%', ' ' + @contents collate SQL_Latin1_General_CP850_Bin); /*select @start,@end, LEN(@contents+'|'), @contents */ SET @value = RTRIM(SUBSTRING(@contents, @start, @end-@start));
SET @contents = RIGHT(@contents + ' ', LEN(@contents+'|') - @end); IF SUBSTRING(@value, 1, 7) = '@object'
INSERT INTO @hierarchy (name, parent_id, stringvalue, object_id, valuetype)
SELECT @name, @parent_id, SUBSTRING(@value, 8, 5), SUBSTRING(@value, 8, 5), 'object'; ELSE
IF SUBSTRING(@value, 1, 6) = '@array'
INSERT INTO @hierarchy (name, parent_id, stringvalue, object_id, valuetype)
SELECT @name, @parent_id, SUBSTRING(@value, 7, 5), SUBSTRING(@value, 7, 5), 'array';
ELSE
IF SUBSTRING(@value, 1, 7) = '@string'
INSERT INTO @hierarchy (name, parent_id, stringvalue, valuetype, object_id)
SELECT @name, @parent_id, stringvalue, 'string', 0
FROM @strings
WHERE string_id = SUBSTRING(@value, 8, 5);
ELSE
IF @value IN ('true', 'false')
INSERT INTO @hierarchy (name, parent_id, stringvalue, valuetype, object_id, boolvalue)
SELECT @name, @parent_id, @value, 'boolean', 0, CASE @value WHEN 'true' THEN 1 ELSE 0 END;
ELSE
IF @value = 'null'
INSERT INTO @hierarchy (name, parent_id, stringvalue, valuetype, object_id)
SELECT @name, @parent_id, @value, 'null', 0;
ELSE
IF PATINDEX('%[^0-9]%', @value collate SQL_Latin1_General_CP850_Bin) > 0
INSERT INTO @hierarchy (name, parent_id, stringvalue, valuetype, object_id)
SELECT @name, @parent_id, @value, 'real', 0;
ELSE
INSERT INTO @hierarchy (name, parent_id, stringvalue, valuetype, object_id, bigintvalue)
SELECT @name, @parent_id, @value, 'bigint', 0, CONVERT(BIGINT,@value); END /* WHILE PATINDEX */ END /* WHILE 1=1 forever until there is nothing more to do */ INSERT INTO @hierarchy (name, parent_id, stringvalue, object_id, valuetype)
SELECT '', 0, '', @parent_id - 1, @type; RETURN; END GO PRINT 'FUNCTION dbo.ParseJSON is modified.';
GO

最新文章

  1. 接入统计Crash的工具Crashlytics-ios
  2. iOS 收起键盘的几种方式
  3. arm 2440 linux 应用程序 nes 红白机模拟器 第2篇 InfoNES
  4. PHP连接MySQL的时候报错SQLSTATE[HY000] [2002] No such file or directory
  5. 学习OpenStack之 (4): Linux 磁盘、分区、挂载、逻辑卷管理 (Logical Volume Manager)
  6. ASP.NET利用WINRar实现在线解压缩文件
  7. 转:Unicode汉字编码表
  8. (12)odoo各种提前期和时间
  9. 深入浅出C++引用(Reference)类型
  10. android Mvp简单实用
  11. IO库 8.5
  12. JFree图表
  13. .net4.5部署到docker容器
  14. Linux从入门到进阶全集——【第十四集:Shell编程】
  15. &lt;HTML深入浅出&gt; 读书笔记
  16. HDU 2586 How far away(dfs+邻接表)
  17. canvas拖拽效果
  18. js requestAnimationFrame
  19. python类与对象各个算数运算魔法方法总结
  20. sqlserver job 执行时间

热门文章

  1. 使用word写CSDN博客文章
  2. 编写高质量代码改善C#程序的157个建议——建议107:区分静态类和单例
  3. HBASE的优化、hadoop通用优化,Linux优化,zookeeper优化,基础优化
  4. Gym - 100989H (贪心)
  5. oracle 非sys用户创建新用户 授权后 plsql看不到视图
  6. opencv——阈值分割图像
  7. 20145233《网络对抗》Exp7 DNS网络欺诈技术防范
  8. C#基础入门 三
  9. 关于webRTC
  10. 【git】常用命令