I have a table A with ID
, houseId
and Task
. I have another table B with ID
, TbleAId
, Description
and Status
.
I want to get count of all the tasks, completed tasks (where the status for all is set to 'Completed') and incomplete tasks (where the status for all is not set to 'Completed')
Check out the image for a sample:
Thanks in advance!