表格形式列合并Oracle Apex 5

时间:2016-07-02 09:39:42

标签: oracle-apex tabular

有人知道如何将两列表格形式合并为一列吗?

这是一个例子:

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以通过在查询中应用html代码来实现。 在您的查询中尝试此操作

SELECT attendance,
       member_id,
       name,
       saving,
       '<input class=''u-TF-item u-TF-item--text '' style=''text-align:center;'' name=''repayment'' value='||repayment||'></input>'||'<br>'||
       '<input class=''u-TF-item u-TF-item--text '' style=''text-align:center;'' name=''profit'' value='||profit||'></input>' repayment,
FROM
       your_table
WHERE
...
  • 假设其标题与其列名相同;
  • 类刚刚从另一列复制,以匹配它们的外观。