2. The following is intended to outline our general product direction. It is intended for information
purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any
material, code, or functionality, and should not be relied upon in making purchasing decisions. The
development, release, timing, and pricing of any features or functionality described for Oracle’s
products may change and remains at the sole discretion of Oracle Corporation.
Safe harbor statement
Copyright ? 2020, Oracle and/or its affiliates2
24. Copyright ? 2020, Oracle and/or its affiliates24
? フィードバックの機能自体は今までと同じです。
? バグとしてログイン(Log as Bug)、To Doとしてログイン(Log as ToDo)、機能としてログイン(Log as
Feature)、これら3つは以前のチーム開発へデータを投入するので使用しません。
? 問題としてログイン(Log as Issue)は、新しいチーム開発の問題(Issue)として登録されます。
チーム開発/フィードバック
フィードバック
47. Copyright ? 2020, Oracle and/or its affiliates47
サンプル問合せ
表問合せ
select EMPNO,
ENAME,
JOB,
(select "ENAME" from "EMP" x where x."EMPNO" = a."MGR") "MGR",
HIREDATE,
SAL,
COMM,
(select "DNAME" from "DEPT" x where x."DEPTNO" = a."DEPTNO") "DEPTNO"
from "EMP" a
参照制約を考慮します。
どういった条件でENAME, DNAMEが選ばれたかは不明
おそらくデータ?タイプが文字列で、カージナリティが高く、それらが同じ条件であれば最初に現れるカラム。
バージョンが上がる度に、より妥当なサンプルが提示される可能性があります。
48. Copyright ? 2020, Oracle and/or its affiliates48
推奨: 円グラフ
全従業員をひとつに円として、
従業員の職種ごとに分割しま
す。
推奨: 円グラフ
全従業員をひとつの円として、
従業員が所属する部門で分割し
ます。
推奨: 棒グラフ
直属の部下の数の多い社員の一
覧を一覧しています。
サンプル問合せ
列問合せ
select a."ENAME",
a."EMPNO",
count(*) c
from "EMP" a, "EMP" b
where a."EMPNO" = b."MGR"
group by a."ENAME", a."EMPNO"
order by 3 desc
select a."DNAME",
a."DEPTNO",
count(*) c
from "DEPT" a, "EMP" b
where a."DEPTNO" = b."DEPTNO"
group by a."DNAME", a."DEPTNO"
order by 3 desc
select "JOB", count(*) c
from "EMP"
group by "JOB"
order by 2 desc
62. Copyright ? 2020, Oracle and/or its affiliates62
select
null item_classes,
null selection,
case t.status
when 'Open' then 'fa fa-lg fa-exclamation-circle-o'
when 'Closed' then 'fa fa-lg fa-check-circle u-success-text'
when 'On-Hold' then 'fa fa-lg fa-minus-circle u-danger-text'
when 'Pending' then 'fa fa-lg fa-exclamation-triangle u-warning-text'
end icon_class,
null icon_html,
t.task_name title,
'Project: ' || p.project description,
t.status misc,
null actions
from
eba_ut_chart_tasks t,
eba_ut_chart_projects p
where
t.project = p.id
order by p.created
ユニバーサル?テーマ
Content Rowの記述 (1)
アイコンの表示
アクションはリンクとして定義
63. Copyright ? 2020, Oracle and/or its affiliates63
select
null item_classes,
APEX_ITEM.CHECKBOX2(p_idx => 1, p_value => t.id) selection,
case t.status
when 'Open' then 'fa fa-lg fa-exclamation-circle-o'
when 'Closed' then 'fa fa-lg fa-check-circle u-success-text'
when 'On-Hold' then 'fa fa-lg fa-minus-circle u-danger-text'
when 'Pending' then 'fa fa-lg fa-exclamation-triangle u-warning-text'
end icon_class,
null icon_html,
t.task_name title,
'Project: ' || p.project description,
t.status misc,
null actions
from
eba_ut_chart_tasks t,
eba_ut_chart_projects p
where
t.project = p.id
order by p.created
ユニバーサル?テーマ
Content Rowの記述 (2)
チェックボックスの表示
(APEX_ITEMの呼び出し)
selectionの特殊文字のエスケープはオフにします。
64. Copyright ? 2020, Oracle and/or its affiliates64
select
null item_classes,
null selection,
null icon_class,
'<img src=/slideshow/oracle-apex-192-227926595/227926595/" alt="" />' icon_html,
t.task_name title,
'Project: ' || p.project description,
null misc,
null actions
from
eba_ut_chart_tasks t,
eba_ut_chart_projects p
where
t.project = p.id
order by p.created
ユニバーサル?テーマ
Content Rowの記述 (3)
イメージの埋め込み
アクションはリンクとして定義
Icon_htmlの特殊文字のエスケープはオフにします。