SQL Command:
select id, max(time) from table1 groupd by id
Table2 fields:
id, name, group
I included the SQL Command in the Crystal Reports using the Database Experts window. I also linked the 2 tables using the ID field (same datatype).
Problem:
When I am populating the fields:
ID, TIME, NAME, and GROUP
There were no records in the report but when I join them in a single SQL, there were records returned.
What could be the problem on this?
Thanks.
select id, max(time) from table1 groupd by id
Table2 fields:
id, name, group
I included the SQL Command in the Crystal Reports using the Database Experts window. I also linked the 2 tables using the ID field (same datatype).
Problem:
When I am populating the fields:
ID, TIME, NAME, and GROUP
There were no records in the report but when I join them in a single SQL, there were records returned.
What could be the problem on this?
Thanks.