How to replace a string to an int in JSON value in database column?
I use a default response for a user in my proyect according to the following table.
Table: USERS
|ID | NAME | DEFAULTRESPONSE
The default response contains a string in JSON format. I need to change the month and the day from all relatives_birthdays from string to int.
Here is an example of the previous json:
[
{
"id":1,
"relatives_birthdays":[
{
"month":"8",
"day": "1",
"description": "Birthday mother"
},
{
"month":"3",
"day": "27",
"description": "Birthday brother"
},
{
"month":"4",
"day": "12",
"description": "Birthday father"
}
]
},
{
"id":2,
"relatives_birthdays":[
{
"month":"12",
"day": "11",
"description": "Birthday mother"
},
{
"month":"1",
"day": "2",
"description": "Birthday brother"
},
{
"month":"7",
"day": "18",
"description": "Birthday father"
}
]
}
]
And here is the json I need:
[
{
"id":1,
"relatives_birthdays":[
{
"month": 8,
"day": 1,
"description": "Birthday mother"
},
{
"month": 3,
"day": 27,
"description": "Birthday brother"
},
{
"month": 4,
"day": 12,
"description": "Birthday father"
}
]
},
{
"id":2,
"relatives_birthdays":[
{
"month": 12,
"day": 11,
"description": "Birthday mother"
},
{
"month": 1,
"day": 2,
"description": "Birthday brother"
},
{
"month": 7,
"day": 18,
"description": "Birthday father"
}
]
}
]
Any ideas on the script I need to execute in order to accomplish this?
sql json sql-server tsql sql-server-2016
add a comment |
I use a default response for a user in my proyect according to the following table.
Table: USERS
|ID | NAME | DEFAULTRESPONSE
The default response contains a string in JSON format. I need to change the month and the day from all relatives_birthdays from string to int.
Here is an example of the previous json:
[
{
"id":1,
"relatives_birthdays":[
{
"month":"8",
"day": "1",
"description": "Birthday mother"
},
{
"month":"3",
"day": "27",
"description": "Birthday brother"
},
{
"month":"4",
"day": "12",
"description": "Birthday father"
}
]
},
{
"id":2,
"relatives_birthdays":[
{
"month":"12",
"day": "11",
"description": "Birthday mother"
},
{
"month":"1",
"day": "2",
"description": "Birthday brother"
},
{
"month":"7",
"day": "18",
"description": "Birthday father"
}
]
}
]
And here is the json I need:
[
{
"id":1,
"relatives_birthdays":[
{
"month": 8,
"day": 1,
"description": "Birthday mother"
},
{
"month": 3,
"day": 27,
"description": "Birthday brother"
},
{
"month": 4,
"day": 12,
"description": "Birthday father"
}
]
},
{
"id":2,
"relatives_birthdays":[
{
"month": 12,
"day": 11,
"description": "Birthday mother"
},
{
"month": 1,
"day": 2,
"description": "Birthday brother"
},
{
"month": 7,
"day": 18,
"description": "Birthday father"
}
]
}
]
Any ideas on the script I need to execute in order to accomplish this?
sql json sql-server tsql sql-server-2016
Does that need to be done with sql-server? or are you open to other alternatives?
– oliv
Nov 15 '18 at 15:18
It must be done with sql-server
– Santiago Cabrera
Nov 15 '18 at 15:42
add a comment |
I use a default response for a user in my proyect according to the following table.
Table: USERS
|ID | NAME | DEFAULTRESPONSE
The default response contains a string in JSON format. I need to change the month and the day from all relatives_birthdays from string to int.
Here is an example of the previous json:
[
{
"id":1,
"relatives_birthdays":[
{
"month":"8",
"day": "1",
"description": "Birthday mother"
},
{
"month":"3",
"day": "27",
"description": "Birthday brother"
},
{
"month":"4",
"day": "12",
"description": "Birthday father"
}
]
},
{
"id":2,
"relatives_birthdays":[
{
"month":"12",
"day": "11",
"description": "Birthday mother"
},
{
"month":"1",
"day": "2",
"description": "Birthday brother"
},
{
"month":"7",
"day": "18",
"description": "Birthday father"
}
]
}
]
And here is the json I need:
[
{
"id":1,
"relatives_birthdays":[
{
"month": 8,
"day": 1,
"description": "Birthday mother"
},
{
"month": 3,
"day": 27,
"description": "Birthday brother"
},
{
"month": 4,
"day": 12,
"description": "Birthday father"
}
]
},
{
"id":2,
"relatives_birthdays":[
{
"month": 12,
"day": 11,
"description": "Birthday mother"
},
{
"month": 1,
"day": 2,
"description": "Birthday brother"
},
{
"month": 7,
"day": 18,
"description": "Birthday father"
}
]
}
]
Any ideas on the script I need to execute in order to accomplish this?
sql json sql-server tsql sql-server-2016
I use a default response for a user in my proyect according to the following table.
Table: USERS
|ID | NAME | DEFAULTRESPONSE
The default response contains a string in JSON format. I need to change the month and the day from all relatives_birthdays from string to int.
Here is an example of the previous json:
[
{
"id":1,
"relatives_birthdays":[
{
"month":"8",
"day": "1",
"description": "Birthday mother"
},
{
"month":"3",
"day": "27",
"description": "Birthday brother"
},
{
"month":"4",
"day": "12",
"description": "Birthday father"
}
]
},
{
"id":2,
"relatives_birthdays":[
{
"month":"12",
"day": "11",
"description": "Birthday mother"
},
{
"month":"1",
"day": "2",
"description": "Birthday brother"
},
{
"month":"7",
"day": "18",
"description": "Birthday father"
}
]
}
]
And here is the json I need:
[
{
"id":1,
"relatives_birthdays":[
{
"month": 8,
"day": 1,
"description": "Birthday mother"
},
{
"month": 3,
"day": 27,
"description": "Birthday brother"
},
{
"month": 4,
"day": 12,
"description": "Birthday father"
}
]
},
{
"id":2,
"relatives_birthdays":[
{
"month": 12,
"day": 11,
"description": "Birthday mother"
},
{
"month": 1,
"day": 2,
"description": "Birthday brother"
},
{
"month": 7,
"day": 18,
"description": "Birthday father"
}
]
}
]
Any ideas on the script I need to execute in order to accomplish this?
sql json sql-server tsql sql-server-2016
sql json sql-server tsql sql-server-2016
edited Nov 16 '18 at 17:27
Andrea
7,741144854
7,741144854
asked Nov 15 '18 at 14:56
Santiago CabreraSantiago Cabrera
727
727
Does that need to be done with sql-server? or are you open to other alternatives?
– oliv
Nov 15 '18 at 15:18
It must be done with sql-server
– Santiago Cabrera
Nov 15 '18 at 15:42
add a comment |
Does that need to be done with sql-server? or are you open to other alternatives?
– oliv
Nov 15 '18 at 15:18
It must be done with sql-server
– Santiago Cabrera
Nov 15 '18 at 15:42
Does that need to be done with sql-server? or are you open to other alternatives?
– oliv
Nov 15 '18 at 15:18
Does that need to be done with sql-server? or are you open to other alternatives?
– oliv
Nov 15 '18 at 15:18
It must be done with sql-server
– Santiago Cabrera
Nov 15 '18 at 15:42
It must be done with sql-server
– Santiago Cabrera
Nov 15 '18 at 15:42
add a comment |
1 Answer
1
active
oldest
votes
You can parse the json with openjson
and then rebuild it. This will works, but it is probably very inefficient:
declare @j nvarchar(max) = '[
{
"id":1,
"relatives_birthdays":[
{
"month":"8",
"day": "1",
"description": "Birthday mother"
},
{
"month":"3",
"day": "27",
"description": "Birthday brother"
},
{
"month":"4",
"day": "12",
"description": "Birthday father"
}
]
},
{
"id":2,
"relatives_birthdays":[
{
"month":"12",
"day": "11",
"description": "Birthday mother"
},
{
"month":"1",
"day": "2",
"description": "Birthday brother"
},
{
"month":"7",
"day": "18",
"description": "Birthday father"
}
]
}
]'
select rt.[id]
, relatives_birthdays.[month]
, relatives_birthdays.[day]
, relatives_birthdays.[description]
from (
select p.id
from openjson(@j) with (id int) p
) as rt
inner join (
select p.id
, c.month
, c.day
, c.description
from openjson(@j) with (
id int
, relatives_birthdays nvarchar(max) as json
) p
cross apply openjson(relatives_birthdays) with (
month int
, day int
, description nvarchar(max)
) c
) as relatives_birthdays
on rt.id = relatives_birthdays.id
for json auto
This is the resulting json:
[
{
"id": 1,
"relatives_birthdays": [
{
"month": 8,
"day": 1,
"description": "Birthday mother"
},
{
"month": 3,
"day": 27,
"description": "Birthday brother"
},
{
"month": 4,
"day": 12,
"description": "Birthday father"
}
]
},
{
"id": 2,
"relatives_birthdays": [
{
"month": 12,
"day": 11,
"description": "Birthday mother"
},
{
"month": 1,
"day": 2,
"description": "Birthday brother"
},
{
"month": 7,
"day": 18,
"description": "Birthday father"
}
]
}
]
add a comment |
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%2f53322172%2fhow-to-replace-a-string-to-an-int-in-json-value-in-database-column%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can parse the json with openjson
and then rebuild it. This will works, but it is probably very inefficient:
declare @j nvarchar(max) = '[
{
"id":1,
"relatives_birthdays":[
{
"month":"8",
"day": "1",
"description": "Birthday mother"
},
{
"month":"3",
"day": "27",
"description": "Birthday brother"
},
{
"month":"4",
"day": "12",
"description": "Birthday father"
}
]
},
{
"id":2,
"relatives_birthdays":[
{
"month":"12",
"day": "11",
"description": "Birthday mother"
},
{
"month":"1",
"day": "2",
"description": "Birthday brother"
},
{
"month":"7",
"day": "18",
"description": "Birthday father"
}
]
}
]'
select rt.[id]
, relatives_birthdays.[month]
, relatives_birthdays.[day]
, relatives_birthdays.[description]
from (
select p.id
from openjson(@j) with (id int) p
) as rt
inner join (
select p.id
, c.month
, c.day
, c.description
from openjson(@j) with (
id int
, relatives_birthdays nvarchar(max) as json
) p
cross apply openjson(relatives_birthdays) with (
month int
, day int
, description nvarchar(max)
) c
) as relatives_birthdays
on rt.id = relatives_birthdays.id
for json auto
This is the resulting json:
[
{
"id": 1,
"relatives_birthdays": [
{
"month": 8,
"day": 1,
"description": "Birthday mother"
},
{
"month": 3,
"day": 27,
"description": "Birthday brother"
},
{
"month": 4,
"day": 12,
"description": "Birthday father"
}
]
},
{
"id": 2,
"relatives_birthdays": [
{
"month": 12,
"day": 11,
"description": "Birthday mother"
},
{
"month": 1,
"day": 2,
"description": "Birthday brother"
},
{
"month": 7,
"day": 18,
"description": "Birthday father"
}
]
}
]
add a comment |
You can parse the json with openjson
and then rebuild it. This will works, but it is probably very inefficient:
declare @j nvarchar(max) = '[
{
"id":1,
"relatives_birthdays":[
{
"month":"8",
"day": "1",
"description": "Birthday mother"
},
{
"month":"3",
"day": "27",
"description": "Birthday brother"
},
{
"month":"4",
"day": "12",
"description": "Birthday father"
}
]
},
{
"id":2,
"relatives_birthdays":[
{
"month":"12",
"day": "11",
"description": "Birthday mother"
},
{
"month":"1",
"day": "2",
"description": "Birthday brother"
},
{
"month":"7",
"day": "18",
"description": "Birthday father"
}
]
}
]'
select rt.[id]
, relatives_birthdays.[month]
, relatives_birthdays.[day]
, relatives_birthdays.[description]
from (
select p.id
from openjson(@j) with (id int) p
) as rt
inner join (
select p.id
, c.month
, c.day
, c.description
from openjson(@j) with (
id int
, relatives_birthdays nvarchar(max) as json
) p
cross apply openjson(relatives_birthdays) with (
month int
, day int
, description nvarchar(max)
) c
) as relatives_birthdays
on rt.id = relatives_birthdays.id
for json auto
This is the resulting json:
[
{
"id": 1,
"relatives_birthdays": [
{
"month": 8,
"day": 1,
"description": "Birthday mother"
},
{
"month": 3,
"day": 27,
"description": "Birthday brother"
},
{
"month": 4,
"day": 12,
"description": "Birthday father"
}
]
},
{
"id": 2,
"relatives_birthdays": [
{
"month": 12,
"day": 11,
"description": "Birthday mother"
},
{
"month": 1,
"day": 2,
"description": "Birthday brother"
},
{
"month": 7,
"day": 18,
"description": "Birthday father"
}
]
}
]
add a comment |
You can parse the json with openjson
and then rebuild it. This will works, but it is probably very inefficient:
declare @j nvarchar(max) = '[
{
"id":1,
"relatives_birthdays":[
{
"month":"8",
"day": "1",
"description": "Birthday mother"
},
{
"month":"3",
"day": "27",
"description": "Birthday brother"
},
{
"month":"4",
"day": "12",
"description": "Birthday father"
}
]
},
{
"id":2,
"relatives_birthdays":[
{
"month":"12",
"day": "11",
"description": "Birthday mother"
},
{
"month":"1",
"day": "2",
"description": "Birthday brother"
},
{
"month":"7",
"day": "18",
"description": "Birthday father"
}
]
}
]'
select rt.[id]
, relatives_birthdays.[month]
, relatives_birthdays.[day]
, relatives_birthdays.[description]
from (
select p.id
from openjson(@j) with (id int) p
) as rt
inner join (
select p.id
, c.month
, c.day
, c.description
from openjson(@j) with (
id int
, relatives_birthdays nvarchar(max) as json
) p
cross apply openjson(relatives_birthdays) with (
month int
, day int
, description nvarchar(max)
) c
) as relatives_birthdays
on rt.id = relatives_birthdays.id
for json auto
This is the resulting json:
[
{
"id": 1,
"relatives_birthdays": [
{
"month": 8,
"day": 1,
"description": "Birthday mother"
},
{
"month": 3,
"day": 27,
"description": "Birthday brother"
},
{
"month": 4,
"day": 12,
"description": "Birthday father"
}
]
},
{
"id": 2,
"relatives_birthdays": [
{
"month": 12,
"day": 11,
"description": "Birthday mother"
},
{
"month": 1,
"day": 2,
"description": "Birthday brother"
},
{
"month": 7,
"day": 18,
"description": "Birthday father"
}
]
}
]
You can parse the json with openjson
and then rebuild it. This will works, but it is probably very inefficient:
declare @j nvarchar(max) = '[
{
"id":1,
"relatives_birthdays":[
{
"month":"8",
"day": "1",
"description": "Birthday mother"
},
{
"month":"3",
"day": "27",
"description": "Birthday brother"
},
{
"month":"4",
"day": "12",
"description": "Birthday father"
}
]
},
{
"id":2,
"relatives_birthdays":[
{
"month":"12",
"day": "11",
"description": "Birthday mother"
},
{
"month":"1",
"day": "2",
"description": "Birthday brother"
},
{
"month":"7",
"day": "18",
"description": "Birthday father"
}
]
}
]'
select rt.[id]
, relatives_birthdays.[month]
, relatives_birthdays.[day]
, relatives_birthdays.[description]
from (
select p.id
from openjson(@j) with (id int) p
) as rt
inner join (
select p.id
, c.month
, c.day
, c.description
from openjson(@j) with (
id int
, relatives_birthdays nvarchar(max) as json
) p
cross apply openjson(relatives_birthdays) with (
month int
, day int
, description nvarchar(max)
) c
) as relatives_birthdays
on rt.id = relatives_birthdays.id
for json auto
This is the resulting json:
[
{
"id": 1,
"relatives_birthdays": [
{
"month": 8,
"day": 1,
"description": "Birthday mother"
},
{
"month": 3,
"day": 27,
"description": "Birthday brother"
},
{
"month": 4,
"day": 12,
"description": "Birthday father"
}
]
},
{
"id": 2,
"relatives_birthdays": [
{
"month": 12,
"day": 11,
"description": "Birthday mother"
},
{
"month": 1,
"day": 2,
"description": "Birthday brother"
},
{
"month": 7,
"day": 18,
"description": "Birthday father"
}
]
}
]
answered Nov 16 '18 at 14:20
AndreaAndrea
7,741144854
7,741144854
add a comment |
add a comment |
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%2f53322172%2fhow-to-replace-a-string-to-an-int-in-json-value-in-database-column%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
Does that need to be done with sql-server? or are you open to other alternatives?
– oliv
Nov 15 '18 at 15:18
It must be done with sql-server
– Santiago Cabrera
Nov 15 '18 at 15:42