摘要:
元数据相关表 select * from dap_dapsystem 模块信息select * from md_module where id='83cf74c7-2fa4-4e5f-a171-7aa3f2a44f54';--元数据所属模块信息select * from md_class;--元数据 阅读全文
posted @ 2023-12-07 13:59
山䂥进城
阅读(213)
评论(0)
推荐(0)
摘要:
若要彻底删除表,则使用语句:drop table <table_name> purge; 清除回收站里的信息 清除指定表:purge table <table_name>; 清除当前用户的回收站:purge recyclebin; 清除所有用户的回收站:purge dba_recyclebin; 不 阅读全文
posted @ 2023-12-07 13:57
山䂥进城
阅读(221)
评论(0)
推荐(0)
摘要:
注解必须紧跟在select、update、merge、insert或delete关键字后面。 select empid, ename /*+ index(e emp_pk) */ from emp ewhere empid in(1001, 1002); 访问路径提示:/*+ FULL(表名)*/ 阅读全文
posted @ 2023-12-07 09:24
山䂥进城
阅读(22)
评论(0)
推荐(0)