on 2020 May 05 4:54 AM
Is there any equivalent to the OPENXML operator for the case of JSON?
I looked in the documentation for something like OPENJSON but couldn't find!!
Any ideas please?
Request clarification before answering.
Well, it's not called OPENJSON and it's not an operator but a builtin stored procedure:
sp_parse_json system procedure.
Aside: I still generally prefer the DCX doc format but the description there is somehwat outdated because the parameter desription has been modified for 170.10, cf. maxlen vs. maxdepth...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks a lot. Interesting was that during calling this procedure a variable var would be automatic created and never implicitly dropped.
It took me a while to figure out why the second call of the procedure (within the same connection) with same var and different "json" did not work!
But now is clear!
One more question:
In case of (SQL ROW) how can I return the value of a subelement?
For example I can retrieve the Product_Name using:
declare json_data long varchar;
set json_data = '{"id":10, "Product_Name":"testname", "Product_Colors":{"color":"white", "background":"black"}}';
select sql_array.Product_Name;
But How can I retrieve the background of the product (the following block didn't work)?
declare json_data long varchar;
set json_data = '{"id":10, "Product_Name":"testname", "Product_Colors":{"color":"white", "background":"black"}}';
select sql_array.Product_Colors.background;
But at the end it worked! I only needed to add parentheses.
begin
declare json_data long varchar;
set json_data = '{"id":10, "Product_Name":"testname", "Product_Colors":{"color":"white", "background":"black"}}';
call sp_parse_json ('sql_array', json_data);
select (sql_array.Product_Colors).color;
end
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try this example.
CREATE OR REPLACE VARIABLE arrayvar ARRAY OF ROW( "id" int, "product_name" varchar(32), "product_colors" ARRAY OF ROW( color varchar(12), bbackground varchar(12) ) ); CALL sp_parse_json( 'arrayvar', '[{"id":10, "Product_Name":"testname", "Product_Colors":{"color":"white", "background":"black"}}, {"id":11, "Product_Name":"testname2", "Product_Colors":{"color":"blue", "background":"pink"}}]' ); SELECT arrayvar[[x.row_num]].id AS id, arrayvar[[x.row_num]].product_name AS product_name, arrayvar[[x.row_num]].product_colors.color AS color, arrayvar[[x.row_num]].product_colors.background AS background FROM sa_rowgenerator(1,CARDINALITY(arrayvar)) AS x;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Jack, I'm by no means a JSON expert at all - but is "product_colors" here not merely of type ROW instead of "ARRAY OF ROW"?
Yes, you are correct, and probably as much or more an expert on JSON as I am. I was adapting another example and I could have / should have simplified this.
As Volker wisely suggests, this works too: "product_colors" ROW( color varchar(12), bbackground varchar(12) )
My last code snipped was not complete!
I write once more a working code block example here:
begin
declare json_data long varchar;
declare ss row ("color" varchar(10), "background" varchar(10));
set json_data = '{"id":10, "Product_Name":"testname", "Product_Colors":{"color":"white", "background":"black"}}';
call sp_parse_json ('sql_array', json_data);
select sql_array.Product_Colors into ss;
select ss.color;
end
But I wonder why this one does not work (despite it looks logically the same):
begin
declare json_data long varchar;
set json_data = '{"id":10, "Product_Name":"testname", "Product_Colors":{"color":"white", "background":"black"}}';
call sp_parse_json ('sql_array', json_data);
select sql_array.Product_Colors.color;
end
Congrats. I was about to say "add parentheses to force the order of precedence" but I see that you beat me to it. Converted your comment to an answer.
User | Count |
---|---|
82 | |
29 | |
9 | |
8 | |
7 | |
7 | |
7 | |
6 | |
6 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.