I'm running into a problem where I need the values from a row in my table where the date field has it's max value.
Usually I would use sql to get this from a database like:
select max(dateField), otherField, otherField2 from table where otherField = '1'
But using a command in crystal causes this simple query to run for hours without result (on the database direct it will take less then 1 minute).
So, can I emulate this behaviour in a clever manner without using a command?
Cheers
Usually I would use sql to get this from a database like:
select max(dateField), otherField, otherField2 from table where otherField = '1'
But using a command in crystal causes this simple query to run for hours without result (on the database direct it will take less then 1 minute).
So, can I emulate this behaviour in a clever manner without using a command?
Cheers