Postgresql json-generation from dynamic SQL
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
Is there any way of using the json-functions, such as json_agg when you're using dynamic SQL?
The documentation leads to think that ref cursors should be used when returning multiple rows. But then iterating over ref cursors appear to involve fetch/loop etc or is there a way of doing some sort of json_agg from (select * from my_ref_cursor)?
Of course there is the option of ref cursor + loop + concating json rows one at a time but that doesn't sound very effective.
Thanks in advance,
Nik
json postgresql
add a comment |
Is there any way of using the json-functions, such as json_agg when you're using dynamic SQL?
The documentation leads to think that ref cursors should be used when returning multiple rows. But then iterating over ref cursors appear to involve fetch/loop etc or is there a way of doing some sort of json_agg from (select * from my_ref_cursor)?
Of course there is the option of ref cursor + loop + concating json rows one at a time but that doesn't sound very effective.
Thanks in advance,
Nik
json postgresql
1
It should be possible, but without seeing your code that uses dynamic SQL this is impossible to answer. Why can't you integrate those json functions into your dynamic SQL?
– a_horse_with_no_name
Nov 23 '18 at 8:24
Hmm, you can do that? I'll give it a try, I was stuck with the idea that the generation of the input the the json should be dynamic but why not the whole query?
– Nicklas Karlsson
Nov 23 '18 at 8:27
execute format('select to_jsonb(t) from %I as t', some_variable)
– a_horse_with_no_name
Nov 23 '18 at 8:28
do $$ declare s text := 'select json_agg(c) from (select * from company) c '; j json; begin execute s into j; raise notice '%', j; end; $$
Could do the job, the rest is just string manipulation. Thanks for the pointer
– Nicklas Karlsson
Nov 23 '18 at 8:30
add a comment |
Is there any way of using the json-functions, such as json_agg when you're using dynamic SQL?
The documentation leads to think that ref cursors should be used when returning multiple rows. But then iterating over ref cursors appear to involve fetch/loop etc or is there a way of doing some sort of json_agg from (select * from my_ref_cursor)?
Of course there is the option of ref cursor + loop + concating json rows one at a time but that doesn't sound very effective.
Thanks in advance,
Nik
json postgresql
Is there any way of using the json-functions, such as json_agg when you're using dynamic SQL?
The documentation leads to think that ref cursors should be used when returning multiple rows. But then iterating over ref cursors appear to involve fetch/loop etc or is there a way of doing some sort of json_agg from (select * from my_ref_cursor)?
Of course there is the option of ref cursor + loop + concating json rows one at a time but that doesn't sound very effective.
Thanks in advance,
Nik
json postgresql
json postgresql
asked Nov 23 '18 at 8:21
Nicklas KarlssonNicklas Karlsson
56118
56118
1
It should be possible, but without seeing your code that uses dynamic SQL this is impossible to answer. Why can't you integrate those json functions into your dynamic SQL?
– a_horse_with_no_name
Nov 23 '18 at 8:24
Hmm, you can do that? I'll give it a try, I was stuck with the idea that the generation of the input the the json should be dynamic but why not the whole query?
– Nicklas Karlsson
Nov 23 '18 at 8:27
execute format('select to_jsonb(t) from %I as t', some_variable)
– a_horse_with_no_name
Nov 23 '18 at 8:28
do $$ declare s text := 'select json_agg(c) from (select * from company) c '; j json; begin execute s into j; raise notice '%', j; end; $$
Could do the job, the rest is just string manipulation. Thanks for the pointer
– Nicklas Karlsson
Nov 23 '18 at 8:30
add a comment |
1
It should be possible, but without seeing your code that uses dynamic SQL this is impossible to answer. Why can't you integrate those json functions into your dynamic SQL?
– a_horse_with_no_name
Nov 23 '18 at 8:24
Hmm, you can do that? I'll give it a try, I was stuck with the idea that the generation of the input the the json should be dynamic but why not the whole query?
– Nicklas Karlsson
Nov 23 '18 at 8:27
execute format('select to_jsonb(t) from %I as t', some_variable)
– a_horse_with_no_name
Nov 23 '18 at 8:28
do $$ declare s text := 'select json_agg(c) from (select * from company) c '; j json; begin execute s into j; raise notice '%', j; end; $$
Could do the job, the rest is just string manipulation. Thanks for the pointer
– Nicklas Karlsson
Nov 23 '18 at 8:30
1
1
It should be possible, but without seeing your code that uses dynamic SQL this is impossible to answer. Why can't you integrate those json functions into your dynamic SQL?
– a_horse_with_no_name
Nov 23 '18 at 8:24
It should be possible, but without seeing your code that uses dynamic SQL this is impossible to answer. Why can't you integrate those json functions into your dynamic SQL?
– a_horse_with_no_name
Nov 23 '18 at 8:24
Hmm, you can do that? I'll give it a try, I was stuck with the idea that the generation of the input the the json should be dynamic but why not the whole query?
– Nicklas Karlsson
Nov 23 '18 at 8:27
Hmm, you can do that? I'll give it a try, I was stuck with the idea that the generation of the input the the json should be dynamic but why not the whole query?
– Nicklas Karlsson
Nov 23 '18 at 8:27
execute format('select to_jsonb(t) from %I as t', some_variable)
– a_horse_with_no_name
Nov 23 '18 at 8:28
execute format('select to_jsonb(t) from %I as t', some_variable)
– a_horse_with_no_name
Nov 23 '18 at 8:28
do $$ declare s text := 'select json_agg(c) from (select * from company) c '; j json; begin execute s into j; raise notice '%', j; end; $$
Could do the job, the rest is just string manipulation. Thanks for the pointer– Nicklas Karlsson
Nov 23 '18 at 8:30
do $$ declare s text := 'select json_agg(c) from (select * from company) c '; j json; begin execute s into j; raise notice '%', j; end; $$
Could do the job, the rest is just string manipulation. Thanks for the pointer– Nicklas Karlsson
Nov 23 '18 at 8:30
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53442940%2fpostgresql-json-generation-from-dynamic-sql%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53442940%2fpostgresql-json-generation-from-dynamic-sql%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
It should be possible, but without seeing your code that uses dynamic SQL this is impossible to answer. Why can't you integrate those json functions into your dynamic SQL?
– a_horse_with_no_name
Nov 23 '18 at 8:24
Hmm, you can do that? I'll give it a try, I was stuck with the idea that the generation of the input the the json should be dynamic but why not the whole query?
– Nicklas Karlsson
Nov 23 '18 at 8:27
execute format('select to_jsonb(t) from %I as t', some_variable)
– a_horse_with_no_name
Nov 23 '18 at 8:28
do $$ declare s text := 'select json_agg(c) from (select * from company) c '; j json; begin execute s into j; raise notice '%', j; end; $$
Could do the job, the rest is just string manipulation. Thanks for the pointer– Nicklas Karlsson
Nov 23 '18 at 8:30