Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9229717
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T05:38:29+00:00 2026-06-18T05:38:29+00:00

I have three tables Project id, name ProjectAuthorization id, project_id, user_id , permission User

  • 0

I have three tables

Project
   id, name
ProjectAuthorization
   id,  project_id, user_id , permission
User
   id, name

Project.java

@OneToMany(mappedBy = "project", cascade = CascadeType.ALL)
private List<ProjectAuthorization> permissions;

User.java

@OneToMany(mappedBy = "user",cascade =CascadeType.ALL)
private List<ProjectAuthorization> permissions;

ProjectAuthorization.java

@ManyToOne()
private Project project;
@ManyToOne()
private User user;

I want to get all projects that current user without any permissions, how to write it by hibernate query?

Update

hql like this:

select p from Project as p left join p.permissions as pa where pa.user.id!=:userid and p.id not in (select pa2.project.id from ProjectAuthorization as pa2 where pa2.user.id=:userid)");
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T05:38:30+00:00Added an answer on June 18, 2026 at 5:38 am

    For example following query (also valid JPQL, no Hibernate specific constructs in use) can be used:

    SELECT p
    FROM Project p
    WHERE p.id NOT IN
      (SELECT authorization.project.id
       FROM ProjectAuthorization authorization
       WHERE authorization.user = :currentUser)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have three tables: project (idproject, name) color (idcolor, name) project_has_color (idproject, idcolor) Now
I have 3 tables: Employee: contain employee_id, name Project: contain project_id, name Project_assignment: contain
Using MySQL, I have three tables: projects : ID name 1 birthday party 2
I have three tables Prospect -- holds prospect information id name projectID Sample data
I have say three tables. Projects Id Name Categories Id Name ProjectCategories Id ProjectId
I have a Doctrine2 project with three tables: Product , Category and Rating .
I have tables : Project table id name ------- 1 A 2 B Assignment
I've ran into a design issue; in a project, i have three tables: League,
I have 2 tables. table 1 (projects): id, name, type table 2 (project_ratings): project_id,
I have the following scenario: project -----> company <----- clientdetails I have three tables:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.