Python Forum
Find overlapping date in database
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Find overlapping date in database
#1
I have entered the start and end date and now I want to find the number of days which overlap with the start and end date in my database. I am having difficulty finding a logic in python which will do this job. I am using Oracle database.
Reply
#2
I think (Can't test) SELECT * FROM tablename WHERE TO_DATE('01/01/2021', 'MM/DD/YYYY') <= TO_DATE('12/16/2021', 'MM/DD/YYYY')
will do it, replace tablename with your tablename, and change dates to your requirement.
Hilal likes this post
Reply
#3
(Dec-16-2021, 04:39 PM)Larz60+ Wrote: I think (Can't test) SELECT * FROM tablename WHERE TO_DATE('01/01/2021', 'MM/DD/YYYY') <= TO_DATE('12/16/2021', 'MM/DD/YYYY')
will do it, replace tablename with your tablename, and change dates to your requirement.

Thanks a lot for your help, it worked.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Compare current date on calendar with date format file name Fioravanti 1 253 Mar-26-2024, 08:23 AM
Last Post: Pedroski55
  Python date format changes to date & time 1418 4 626 Jan-20-2024, 04:45 AM
Last Post: 1418
  Unexpected Output - Python Dataframes: Filtering based on Overlapping Dates Xensor 5 722 Nov-15-2023, 06:54 PM
Last Post: deanhystad
  Organizing several similar classes with overlapping variables 6hearts 7 1,416 May-07-2023, 02:00 PM
Last Post: 6hearts
  Date format and past date check function Turtle 5 4,288 Oct-22-2021, 09:45 PM
Last Post: deanhystad
  How to add previous date infront of every unique customer id's invoice date ur_enegmatic 1 2,246 Feb-06-2021, 10:48 PM
Last Post: eddywinch82
  How to add date and years(integer) to get a date NG0824 4 2,897 Sep-03-2020, 02:25 PM
Last Post: NG0824
  Substracting today's date from a date in column of dates to get an integer value firebird 1 2,138 Jul-04-2019, 06:54 PM
Last Post: Axel_Erfurt
  How to change existing date to current date in a filename? shankar455 1 2,307 Apr-17-2019, 01:53 PM
Last Post: snippsat
  Comparing Dates to find the next date Hass 5 2,850 Jan-20-2019, 12:40 AM
Last Post: Hass

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020