Loading... * 先在super设置好,然后关闭分诊工作站 > 这里以0048为放射科的科室ID为例: ```sql --先删掉除super的其他分诊设置 delete userprofile where profiletype = 'SeparateConfig' and userid <>'super'; --接着把0048 放射科所有工号插入到配置表 insert into userprofile (USERID, PROFILETYPE, PROFILEVALUE) select a.userid as USERID, 'SeparateConfig' as PROFILETYPE, (select t.profilevalue from userprofile t where t.userid = 'super' and t.profiletype = 'SeparateConfig') as PROFILEVALUE from pacsuser a where a.departmentid = '0048' and a.ifforbidden = '0' and a.userid <> 'super'; ``` 最后修改:2024 年 04 月 22 日 © 允许规范转载 赞 如果觉得我的文章对你有用,请随意赞赏