DEPARTMENT(deptnum, descrip, instname, deptname, state, postcode) ACADEMIC(acnum deptnum*, famname, givename, initials, title) PAPER(panum, title)
AUTHOR(panum. acnum)
FIELD(fieldnum, id, title)
INTEREST(fieldnumt. acnum, descrip)
Select *
from field
where ID like 'B.1._
select deptnum, deptname, instname, count(acnum)
from department, academic where academic.deptnum department.deptnum
group by deptnum
having max(count(acnum));