SQL> select * 2 from notification 3 where is_read = case when '&&P1_IS_READ' = 'Y' then 'Y' 4 when '&&P1_IS_READ' = 'N' then 'N' 5 when '&&P1_IS_READ' = 'A' then is_read 6 end 7 order by id; Enter value for p1_is_read: Y ID NAME IS_READ --- --- --- ...
update employee set department_id=apex_application.g_f02(i) where id=apex_application.g_f01(i); END LOOP; end; 这里须要提醒的是序号匹配。也就是说,g_f01指向APEX_ITEM.HIDDEN(1,e.id), g_f02指向 apex_item.select_list_from_lov(p_idx=>2,p_value=>e.department_id,p_lov=>'lov_depart...
问Oracle Apex -选择列表-一个具有多个值的选项EN年后第一篇笔记,还是听听过年歌吧 效果 用法 1.首...
http://<主机名>:8080/apex。要登录 Oracle Application Express,输入以下详细信息,然后单击 Login。 Workspace:<您的工作区名称> Username:<您的用户名> Password:<您的口令> . 在工作区主页上,单击 Application Builder。 . 选择Printing Application。 . 单击Shared Components。 . 在Reports 下,单击 Report...
在Oracle APEX 应用中设置 Oracle Digital Assistant 接口,以提供自然语言界面来查询应用 Oracle Autonomous Database 中的数据。 先决条件 Oracle Digital Assistant 和 Oracle APEX 的安装和熟悉情况。 Oracle APEX 应用程序必须位于支持 Oracle Autonomous Database Select AI 的 Oracle Database 版本上。 具有大型语言...
问编辑Oracle Apex "Select“页面项目时如何首先显示选定的项EN我在一个18.c数据库上使用Apex 19.1。
select distinct r.workspace, r.application_id, t.template_name, t.between_items, t.between_sub_list_items from apex_application_page_regions r, apex_application_temp_list t where r.application_id = t.application_id and r.list_template_override_id = t.list_template_id and (t.between_item...
Select"Form on a Table with Report". To this template,Oracle APEXwill provide you with two pages which include a page of list of departments (DEPT) and a form of creating (and edit) information of departments. First,Oracle APEXrequires you to enter the information for the page containing ...
http://<主机名>:8080/apex。要登录 Oracle Application Express,输入以下详细信息,然后单击 Login。 Workspace:<您的工作区名称> Username:<您的用户名> Password:<您的口令> 2 . 在工作区主页上,单击 Application Builder。 3 . 选择Printing Application。 4 . 单击Shared Components。 5 . 在Reports 下...
json plsql oracle-apex 我必须通过SQL查询生成JOSN对象。最后,我必须将这个JSON对象保存到一个变量中,以便稍后返回。所以我为ajax回调提供了以下代码片段: DECLARE json_result JSON_OBJECT_T; BEGIN SELECT JSON_OBJECT('if' VALUE ID, 'data' VALUE DATA_BLOB, 'upload_date' VALUE UPLOAD_DATE FORMAT JSON)...