homer.favenir
Verified User
hi,
can anyone please help me how to get thy latest entry in my table
my query is
i want to get the latest entry for b.errID without grouping by
thanks in advance
can anyone please help me how to get thy latest entry in my table
my query is
Code:
SELECT
a.transid,
a.artid,
b.remarks,
b.errID
FROM tbl_transactions as a
inner join tbl_errordetail as b on (b.transid = a.transid)
where a.artid = 123
i want to get the latest entry for b.errID without grouping by
thanks in advance