You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
delete from itsm_system_role_menu where menu_id in(
with RECURSIVE menuTemp(menu_id,parent_id)
as (
select menu_id ,parent_id from itsm_system_menu where menu_id in
(
'M00006'
)
union all
select a.menu_id ,a.parent_id from itsm_system_menu as a INNER JOIN menuTemp b on a.parent_id=b.menu_id
)
select menu_id from menuTemp);
postgres 有RECURSIVE,递归查询,但是貌似druid不支持?
The text was updated successfully, but these errors were encountered: