I have a table that has amongst it columns the following --
* An action date,
* A transaction date, and
* A transaction time.
How would I find the last transaction date / transaction time combination for a particular action date?
I have one method where I select on the MAX (of the concatenated transaction date and transaction time columns). Is that efficient?
* An action date,
* A transaction date, and
* A transaction time.
How would I find the last transaction date / transaction time combination for a particular action date?
I have one method where I select on the MAX (of the concatenated transaction date and transaction time columns). Is that efficient?