I'd like to get better sense of the historical inventory of my objects table.
Thus Objects has basically three relevant columns:
car_id, incoming_date, outgoing_date
Fine, my objects are cars.
For graphing purposes, I'd like to expand the dates on which each car was held.
So the resulting table would look like:
car_id, held_date and where I can get that held_date is between incoming and outgoing for each car.
I did find this post that creates the dates in between, but I haven't been able to incorporate this with respect to each car. Help.
Also as a side note, I don't have permission to create calendar tables, so hopefully there's a way around that as well. Thanks.