Hi Team,
my Input format is DateTime Type I want to Generate the rows based on the difference between the StartTime and EndTime dates.
1.
Input:
StartTime EndTime
2019-07-22 04:33:55 2019-07-25 05:25:42
Required Output Format:
StartTime EndTime
2019-07-22 04:33:55 2019-07-22 23:59:59
2019-07-23 00:00:00 2019-07-23 23:59:59
2019-07-24 00:00:00 2019-07-24 23:59:59
2019-07-25 00:00:00 2019-07-25 05:25:42
2. How to find out time difference between StartTime and EndTime (in seconds)?
Thank you