how to write a query in mysql?











up vote
-1
down vote

favorite












my table look like this



Table
id time_stamp
1 2018-11-21 12:10:00
2 2018-11-22 10:10:00
3 2018-11-22 13:10:00
4 2018-11-23 10:10:00
5 2018-11-23 11:10:00
6 2018-11-23 11:50:00
7 2018-11-24 10:10:00
8 2018-11-25 10:10:00
9 2018-11-25 12:10:00
10 2018-11-25 14:10:00


output calculated as



     `date        count`                      
`2018-11-21 1 ----(an=1)`
2018-11-22 2 ----(fn=1,an=1)
2018-11-23 1 ----(fn=0,an=1)
2018-11-24 1 ----(fn=1,an=0)
2018-11-25 2 ----(fn=1,an=1)


Final output



but how to display result like



 Date         Ses   count  amount
2018-11-11 AN 1 0
2018-11-11 AN 1 100
2018-11-12 AN 2 0
2018-11-12 FN 2 200


i try



                SELECT DATE_FORMAT(date(`time_stamp`),'%d-%m-%Y') as time_stamp,
case when time(time_stamp) between '01:00:00' and '12:00:00' then 'FN'
when time(time_stamp) between '12:00:00' and '24:00:00' then 'AN'
end as period
from overall a,TEST1_VIEW d WHERE
date(a.time_stamp)=d.timestamp order by time_stamp


not able to get the exact result.need suggestion. how to solve this error. i created a view file as test1_view










share|improve this question
























  • Incidentally, there is no '24:00:00' . A day runs from '00:00:00' to '23:59:59'
    – Strawberry
    Nov 22 at 8:13










  • Why is 2018-11-25 repeated 3 times?
    – Salman A
    Nov 22 at 8:20










  • @antony you can always edit your question to more detail e.g. expected out and perhaps more explanation.
    – Salman A
    Nov 23 at 10:19















up vote
-1
down vote

favorite












my table look like this



Table
id time_stamp
1 2018-11-21 12:10:00
2 2018-11-22 10:10:00
3 2018-11-22 13:10:00
4 2018-11-23 10:10:00
5 2018-11-23 11:10:00
6 2018-11-23 11:50:00
7 2018-11-24 10:10:00
8 2018-11-25 10:10:00
9 2018-11-25 12:10:00
10 2018-11-25 14:10:00


output calculated as



     `date        count`                      
`2018-11-21 1 ----(an=1)`
2018-11-22 2 ----(fn=1,an=1)
2018-11-23 1 ----(fn=0,an=1)
2018-11-24 1 ----(fn=1,an=0)
2018-11-25 2 ----(fn=1,an=1)


Final output



but how to display result like



 Date         Ses   count  amount
2018-11-11 AN 1 0
2018-11-11 AN 1 100
2018-11-12 AN 2 0
2018-11-12 FN 2 200


i try



                SELECT DATE_FORMAT(date(`time_stamp`),'%d-%m-%Y') as time_stamp,
case when time(time_stamp) between '01:00:00' and '12:00:00' then 'FN'
when time(time_stamp) between '12:00:00' and '24:00:00' then 'AN'
end as period
from overall a,TEST1_VIEW d WHERE
date(a.time_stamp)=d.timestamp order by time_stamp


not able to get the exact result.need suggestion. how to solve this error. i created a view file as test1_view










share|improve this question
























  • Incidentally, there is no '24:00:00' . A day runs from '00:00:00' to '23:59:59'
    – Strawberry
    Nov 22 at 8:13










  • Why is 2018-11-25 repeated 3 times?
    – Salman A
    Nov 22 at 8:20










  • @antony you can always edit your question to more detail e.g. expected out and perhaps more explanation.
    – Salman A
    Nov 23 at 10:19













up vote
-1
down vote

favorite









up vote
-1
down vote

favorite











my table look like this



Table
id time_stamp
1 2018-11-21 12:10:00
2 2018-11-22 10:10:00
3 2018-11-22 13:10:00
4 2018-11-23 10:10:00
5 2018-11-23 11:10:00
6 2018-11-23 11:50:00
7 2018-11-24 10:10:00
8 2018-11-25 10:10:00
9 2018-11-25 12:10:00
10 2018-11-25 14:10:00


output calculated as



     `date        count`                      
`2018-11-21 1 ----(an=1)`
2018-11-22 2 ----(fn=1,an=1)
2018-11-23 1 ----(fn=0,an=1)
2018-11-24 1 ----(fn=1,an=0)
2018-11-25 2 ----(fn=1,an=1)


Final output



but how to display result like



 Date         Ses   count  amount
2018-11-11 AN 1 0
2018-11-11 AN 1 100
2018-11-12 AN 2 0
2018-11-12 FN 2 200


i try



                SELECT DATE_FORMAT(date(`time_stamp`),'%d-%m-%Y') as time_stamp,
case when time(time_stamp) between '01:00:00' and '12:00:00' then 'FN'
when time(time_stamp) between '12:00:00' and '24:00:00' then 'AN'
end as period
from overall a,TEST1_VIEW d WHERE
date(a.time_stamp)=d.timestamp order by time_stamp


not able to get the exact result.need suggestion. how to solve this error. i created a view file as test1_view










share|improve this question















my table look like this



Table
id time_stamp
1 2018-11-21 12:10:00
2 2018-11-22 10:10:00
3 2018-11-22 13:10:00
4 2018-11-23 10:10:00
5 2018-11-23 11:10:00
6 2018-11-23 11:50:00
7 2018-11-24 10:10:00
8 2018-11-25 10:10:00
9 2018-11-25 12:10:00
10 2018-11-25 14:10:00


output calculated as



     `date        count`                      
`2018-11-21 1 ----(an=1)`
2018-11-22 2 ----(fn=1,an=1)
2018-11-23 1 ----(fn=0,an=1)
2018-11-24 1 ----(fn=1,an=0)
2018-11-25 2 ----(fn=1,an=1)


Final output



but how to display result like



 Date         Ses   count  amount
2018-11-11 AN 1 0
2018-11-11 AN 1 100
2018-11-12 AN 2 0
2018-11-12 FN 2 200


i try



                SELECT DATE_FORMAT(date(`time_stamp`),'%d-%m-%Y') as time_stamp,
case when time(time_stamp) between '01:00:00' and '12:00:00' then 'FN'
when time(time_stamp) between '12:00:00' and '24:00:00' then 'AN'
end as period
from overall a,TEST1_VIEW d WHERE
date(a.time_stamp)=d.timestamp order by time_stamp


not able to get the exact result.need suggestion. how to solve this error. i created a view file as test1_view







php mysql






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 23 at 10:17









Salman A

173k65330417




173k65330417










asked Nov 22 at 8:09









antony

16




16












  • Incidentally, there is no '24:00:00' . A day runs from '00:00:00' to '23:59:59'
    – Strawberry
    Nov 22 at 8:13










  • Why is 2018-11-25 repeated 3 times?
    – Salman A
    Nov 22 at 8:20










  • @antony you can always edit your question to more detail e.g. expected out and perhaps more explanation.
    – Salman A
    Nov 23 at 10:19


















  • Incidentally, there is no '24:00:00' . A day runs from '00:00:00' to '23:59:59'
    – Strawberry
    Nov 22 at 8:13










  • Why is 2018-11-25 repeated 3 times?
    – Salman A
    Nov 22 at 8:20










  • @antony you can always edit your question to more detail e.g. expected out and perhaps more explanation.
    – Salman A
    Nov 23 at 10:19
















Incidentally, there is no '24:00:00' . A day runs from '00:00:00' to '23:59:59'
– Strawberry
Nov 22 at 8:13




Incidentally, there is no '24:00:00' . A day runs from '00:00:00' to '23:59:59'
– Strawberry
Nov 22 at 8:13












Why is 2018-11-25 repeated 3 times?
– Salman A
Nov 22 at 8:20




Why is 2018-11-25 repeated 3 times?
– Salman A
Nov 22 at 8:20












@antony you can always edit your question to more detail e.g. expected out and perhaps more explanation.
– Salman A
Nov 23 at 10:19




@antony you can always edit your question to more detail e.g. expected out and perhaps more explanation.
– Salman A
Nov 23 at 10:19












1 Answer
1






active

oldest

votes

















up vote
0
down vote













The following will group DATETIME values by AN and FN:



SELECT
DATE(time_stamp) AS date,
CASE
WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
END AS sess,
COUNT(*) AS co,
SUM(some_column) AS sm
FROM t
GROUP BY
DATE(time_stamp),
CASE
WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
END


If AN and FN are indeed PM and AM then you could simply group by DATE_FORMAT(time_stamp, '%p').






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',
    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%2f53426401%2fhow-to-write-a-query-in-mysql%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








    up vote
    0
    down vote













    The following will group DATETIME values by AN and FN:



    SELECT
    DATE(time_stamp) AS date,
    CASE
    WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
    WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
    END AS sess,
    COUNT(*) AS co,
    SUM(some_column) AS sm
    FROM t
    GROUP BY
    DATE(time_stamp),
    CASE
    WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
    WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
    END


    If AN and FN are indeed PM and AM then you could simply group by DATE_FORMAT(time_stamp, '%p').






    share|improve this answer



























      up vote
      0
      down vote













      The following will group DATETIME values by AN and FN:



      SELECT
      DATE(time_stamp) AS date,
      CASE
      WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
      WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
      END AS sess,
      COUNT(*) AS co,
      SUM(some_column) AS sm
      FROM t
      GROUP BY
      DATE(time_stamp),
      CASE
      WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
      WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
      END


      If AN and FN are indeed PM and AM then you could simply group by DATE_FORMAT(time_stamp, '%p').






      share|improve this answer

























        up vote
        0
        down vote










        up vote
        0
        down vote









        The following will group DATETIME values by AN and FN:



        SELECT
        DATE(time_stamp) AS date,
        CASE
        WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
        WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
        END AS sess,
        COUNT(*) AS co,
        SUM(some_column) AS sm
        FROM t
        GROUP BY
        DATE(time_stamp),
        CASE
        WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
        WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
        END


        If AN and FN are indeed PM and AM then you could simply group by DATE_FORMAT(time_stamp, '%p').






        share|improve this answer














        The following will group DATETIME values by AN and FN:



        SELECT
        DATE(time_stamp) AS date,
        CASE
        WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
        WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
        END AS sess,
        COUNT(*) AS co,
        SUM(some_column) AS sm
        FROM t
        GROUP BY
        DATE(time_stamp),
        CASE
        WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
        WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
        END


        If AN and FN are indeed PM and AM then you could simply group by DATE_FORMAT(time_stamp, '%p').







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Nov 23 at 10:34

























        answered Nov 22 at 8:17









        Salman A

        173k65330417




        173k65330417






























            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.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • 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%2f53426401%2fhow-to-write-a-query-in-mysql%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

            Trompette piccolo

            Slow SSRS Report in dynamic grouping and multiple parameters

            Simon Yates (cyclisme)