PL SQL to export data (menu) skills

PL SQL data tips guide

Scenes

Continued delivery of projects, from development library data export menu.

Script ready

with t as (
SELECT FORM_ID FROM t_eap_sys_menu start with menu_name ='QMS' 
connect by prior menu_id= parent_menu_id )
select * from t
--导出QMS模块下所有的菜单

Steps

1: in PL SQL execution tool, as shown in FIG.
Here Insert Picture Description

2: export scripts, as shown below
Here Insert Picture Description
3: Export results are shown in FIG.
Here Insert Picture Description

Published 21 original articles · won praise 47 · views 3927

Guess you like

Origin blog.csdn.net/richyliu44/article/details/104496617