Search between two dates with specific time with each date Announcing the arrival of Valued...

A term for a woman complaining about things/begging in a cute/childish way

How to compare two different files line by line in unix?

What order were files/directories outputted in dir?

Aligning an equation at multiple points, with both left and right alignment, as well as equals sign alignment

What does Turing mean by this statement?

Quadrilaterals with equal sides

Crossing US/Canada Border for less than 24 hours

Importance of からだ in this sentence

Putting class ranking in CV, but against dept guidelines

How many time did Arya actually used needle?

Exposing GRASS GIS add-on in QGIS Processing framework?

How to get all distinct words within a set of lines?

What would you call this weird metallic apparatus that allows you to lift people?

Strange behavior of Object.defineProperty() in JavaScript

How much damage would a cupful of neutron star matter do to the Earth?

Trademark violation for app?

Did any compiler fully use 80-bit floating point?

Should there be a hyphen in the construction "IT affin"?

Why are vacuum tubes still used in amateur radios?

Why weren't discrete x86 CPUs ever used in game hardware?

An adverb for when you're not exaggerating

What is the difference between globalisation and imperialism?

Do wooden building fires get hotter than 600°C?

How does the math work when buying airline miles?



Search between two dates with specific time with each date



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!MySQL: Compare BETWEEN timeFetch the row which has the Max value for a columnSelect n random rows from SQL Server tableMySQL - UPDATE query based on SELECT QueryValue should be 0 between the two dates?SQL Server: How to Join to first rowCreate a temporary table in a SELECT statement without a separate CREATE TABLESelect data from date range between two datesHow to select rows if the date between is in current monthDate Range Query in OracleMs SQL 2005 : Select a ID for a particular date where that date lies between fromdate and Todate





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







7















I have two dates. 2019-01-01(fromDate) and 2019-01-10(toDate). And now I want to search only the 13:00 to 16:00 time of each date. May I ask if is it possible using query only? Any answer is much appreciated



SELECT * 
FROM table
WHERE fromDate >= 2019-01-01 AND toDate <= 2019-01-10









share|improve this question









New contributor




Ayiko Nishimura is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • stackoverflow.com/questions/4714899/mysql-compare-between-time Look at this to know more on comparing time

    – Abhijith Nagarajan
    5 hours ago











  • Sample data and desired results would help. What are you actually comparing?

    – Gordon Linoff
    2 hours ago


















7















I have two dates. 2019-01-01(fromDate) and 2019-01-10(toDate). And now I want to search only the 13:00 to 16:00 time of each date. May I ask if is it possible using query only? Any answer is much appreciated



SELECT * 
FROM table
WHERE fromDate >= 2019-01-01 AND toDate <= 2019-01-10









share|improve this question









New contributor




Ayiko Nishimura is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • stackoverflow.com/questions/4714899/mysql-compare-between-time Look at this to know more on comparing time

    – Abhijith Nagarajan
    5 hours ago











  • Sample data and desired results would help. What are you actually comparing?

    – Gordon Linoff
    2 hours ago














7












7








7


1






I have two dates. 2019-01-01(fromDate) and 2019-01-10(toDate). And now I want to search only the 13:00 to 16:00 time of each date. May I ask if is it possible using query only? Any answer is much appreciated



SELECT * 
FROM table
WHERE fromDate >= 2019-01-01 AND toDate <= 2019-01-10









share|improve this question









New contributor




Ayiko Nishimura is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I have two dates. 2019-01-01(fromDate) and 2019-01-10(toDate). And now I want to search only the 13:00 to 16:00 time of each date. May I ask if is it possible using query only? Any answer is much appreciated



SELECT * 
FROM table
WHERE fromDate >= 2019-01-01 AND toDate <= 2019-01-10






mysql sql






share|improve this question









New contributor




Ayiko Nishimura is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Ayiko Nishimura is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 2 hours ago









Kiran Desai

2651315




2651315






New contributor




Ayiko Nishimura is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 5 hours ago









Ayiko NishimuraAyiko Nishimura

362




362




New contributor




Ayiko Nishimura is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Ayiko Nishimura is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Ayiko Nishimura is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.













  • stackoverflow.com/questions/4714899/mysql-compare-between-time Look at this to know more on comparing time

    – Abhijith Nagarajan
    5 hours ago











  • Sample data and desired results would help. What are you actually comparing?

    – Gordon Linoff
    2 hours ago



















  • stackoverflow.com/questions/4714899/mysql-compare-between-time Look at this to know more on comparing time

    – Abhijith Nagarajan
    5 hours ago











  • Sample data and desired results would help. What are you actually comparing?

    – Gordon Linoff
    2 hours ago

















stackoverflow.com/questions/4714899/mysql-compare-between-time Look at this to know more on comparing time

– Abhijith Nagarajan
5 hours ago





stackoverflow.com/questions/4714899/mysql-compare-between-time Look at this to know more on comparing time

– Abhijith Nagarajan
5 hours ago













Sample data and desired results would help. What are you actually comparing?

– Gordon Linoff
2 hours ago





Sample data and desired results would help. What are you actually comparing?

– Gordon Linoff
2 hours ago












2 Answers
2






active

oldest

votes


















4














You can try to use STR_TO_DATE function with the format and HOUR function.



SELECT * 
FROM table
WHERE
fromDate >= STR_TO_DATE('2019-01-01', '%Y-%m-%d')
AND
toDate <= STR_TO_DATE('2019-01-10', '%Y-%m-%d')
AND
(HOUR(fromDate) BETWEEN 13 AND 16 OR HOUR(toDate) BETWEEN 13 AND 16)





share|improve this answer





















  • 1





    The query does not filter the records between those hours.

    – Abhijith Nagarajan
    5 hours ago











  • based on your example this 2019-01-01 13:00:00 is fromDate. And toDate is 2019-01-01 16:00:00. What about the next date 2019-01-02. I want to also search the time which is from 13:00:00 to 16:00:00 in all dates. Is that possible?

    – Ayiko Nishimura
    5 hours ago






  • 1





    Ok I edit my answer :)

    – D-Shih
    4 hours ago











  • Thank you for your knowledge. Regarding the added query (HOUR(fromDate) BETWEEN 13 AND 16 OR HOUR(toDate) BETWEEN 13 AND 16). Is it possible to add minute on it. For example 13:55:00.

    – Ayiko Nishimura
    4 hours ago











  • Yes you can try to use MINUTE function. dev.mysql.com/doc/refman/5.5/en/…

    – D-Shih
    4 hours ago





















1














Use separate conditions on the date and on the time:



SELECT * 
FROM table
WHERE fromDate >= '2019-01-01' AND
toDate < '2019-01-11' and
time(fromdate) between '13:00:00' and '16:00:00' and
time(todate) between '13:00:00' and '16:00:00;


Or, if you don't want 16:00:00 exactly, you can use hour():



SELECT * 
FROM table
WHERE fromDate >= '2019-01-01' AND
toDate < '2019-01-11' and
hour(fromdate) in (13, 14, 15) and
hour(todate) in (13, 14, 15)





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


    }
    });






    Ayiko Nishimura is a new contributor. Be nice, and check out our Code of Conduct.










    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55759280%2fsearch-between-two-dates-with-specific-time-with-each-date%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    4














    You can try to use STR_TO_DATE function with the format and HOUR function.



    SELECT * 
    FROM table
    WHERE
    fromDate >= STR_TO_DATE('2019-01-01', '%Y-%m-%d')
    AND
    toDate <= STR_TO_DATE('2019-01-10', '%Y-%m-%d')
    AND
    (HOUR(fromDate) BETWEEN 13 AND 16 OR HOUR(toDate) BETWEEN 13 AND 16)





    share|improve this answer





















    • 1





      The query does not filter the records between those hours.

      – Abhijith Nagarajan
      5 hours ago











    • based on your example this 2019-01-01 13:00:00 is fromDate. And toDate is 2019-01-01 16:00:00. What about the next date 2019-01-02. I want to also search the time which is from 13:00:00 to 16:00:00 in all dates. Is that possible?

      – Ayiko Nishimura
      5 hours ago






    • 1





      Ok I edit my answer :)

      – D-Shih
      4 hours ago











    • Thank you for your knowledge. Regarding the added query (HOUR(fromDate) BETWEEN 13 AND 16 OR HOUR(toDate) BETWEEN 13 AND 16). Is it possible to add minute on it. For example 13:55:00.

      – Ayiko Nishimura
      4 hours ago











    • Yes you can try to use MINUTE function. dev.mysql.com/doc/refman/5.5/en/…

      – D-Shih
      4 hours ago


















    4














    You can try to use STR_TO_DATE function with the format and HOUR function.



    SELECT * 
    FROM table
    WHERE
    fromDate >= STR_TO_DATE('2019-01-01', '%Y-%m-%d')
    AND
    toDate <= STR_TO_DATE('2019-01-10', '%Y-%m-%d')
    AND
    (HOUR(fromDate) BETWEEN 13 AND 16 OR HOUR(toDate) BETWEEN 13 AND 16)





    share|improve this answer





















    • 1





      The query does not filter the records between those hours.

      – Abhijith Nagarajan
      5 hours ago











    • based on your example this 2019-01-01 13:00:00 is fromDate. And toDate is 2019-01-01 16:00:00. What about the next date 2019-01-02. I want to also search the time which is from 13:00:00 to 16:00:00 in all dates. Is that possible?

      – Ayiko Nishimura
      5 hours ago






    • 1





      Ok I edit my answer :)

      – D-Shih
      4 hours ago











    • Thank you for your knowledge. Regarding the added query (HOUR(fromDate) BETWEEN 13 AND 16 OR HOUR(toDate) BETWEEN 13 AND 16). Is it possible to add minute on it. For example 13:55:00.

      – Ayiko Nishimura
      4 hours ago











    • Yes you can try to use MINUTE function. dev.mysql.com/doc/refman/5.5/en/…

      – D-Shih
      4 hours ago
















    4












    4








    4







    You can try to use STR_TO_DATE function with the format and HOUR function.



    SELECT * 
    FROM table
    WHERE
    fromDate >= STR_TO_DATE('2019-01-01', '%Y-%m-%d')
    AND
    toDate <= STR_TO_DATE('2019-01-10', '%Y-%m-%d')
    AND
    (HOUR(fromDate) BETWEEN 13 AND 16 OR HOUR(toDate) BETWEEN 13 AND 16)





    share|improve this answer















    You can try to use STR_TO_DATE function with the format and HOUR function.



    SELECT * 
    FROM table
    WHERE
    fromDate >= STR_TO_DATE('2019-01-01', '%Y-%m-%d')
    AND
    toDate <= STR_TO_DATE('2019-01-10', '%Y-%m-%d')
    AND
    (HOUR(fromDate) BETWEEN 13 AND 16 OR HOUR(toDate) BETWEEN 13 AND 16)






    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited 4 hours ago

























    answered 5 hours ago









    D-ShihD-Shih

    27.6k61532




    27.6k61532








    • 1





      The query does not filter the records between those hours.

      – Abhijith Nagarajan
      5 hours ago











    • based on your example this 2019-01-01 13:00:00 is fromDate. And toDate is 2019-01-01 16:00:00. What about the next date 2019-01-02. I want to also search the time which is from 13:00:00 to 16:00:00 in all dates. Is that possible?

      – Ayiko Nishimura
      5 hours ago






    • 1





      Ok I edit my answer :)

      – D-Shih
      4 hours ago











    • Thank you for your knowledge. Regarding the added query (HOUR(fromDate) BETWEEN 13 AND 16 OR HOUR(toDate) BETWEEN 13 AND 16). Is it possible to add minute on it. For example 13:55:00.

      – Ayiko Nishimura
      4 hours ago











    • Yes you can try to use MINUTE function. dev.mysql.com/doc/refman/5.5/en/…

      – D-Shih
      4 hours ago
















    • 1





      The query does not filter the records between those hours.

      – Abhijith Nagarajan
      5 hours ago











    • based on your example this 2019-01-01 13:00:00 is fromDate. And toDate is 2019-01-01 16:00:00. What about the next date 2019-01-02. I want to also search the time which is from 13:00:00 to 16:00:00 in all dates. Is that possible?

      – Ayiko Nishimura
      5 hours ago






    • 1





      Ok I edit my answer :)

      – D-Shih
      4 hours ago











    • Thank you for your knowledge. Regarding the added query (HOUR(fromDate) BETWEEN 13 AND 16 OR HOUR(toDate) BETWEEN 13 AND 16). Is it possible to add minute on it. For example 13:55:00.

      – Ayiko Nishimura
      4 hours ago











    • Yes you can try to use MINUTE function. dev.mysql.com/doc/refman/5.5/en/…

      – D-Shih
      4 hours ago










    1




    1





    The query does not filter the records between those hours.

    – Abhijith Nagarajan
    5 hours ago





    The query does not filter the records between those hours.

    – Abhijith Nagarajan
    5 hours ago













    based on your example this 2019-01-01 13:00:00 is fromDate. And toDate is 2019-01-01 16:00:00. What about the next date 2019-01-02. I want to also search the time which is from 13:00:00 to 16:00:00 in all dates. Is that possible?

    – Ayiko Nishimura
    5 hours ago





    based on your example this 2019-01-01 13:00:00 is fromDate. And toDate is 2019-01-01 16:00:00. What about the next date 2019-01-02. I want to also search the time which is from 13:00:00 to 16:00:00 in all dates. Is that possible?

    – Ayiko Nishimura
    5 hours ago




    1




    1





    Ok I edit my answer :)

    – D-Shih
    4 hours ago





    Ok I edit my answer :)

    – D-Shih
    4 hours ago













    Thank you for your knowledge. Regarding the added query (HOUR(fromDate) BETWEEN 13 AND 16 OR HOUR(toDate) BETWEEN 13 AND 16). Is it possible to add minute on it. For example 13:55:00.

    – Ayiko Nishimura
    4 hours ago





    Thank you for your knowledge. Regarding the added query (HOUR(fromDate) BETWEEN 13 AND 16 OR HOUR(toDate) BETWEEN 13 AND 16). Is it possible to add minute on it. For example 13:55:00.

    – Ayiko Nishimura
    4 hours ago













    Yes you can try to use MINUTE function. dev.mysql.com/doc/refman/5.5/en/…

    – D-Shih
    4 hours ago







    Yes you can try to use MINUTE function. dev.mysql.com/doc/refman/5.5/en/…

    – D-Shih
    4 hours ago















    1














    Use separate conditions on the date and on the time:



    SELECT * 
    FROM table
    WHERE fromDate >= '2019-01-01' AND
    toDate < '2019-01-11' and
    time(fromdate) between '13:00:00' and '16:00:00' and
    time(todate) between '13:00:00' and '16:00:00;


    Or, if you don't want 16:00:00 exactly, you can use hour():



    SELECT * 
    FROM table
    WHERE fromDate >= '2019-01-01' AND
    toDate < '2019-01-11' and
    hour(fromdate) in (13, 14, 15) and
    hour(todate) in (13, 14, 15)





    share|improve this answer




























      1














      Use separate conditions on the date and on the time:



      SELECT * 
      FROM table
      WHERE fromDate >= '2019-01-01' AND
      toDate < '2019-01-11' and
      time(fromdate) between '13:00:00' and '16:00:00' and
      time(todate) between '13:00:00' and '16:00:00;


      Or, if you don't want 16:00:00 exactly, you can use hour():



      SELECT * 
      FROM table
      WHERE fromDate >= '2019-01-01' AND
      toDate < '2019-01-11' and
      hour(fromdate) in (13, 14, 15) and
      hour(todate) in (13, 14, 15)





      share|improve this answer


























        1












        1








        1







        Use separate conditions on the date and on the time:



        SELECT * 
        FROM table
        WHERE fromDate >= '2019-01-01' AND
        toDate < '2019-01-11' and
        time(fromdate) between '13:00:00' and '16:00:00' and
        time(todate) between '13:00:00' and '16:00:00;


        Or, if you don't want 16:00:00 exactly, you can use hour():



        SELECT * 
        FROM table
        WHERE fromDate >= '2019-01-01' AND
        toDate < '2019-01-11' and
        hour(fromdate) in (13, 14, 15) and
        hour(todate) in (13, 14, 15)





        share|improve this answer













        Use separate conditions on the date and on the time:



        SELECT * 
        FROM table
        WHERE fromDate >= '2019-01-01' AND
        toDate < '2019-01-11' and
        time(fromdate) between '13:00:00' and '16:00:00' and
        time(todate) between '13:00:00' and '16:00:00;


        Or, if you don't want 16:00:00 exactly, you can use hour():



        SELECT * 
        FROM table
        WHERE fromDate >= '2019-01-01' AND
        toDate < '2019-01-11' and
        hour(fromdate) in (13, 14, 15) and
        hour(todate) in (13, 14, 15)






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 2 hours ago









        Gordon LinoffGordon Linoff

        799k37321426




        799k37321426






















            Ayiko Nishimura is a new contributor. Be nice, and check out our Code of Conduct.










            draft saved

            draft discarded


















            Ayiko Nishimura is a new contributor. Be nice, and check out our Code of Conduct.













            Ayiko Nishimura is a new contributor. Be nice, and check out our Code of Conduct.












            Ayiko Nishimura is a new contributor. Be nice, and check out our Code of Conduct.
















            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%2f55759280%2fsearch-between-two-dates-with-specific-time-with-each-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

            ORA-01691 (unable to extend lob segment) even though my tablespace has AUTOEXTEND onORA-01692: unable to...

            Always On Availability groups resolving state after failover - Remote harden of transaction...

            Circunscripción electoral de Guipúzcoa Referencias Menú de navegaciónLas claves del sistema electoral en...