从团队表中删除任何团队时,我需要检查 teamId 在其他表中是否可用。为此,我使用以下查询:-
select count(TeamId) from
( select TeamId from Project union all
select TeamId from TeamMember union all
select TeamId from Department union all
select TeamId from Role union all
) as Id where TeamId = 1
此查询工作正常,并返回计数。
但现在我需要该表及其列的名称,我在其中找到了该 teamId。
如果可能的话,请给我正确的解决方案。
提前致谢..