Слайд 2Project
HRMS-INFO – control system for HR-specialists, automates the process of selection, training
![Project HRMS-INFO – control system for HR-specialists, automates the process of selection,](/_ipx/f_webp&q_80&fit_contain&s_1440x1080/imagesDir/jpg/1179770/slide-1.jpg)
of human resources for the implementation of IT projects.
Слайд 10Hibernate Query Language
role.user.count = select ur.roleName, count(uu)
from UserRoleVO ur
left
![Hibernate Query Language role.user.count = select ur.roleName, count(uu) from UserRoleVO ur left](/_ipx/f_webp&q_80&fit_contain&s_1440x1080/imagesDir/jpg/1179770/slide-9.jpg)
join ur.userVOs uu
where ur.customer.id like :cust
and (uu is null or uu.customer.id like :cust)
group by ur.roleName
role.user.without = select count(uu)
from UserVO uu
left join uu.userRoleVOs ur
where uu.customer.id like :cust
and (ur is null or ur.customer.id not like :cust
or ur.customer.id is null)
group by uu.customer.id