Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

plsql - Nested Subquery in Oracle Apex 20.1 chart

for my chart in Oracle Apex 20.1 i want to implement a nested subquery where data shown depends on someones permission in a team.

I have on table (ASSESS_TEAM) with team and the columns:

  • id
  • department
  • date
  • result
  • creator
  • name

Furthermore, I have a second table (PROJECT_TEAM) where one can create a new team and add owners and members and rights with the following columns:

  • name
  • creator
  • date
  • owner
  • member
  • owner_rights
  • member_rights

For my chart I need to create secure view where only the creator, the team owner and the members can view the assessed team with the results. So I need to check if the logged user is in a project team or not. If so, he can see the chart and vice versa.

My current approach is to use a nested subquery. But although the code seems valid nothing every record is shown in the chart without a filter

The code:

SELECT  date, result, department, name from assess_team

where exists

(SELECT creator, owner, member from project_team

WHERE 

name = :PX_ID

AND

(creator= :APP_USER OR owner= :APP_USER OR member= :APP_USER ));

I also tried to join the two table, but then i get multiple entries in my chart, since there can be multiple owners and members in a team.

Any idea on how to solve this. Any help is appreciated. Thank you.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can use corrects structure

SELECT  date, result, department, name 
from assess_team at
where exists 
(SELECT * from project_team
WHERE name = at.name
AND name = :PX_ID
AND (creator= :APP_USER OR owner= :APP_USER OR member= :APP_USER ));

More details : https://www.techonthenet.com/oracle/exists.php


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...