Postgres SQL Conversion Date
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
im using Talend to extract data from excel to my database postgres, but when i integrate them to my database he convert the colomun Date to the original date of his system now i want to convert this date to my normal date ,i guess its the internal format for storing dates in postgres, you can find an explication below :
Excel file :
Date | price
15/08/2018 | 100 usd
15/09/2018 | 150 usd
15/10/2018 | 058 usd
Postgres database :
Datex | pricex
43327 | 100 usd
43358 | 150 usd
43388 | 058 usd
sql postgresql talend postgresql-9.3
add a comment |
im using Talend to extract data from excel to my database postgres, but when i integrate them to my database he convert the colomun Date to the original date of his system now i want to convert this date to my normal date ,i guess its the internal format for storing dates in postgres, you can find an explication below :
Excel file :
Date | price
15/08/2018 | 100 usd
15/09/2018 | 150 usd
15/10/2018 | 058 usd
Postgres database :
Datex | pricex
43327 | 100 usd
43358 | 150 usd
43388 | 058 usd
sql postgresql talend postgresql-9.3
I dont understand how it is like 15/02/2018 = 32458, what is the pattern?
– Eray Balkanli
Nov 16 '18 at 14:51
That's a weird format. What's the type of the date column?
– Michel Milezzi
Nov 16 '18 at 14:54
im using Talend to extract data from excel to my database postgres but when integrate them to the database he convert the colomun Date to the original date of his system now i want to convert this date to my normal date @ErayBalkanli
– Ali
Nov 16 '18 at 16:58
add a comment |
im using Talend to extract data from excel to my database postgres, but when i integrate them to my database he convert the colomun Date to the original date of his system now i want to convert this date to my normal date ,i guess its the internal format for storing dates in postgres, you can find an explication below :
Excel file :
Date | price
15/08/2018 | 100 usd
15/09/2018 | 150 usd
15/10/2018 | 058 usd
Postgres database :
Datex | pricex
43327 | 100 usd
43358 | 150 usd
43388 | 058 usd
sql postgresql talend postgresql-9.3
im using Talend to extract data from excel to my database postgres, but when i integrate them to my database he convert the colomun Date to the original date of his system now i want to convert this date to my normal date ,i guess its the internal format for storing dates in postgres, you can find an explication below :
Excel file :
Date | price
15/08/2018 | 100 usd
15/09/2018 | 150 usd
15/10/2018 | 058 usd
Postgres database :
Datex | pricex
43327 | 100 usd
43358 | 150 usd
43388 | 058 usd
sql postgresql talend postgresql-9.3
sql postgresql talend postgresql-9.3
edited Nov 16 '18 at 17:28
Ali
asked Nov 16 '18 at 14:37
AliAli
94
94
I dont understand how it is like 15/02/2018 = 32458, what is the pattern?
– Eray Balkanli
Nov 16 '18 at 14:51
That's a weird format. What's the type of the date column?
– Michel Milezzi
Nov 16 '18 at 14:54
im using Talend to extract data from excel to my database postgres but when integrate them to the database he convert the colomun Date to the original date of his system now i want to convert this date to my normal date @ErayBalkanli
– Ali
Nov 16 '18 at 16:58
add a comment |
I dont understand how it is like 15/02/2018 = 32458, what is the pattern?
– Eray Balkanli
Nov 16 '18 at 14:51
That's a weird format. What's the type of the date column?
– Michel Milezzi
Nov 16 '18 at 14:54
im using Talend to extract data from excel to my database postgres but when integrate them to the database he convert the colomun Date to the original date of his system now i want to convert this date to my normal date @ErayBalkanli
– Ali
Nov 16 '18 at 16:58
I dont understand how it is like 15/02/2018 = 32458, what is the pattern?
– Eray Balkanli
Nov 16 '18 at 14:51
I dont understand how it is like 15/02/2018 = 32458, what is the pattern?
– Eray Balkanli
Nov 16 '18 at 14:51
That's a weird format. What's the type of the date column?
– Michel Milezzi
Nov 16 '18 at 14:54
That's a weird format. What's the type of the date column?
– Michel Milezzi
Nov 16 '18 at 14:54
im using Talend to extract data from excel to my database postgres but when integrate them to the database he convert the colomun Date to the original date of his system now i want to convert this date to my normal date @ErayBalkanli
– Ali
Nov 16 '18 at 16:58
im using Talend to extract data from excel to my database postgres but when integrate them to the database he convert the colomun Date to the original date of his system now i want to convert this date to my normal date @ErayBalkanli
– Ali
Nov 16 '18 at 16:58
add a comment |
1 Answer
1
active
oldest
votes
Well, you can do:
select '2018-02-15'::date + (date - 32458) * interval '1 day'
That is, just do the arithmetic, if you know what one of the date values should be.
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%2f53339927%2fpostgres-sql-conversion-date%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
Well, you can do:
select '2018-02-15'::date + (date - 32458) * interval '1 day'
That is, just do the arithmetic, if you know what one of the date values should be.
add a comment |
Well, you can do:
select '2018-02-15'::date + (date - 32458) * interval '1 day'
That is, just do the arithmetic, if you know what one of the date values should be.
add a comment |
Well, you can do:
select '2018-02-15'::date + (date - 32458) * interval '1 day'
That is, just do the arithmetic, if you know what one of the date values should be.
Well, you can do:
select '2018-02-15'::date + (date - 32458) * interval '1 day'
That is, just do the arithmetic, if you know what one of the date values should be.
answered Nov 16 '18 at 14:58
Gordon LinoffGordon Linoff
796k37318423
796k37318423
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%2f53339927%2fpostgres-sql-conversion-date%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
I dont understand how it is like 15/02/2018 = 32458, what is the pattern?
– Eray Balkanli
Nov 16 '18 at 14:51
That's a weird format. What's the type of the date column?
– Michel Milezzi
Nov 16 '18 at 14:54
im using Talend to extract data from excel to my database postgres but when integrate them to the database he convert the colomun Date to the original date of his system now i want to convert this date to my normal date @ErayBalkanli
– Ali
Nov 16 '18 at 16:58