Hi,I have a table that contains records of inventory, stored by date. this way:AMOUNT, DATE1, 01/01/20083, 02/01/20084, 03/01/20088, 06/01/2008
Notice that there are no entries for January 4 and 5, this is because the inventory did not change (remained at 4). So, in the interest of space, we do not insert a record when the inventory does not change.Now, I need to create a select statement that will return "expanded" results... meaning I need to get:AMOUNT, DATE1, 01/01/20083, 02/01/20084, 03/01/20084, 04/01/20084, 05/01/20088, 06/01/2008
I was wondering if someone could tell me if it's possible to create a nifty query that would help me do this?tx