Hi I have this query request from 2 tables: Tbl1 and Tbl2.
I'm trying to get total working hours per day from Tbl1 (SO) and used hours from Tbl2 (Hours) on the same day. And I want to display totals per day
SELECT (Count(SO)*8.5) as Working, Round(Sum(Hours),2) as Used, INT(Datein) as Day FROM Tbl1,
Tbl2 WHERE (INT(Datein) = Int(Fecha)) GROUP BY INT(Datein),INT(Fecha)
I run this and is getting thru but results I'm getting are bad on both Working and Used.
One more thing I'm not doing a join because I used to get the "Join Expression Not Supported" error.
Thanks in advance for your support.