如何将带有数据库数据的自定义 table 添加到 Oracle APEX 中的应用程序?

How to add a custom table with data from the database to the application in Oracle APEX?

我需要向 Oracle APEX 中的应用程序添加一个类似于 static HTML 的小模块,但 从数据库中检索数据

即,使用数据库中的数据自定义table。

是否可以在 Oracle APEX 中执行类似的操作?

好的我用了PL/SQL动态内容:

declare
begin
for rec in (select CATEGORY_TITLE from TBL_CATEGORY)
loop
htp.p('<table style="border: 2px solid #eee;">');
htp.p('<tr>');
htp.p('<td>'||'Category: '||'</td>'||'<td>'||rec.CATEGORY_TITLE||'</td>'||'<td>'||'</td>'||'<td>'||'</td>');
htp.p('</tr>');
htp.p('</table>');
htp.p('<br>');
end loop;
end;