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;
}







0















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









share|improve this question

























  • 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


















0















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









share|improve this question

























  • 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














0












0








0








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









share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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



















  • 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












1 Answer
1






active

oldest

votes


















1














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.






share|improve this answer
























    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
    });


    }
    });














    draft saved

    draft discarded


















    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









    1














    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.






    share|improve this answer




























      1














      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.






      share|improve this answer


























        1












        1








        1







        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.






        share|improve this answer













        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.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 16 '18 at 14:58









        Gordon LinoffGordon Linoff

        796k37318423




        796k37318423
































            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Xamarin.iOS Cant Deploy on Iphone

            Glorious Revolution

            Dulmage-Mendelsohn matrix decomposition in Python