I’m pulling data from two separate tables (A, B) into another one (C ) in MSAccess using a SQL statement. Appending all the columns from both feeding tables (A , B ) into the destination table (c ). …
Tag: annotations
Django annotate add interval to date
I am using postgres database with Django 2.2. I need to combine date and time field in model and add an interval of one day in it. I have done first part like this. Model.objects.annotate( end_dt=…