PostgreSQL select jsonb key value from an array while joining tableMySQL : LEFT JOIN not fetching required...
How to limit sight distance to 1 km
Which one of these password policies is more secure?
The weather forecast
awk + sum all numbers
How would an AI self awareness kill switch work?
Can we use the stored gravitational potential energy of a building to produce power?
Consequences of lack of rigour
Why has the mole been redefined for 2019?
Why would space fleets be aligned?
Am I a Rude Number?
Vertical alignment of rbrace
Why is mind meld hard for T'pol in Star Trek: Enterprise?
Why avoid shared user accounts?
Why is the copy constructor called twice in this code snippet?
Incorporating research and background: How much is too much?
Explain the objections to these measures against human trafficking
Can I string the D&D Starter Set campaign into another module, keeping the same characters?
How do Chazal know that the descendants of a Mamzer may never marry into the general populace?
Publishing research using outdated methods
Finding a mistake using Mayer-Vietoris
How to say "Brexit" in Latin?
Can an insurance company drop you after receiving a bill and refusing to pay?
Eww, those bytes are gross
Can a person refuse a presidential pardon?
PostgreSQL select jsonb key value from an array while joining table
MySQL : LEFT JOIN not fetching required dataPostgreSQL joining using JSONBPostgreSql JSONB SELECT against multiple valuesHow to get particular object from jsonb array in PostgreSQL?How to return value for key from a jsonb column?postgresql: how to define a JSONB column with default valuePostgreSQL 9.5 query performance depends on JOINed column in SELECT clausePostgreSQL JSONB update array elements queryFilter rows by objects in jsonb array in PostgreSQLJSONB Array of Strings (with GIN index) versus Split Rows (B-Tree Index)
I want to extract a string value from an object's key inside a jsonb array, coming from a table join_table
which is left joined, meaning it could be empty for some values.
SELECT
t.id,
concat(t.content, array_to_string(jsonb_array_elements(j.arr)->'Name'->>0, ',')) AS content
FROM
main_table t
LEFT JOIN join_table j ON t.j_id = t.id
WHERE
t.id IN (1,2,3,4,...)
tables:
CREATE TABLE main_table (
id bigserial PRIMARY KEY,
j_id BIGINT,
content text
);
CREATE TABLE join_table (
id BIGSERIAL PRIMARY KEY,
arr JSONB
);
example of join_table.arr
[
{
"Id": 1,
"Name": "name1",
},
{
"Id": 2,
"Name": "name2",
}
]
What I am trying to achieve is to get concat a comma separated string of all the join_table.arr
Name
values
postgresql join json
New contributor
add a comment |
I want to extract a string value from an object's key inside a jsonb array, coming from a table join_table
which is left joined, meaning it could be empty for some values.
SELECT
t.id,
concat(t.content, array_to_string(jsonb_array_elements(j.arr)->'Name'->>0, ',')) AS content
FROM
main_table t
LEFT JOIN join_table j ON t.j_id = t.id
WHERE
t.id IN (1,2,3,4,...)
tables:
CREATE TABLE main_table (
id bigserial PRIMARY KEY,
j_id BIGINT,
content text
);
CREATE TABLE join_table (
id BIGSERIAL PRIMARY KEY,
arr JSONB
);
example of join_table.arr
[
{
"Id": 1,
"Name": "name1",
},
{
"Id": 2,
"Name": "name2",
}
]
What I am trying to achieve is to get concat a comma separated string of all the join_table.arr
Name
values
postgresql join json
New contributor
add a comment |
I want to extract a string value from an object's key inside a jsonb array, coming from a table join_table
which is left joined, meaning it could be empty for some values.
SELECT
t.id,
concat(t.content, array_to_string(jsonb_array_elements(j.arr)->'Name'->>0, ',')) AS content
FROM
main_table t
LEFT JOIN join_table j ON t.j_id = t.id
WHERE
t.id IN (1,2,3,4,...)
tables:
CREATE TABLE main_table (
id bigserial PRIMARY KEY,
j_id BIGINT,
content text
);
CREATE TABLE join_table (
id BIGSERIAL PRIMARY KEY,
arr JSONB
);
example of join_table.arr
[
{
"Id": 1,
"Name": "name1",
},
{
"Id": 2,
"Name": "name2",
}
]
What I am trying to achieve is to get concat a comma separated string of all the join_table.arr
Name
values
postgresql join json
New contributor
I want to extract a string value from an object's key inside a jsonb array, coming from a table join_table
which is left joined, meaning it could be empty for some values.
SELECT
t.id,
concat(t.content, array_to_string(jsonb_array_elements(j.arr)->'Name'->>0, ',')) AS content
FROM
main_table t
LEFT JOIN join_table j ON t.j_id = t.id
WHERE
t.id IN (1,2,3,4,...)
tables:
CREATE TABLE main_table (
id bigserial PRIMARY KEY,
j_id BIGINT,
content text
);
CREATE TABLE join_table (
id BIGSERIAL PRIMARY KEY,
arr JSONB
);
example of join_table.arr
[
{
"Id": 1,
"Name": "name1",
},
{
"Id": 2,
"Name": "name2",
}
]
What I am trying to achieve is to get concat a comma separated string of all the join_table.arr
Name
values
postgresql join json
postgresql join json
New contributor
New contributor
New contributor
asked 3 mins ago
gadelkareemgadelkareem
1011
1011
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "182"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
});
}
});
gadelkareem is a new contributor. Be nice, and check out our Code of Conduct.
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%2fdba.stackexchange.com%2fquestions%2f231012%2fpostgresql-select-jsonb-key-value-from-an-array-while-joining-table%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
gadelkareem is a new contributor. Be nice, and check out our Code of Conduct.
gadelkareem is a new contributor. Be nice, and check out our Code of Conduct.
gadelkareem is a new contributor. Be nice, and check out our Code of Conduct.
gadelkareem is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Database Administrators Stack Exchange!
- 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%2fdba.stackexchange.com%2fquestions%2f231012%2fpostgresql-select-jsonb-key-value-from-an-array-while-joining-table%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