Re: INSERT rows in Reverse Order
> If I could insert that data in reverse order, it would solve my
> problem.
You could use the journal table has a temporary table, and work your
way around with that.
> Also, since each entry has a date, if I could sort the data by date
> when inserting it would solve my problem.
Read what I said above.
With this temporary table you can select each item by date, and insert
them into a new table in the order you like.
|