I can’t seem to understand why, but i’m trying this query :
SELECT called,caller,time,duration
FROM Calls
GROUP BY called,caller,time,duration
But that returns rows with same called value which is not i want.
Basically i’m trying to build a bigger query, just going step by step with that.
i need a query to return latest entry for every called per caller
Assuming that you want only distinct
calledvalues but all columns. If there are multiplecalledi take only the last (ordered bytime):