Skip to content
Advertisement

Getting all weeks data of a month using inner join

I have the following query:

Above query explanation: I’m getting all weeks data PaidKM which driver gets in a whole month. The month for example starting date is 01-07-2018 and ending date is 31-07-2018 which covers whole month # 07. But when I change the month it gives me the same results all time.

enter image description here

Above GIF’s query implementation: I have implemented this query in Java and when I change the month from combo box but back end query all time gives the result from all records instead of different month.

enter image description here

Above image is the Traveling table in database.

How I can achieve the results when I change a different month? And how can I correct this query to work this?

Advertisement

Answer

Your issue is that the comparisons are string based not date based. Days have the higher precedence than months, and months have higher precedence than years.

e.g. 31-01-1970 would be considered greater than 01-01-2018 as 31 is greater than 01.

You should consider using a recognised date format, which is directly sortable/comparable e.g. YYYY-MM-DD whenever working with/storing dates.

You may wish to consider looking at SQL As Understood By SQLite – Date And Time Functions – Time Strings.

You could convert the dates to be sortable/easily compared using

e.g. instead of :-

you could use :-

The whole query could be :-

  • Note The above is in-principle code and has not been tested, it may therefore contain some errors.
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement