Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 18.191.147.146
Current Path : /var/www/html/gug/ |
| Current File : /var/www/html/gug/fee_query |
select s.fcollcode, CONCAT(fcollname,', ',ftown) as college_name , SUM(ftotfee) as amount
from studadm s
inner join college c
on s.fcollcode = c.fcollcode
where IFNULL(fapprstatus,'') = 'APPROVED' and fdegree like 'b%'
group by s.fcollcode
select cs.fcollcode,CONCAT(fcollname,', ',ftown) as college_name , SUM(ftotalfee) as amount from appcandsum cs inner join college c
on cs.fcollcode = c.fcollcode
where IFNULL(fackdate,'') <> ''
group by fcollcode
|