I am working Oracle APEX, i am little bit confused in Queries how to make it. I created two tables with following attributes
Employees( "EMP_ID",
"EMP_NAME",
"EMP_DESIGNATION" ,
"EMP_ADDRESS" ,
"EMP_GENDER",
"EMP_CONTACT",
"EMP_EMAIL" ,
"EMP_JOINING_DATE",
CONSTRAINT "PK_EMP_ID" PRIMARY KEY ("EMP_ID") ENABLE
);`
and
Attendance
( ATT_ID,
EMP_ID,
ATT_STATUS,
ATT_IN DATE,
ATT_OUT DATE,
ATT_COMMENTS,
CONSTRAINT "PK_ATT_ID" PRIMARY KEY ("ATT_ID") ENABLE
CONSTRAINT "FK_EMP_ID" FOREIGN KEY ("EMP_ID") REFERENCES "EMPLOYEES" ("EMP_ID"));
I have subtracted the Att_Out from Att_In to get the Time in MINUTES which i get and then multiply it with .69 which is the salary of employees per minute as shown in diagram with Query.
select emp_id,sum(((att_out-att_in)*1440)*.69) as "minutes*sal/m"
from attendance group by emp_id;

I want to select EMP_ID,EMP_NAME from Employees Table with the rest of the query as mentioned above. I did with INNER JOIN but then group by function is giving me error.