select id, name
from #application.galleon.settings.tableprefix#conferences
select id, name, conferenceidfk
from #application.galleon.settings.tableprefix#forums
Number of Forums Per Conference
select count(id) as total
from forums
where conferenceidfk = '#id#'
Number of Threads Per Forum
select count(id) as total
from threads
where forumidfk = '#id#'