Combining two resulted columns on order by when one is null












-3















I have a inventory table where i have records which refers to inventory movement of products sold by a company. The movement have 'INCOMING', 'OUTGOING' params based on type of inventory movement. It also has one more column which says the type of 'INCOMING' or 'OUTGOING'... like incoming because of NEW STOCK arrival, outgoing because of PURCHASE by customer... etc...



Now am making a report where i want to list non sold products for a long while. So am making the following query...



SELECT p.id as pid, product_name, DATEDIFF(NOW(), MAX(case when movement_type='OUTGOING' and movement_type_category='PURCHASED' then movement_on end)) AS unsold_days_since_last_sale, DATEDIFF(NOW(), MIN(case when movement_type='INCOMING' and movement_type_category='NEW_STOCK' and quantity>0 then movement_on end)) AS unsold_days_since_first_inventory_in, MAX(case when movement_type='INCOMING' and movement_type_category='NEW_STOCK' and quantity>0 then movement_on end) AS last_inv_in from inventory_movement im left join products p on im.product = p.id GROUP BY product having last_inv_in > 0 ORDER BY unsold_days_since_last_sale desc limit 100 


And i get the following output as shown in the image.
enter image description here
This output is nearly correct but with one issue. If a product was never sold even once in the past the column where i try to get days different between CURRENT DAY and LAST SOLD DAY will return null. In that case i need the DAYS difference between CURRENT DAY and FIRST INVENTORY IN of that product to be on the place so i can order that column descending and get the output. But i can get those data as only 2 different columns not as one column. Can someone help me to write a query to get it as combined column so i can sort that data to get result. Am attaching my inventory movement table snap also to show how the data look like...



enter image description here










share|improve this question



























    -3















    I have a inventory table where i have records which refers to inventory movement of products sold by a company. The movement have 'INCOMING', 'OUTGOING' params based on type of inventory movement. It also has one more column which says the type of 'INCOMING' or 'OUTGOING'... like incoming because of NEW STOCK arrival, outgoing because of PURCHASE by customer... etc...



    Now am making a report where i want to list non sold products for a long while. So am making the following query...



    SELECT p.id as pid, product_name, DATEDIFF(NOW(), MAX(case when movement_type='OUTGOING' and movement_type_category='PURCHASED' then movement_on end)) AS unsold_days_since_last_sale, DATEDIFF(NOW(), MIN(case when movement_type='INCOMING' and movement_type_category='NEW_STOCK' and quantity>0 then movement_on end)) AS unsold_days_since_first_inventory_in, MAX(case when movement_type='INCOMING' and movement_type_category='NEW_STOCK' and quantity>0 then movement_on end) AS last_inv_in from inventory_movement im left join products p on im.product = p.id GROUP BY product having last_inv_in > 0 ORDER BY unsold_days_since_last_sale desc limit 100 


    And i get the following output as shown in the image.
    enter image description here
    This output is nearly correct but with one issue. If a product was never sold even once in the past the column where i try to get days different between CURRENT DAY and LAST SOLD DAY will return null. In that case i need the DAYS difference between CURRENT DAY and FIRST INVENTORY IN of that product to be on the place so i can order that column descending and get the output. But i can get those data as only 2 different columns not as one column. Can someone help me to write a query to get it as combined column so i can sort that data to get result. Am attaching my inventory movement table snap also to show how the data look like...



    enter image description here










    share|improve this question

























      -3












      -3








      -3








      I have a inventory table where i have records which refers to inventory movement of products sold by a company. The movement have 'INCOMING', 'OUTGOING' params based on type of inventory movement. It also has one more column which says the type of 'INCOMING' or 'OUTGOING'... like incoming because of NEW STOCK arrival, outgoing because of PURCHASE by customer... etc...



      Now am making a report where i want to list non sold products for a long while. So am making the following query...



      SELECT p.id as pid, product_name, DATEDIFF(NOW(), MAX(case when movement_type='OUTGOING' and movement_type_category='PURCHASED' then movement_on end)) AS unsold_days_since_last_sale, DATEDIFF(NOW(), MIN(case when movement_type='INCOMING' and movement_type_category='NEW_STOCK' and quantity>0 then movement_on end)) AS unsold_days_since_first_inventory_in, MAX(case when movement_type='INCOMING' and movement_type_category='NEW_STOCK' and quantity>0 then movement_on end) AS last_inv_in from inventory_movement im left join products p on im.product = p.id GROUP BY product having last_inv_in > 0 ORDER BY unsold_days_since_last_sale desc limit 100 


      And i get the following output as shown in the image.
      enter image description here
      This output is nearly correct but with one issue. If a product was never sold even once in the past the column where i try to get days different between CURRENT DAY and LAST SOLD DAY will return null. In that case i need the DAYS difference between CURRENT DAY and FIRST INVENTORY IN of that product to be on the place so i can order that column descending and get the output. But i can get those data as only 2 different columns not as one column. Can someone help me to write a query to get it as combined column so i can sort that data to get result. Am attaching my inventory movement table snap also to show how the data look like...



      enter image description here










      share|improve this question














      I have a inventory table where i have records which refers to inventory movement of products sold by a company. The movement have 'INCOMING', 'OUTGOING' params based on type of inventory movement. It also has one more column which says the type of 'INCOMING' or 'OUTGOING'... like incoming because of NEW STOCK arrival, outgoing because of PURCHASE by customer... etc...



      Now am making a report where i want to list non sold products for a long while. So am making the following query...



      SELECT p.id as pid, product_name, DATEDIFF(NOW(), MAX(case when movement_type='OUTGOING' and movement_type_category='PURCHASED' then movement_on end)) AS unsold_days_since_last_sale, DATEDIFF(NOW(), MIN(case when movement_type='INCOMING' and movement_type_category='NEW_STOCK' and quantity>0 then movement_on end)) AS unsold_days_since_first_inventory_in, MAX(case when movement_type='INCOMING' and movement_type_category='NEW_STOCK' and quantity>0 then movement_on end) AS last_inv_in from inventory_movement im left join products p on im.product = p.id GROUP BY product having last_inv_in > 0 ORDER BY unsold_days_since_last_sale desc limit 100 


      And i get the following output as shown in the image.
      enter image description here
      This output is nearly correct but with one issue. If a product was never sold even once in the past the column where i try to get days different between CURRENT DAY and LAST SOLD DAY will return null. In that case i need the DAYS difference between CURRENT DAY and FIRST INVENTORY IN of that product to be on the place so i can order that column descending and get the output. But i can get those data as only 2 different columns not as one column. Can someone help me to write a query to get it as combined column so i can sort that data to get result. Am attaching my inventory movement table snap also to show how the data look like...



      enter image description here







      mysql sql






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 14 '18 at 3:35









      user2301765user2301765

      1591112




      1591112
























          1 Answer
          1






          active

          oldest

          votes


















          0














          I think IfNull function will resolve your issue.



          Here's modified query.



           SELECT p.id                                        AS pid, 
          product_name,
          Datediff(Now(), Ifnull(Max(CASE
          WHEN movement_type = 'OUTGOING'
          AND movement_type_category =
          'PURCHASED' THEN
          movement_on
          end), Min(CASE
          WHEN movement_type = 'INCOMING'
          AND movement_type_category =
          'NEW_STOCK'
          AND quantity > 0 THEN
          movement_on
          end))) AS
          unsold_days_since_last_sale,
          Datediff(Now(), Min(CASE
          WHEN movement_type = 'INCOMING'
          AND movement_type_category = 'NEW_STOCK'
          AND quantity > 0 THEN movement_on
          end)) AS
          unsold_days_since_first_inventory_in,
          Max(CASE
          WHEN movement_type = 'INCOMING'
          AND movement_type_category = 'NEW_STOCK'
          AND quantity > 0 THEN movement_on
          end) AS last_inv_in
          FROM inventory_movement im
          LEFT JOIN products p
          ON im.product = p.id
          GROUP BY product
          HAVING last_inv_in > 0
          ORDER BY unsold_days_since_last_sale DESC
          LIMIT 100





          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%2f53292831%2fcombining-two-resulted-columns-on-order-by-when-one-is-null%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









            0














            I think IfNull function will resolve your issue.



            Here's modified query.



             SELECT p.id                                        AS pid, 
            product_name,
            Datediff(Now(), Ifnull(Max(CASE
            WHEN movement_type = 'OUTGOING'
            AND movement_type_category =
            'PURCHASED' THEN
            movement_on
            end), Min(CASE
            WHEN movement_type = 'INCOMING'
            AND movement_type_category =
            'NEW_STOCK'
            AND quantity > 0 THEN
            movement_on
            end))) AS
            unsold_days_since_last_sale,
            Datediff(Now(), Min(CASE
            WHEN movement_type = 'INCOMING'
            AND movement_type_category = 'NEW_STOCK'
            AND quantity > 0 THEN movement_on
            end)) AS
            unsold_days_since_first_inventory_in,
            Max(CASE
            WHEN movement_type = 'INCOMING'
            AND movement_type_category = 'NEW_STOCK'
            AND quantity > 0 THEN movement_on
            end) AS last_inv_in
            FROM inventory_movement im
            LEFT JOIN products p
            ON im.product = p.id
            GROUP BY product
            HAVING last_inv_in > 0
            ORDER BY unsold_days_since_last_sale DESC
            LIMIT 100





            share|improve this answer




























              0














              I think IfNull function will resolve your issue.



              Here's modified query.



               SELECT p.id                                        AS pid, 
              product_name,
              Datediff(Now(), Ifnull(Max(CASE
              WHEN movement_type = 'OUTGOING'
              AND movement_type_category =
              'PURCHASED' THEN
              movement_on
              end), Min(CASE
              WHEN movement_type = 'INCOMING'
              AND movement_type_category =
              'NEW_STOCK'
              AND quantity > 0 THEN
              movement_on
              end))) AS
              unsold_days_since_last_sale,
              Datediff(Now(), Min(CASE
              WHEN movement_type = 'INCOMING'
              AND movement_type_category = 'NEW_STOCK'
              AND quantity > 0 THEN movement_on
              end)) AS
              unsold_days_since_first_inventory_in,
              Max(CASE
              WHEN movement_type = 'INCOMING'
              AND movement_type_category = 'NEW_STOCK'
              AND quantity > 0 THEN movement_on
              end) AS last_inv_in
              FROM inventory_movement im
              LEFT JOIN products p
              ON im.product = p.id
              GROUP BY product
              HAVING last_inv_in > 0
              ORDER BY unsold_days_since_last_sale DESC
              LIMIT 100





              share|improve this answer


























                0












                0








                0







                I think IfNull function will resolve your issue.



                Here's modified query.



                 SELECT p.id                                        AS pid, 
                product_name,
                Datediff(Now(), Ifnull(Max(CASE
                WHEN movement_type = 'OUTGOING'
                AND movement_type_category =
                'PURCHASED' THEN
                movement_on
                end), Min(CASE
                WHEN movement_type = 'INCOMING'
                AND movement_type_category =
                'NEW_STOCK'
                AND quantity > 0 THEN
                movement_on
                end))) AS
                unsold_days_since_last_sale,
                Datediff(Now(), Min(CASE
                WHEN movement_type = 'INCOMING'
                AND movement_type_category = 'NEW_STOCK'
                AND quantity > 0 THEN movement_on
                end)) AS
                unsold_days_since_first_inventory_in,
                Max(CASE
                WHEN movement_type = 'INCOMING'
                AND movement_type_category = 'NEW_STOCK'
                AND quantity > 0 THEN movement_on
                end) AS last_inv_in
                FROM inventory_movement im
                LEFT JOIN products p
                ON im.product = p.id
                GROUP BY product
                HAVING last_inv_in > 0
                ORDER BY unsold_days_since_last_sale DESC
                LIMIT 100





                share|improve this answer













                I think IfNull function will resolve your issue.



                Here's modified query.



                 SELECT p.id                                        AS pid, 
                product_name,
                Datediff(Now(), Ifnull(Max(CASE
                WHEN movement_type = 'OUTGOING'
                AND movement_type_category =
                'PURCHASED' THEN
                movement_on
                end), Min(CASE
                WHEN movement_type = 'INCOMING'
                AND movement_type_category =
                'NEW_STOCK'
                AND quantity > 0 THEN
                movement_on
                end))) AS
                unsold_days_since_last_sale,
                Datediff(Now(), Min(CASE
                WHEN movement_type = 'INCOMING'
                AND movement_type_category = 'NEW_STOCK'
                AND quantity > 0 THEN movement_on
                end)) AS
                unsold_days_since_first_inventory_in,
                Max(CASE
                WHEN movement_type = 'INCOMING'
                AND movement_type_category = 'NEW_STOCK'
                AND quantity > 0 THEN movement_on
                end) AS last_inv_in
                FROM inventory_movement im
                LEFT JOIN products p
                ON im.product = p.id
                GROUP BY product
                HAVING last_inv_in > 0
                ORDER BY unsold_days_since_last_sale DESC
                LIMIT 100






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 14 '18 at 4:07









                BhushanBhushan

                33617




                33617






























                    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%2f53292831%2fcombining-two-resulted-columns-on-order-by-when-one-is-null%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







                    這個網誌中的熱門文章

                    Tangent Lines Diagram Along Smooth Curve

                    Yusuf al-Mu'taman ibn Hud

                    Zucchini