0
這裏是我從數據庫中選擇:JPA選擇使用IN
SELECT * FROM testlogging.employees
where
EMPLOYEE_NO in (
select EMPLOYEES_EMPLOYEE_NO from testlogging.test_logging
where ID in (
select TEST_LOGGING_ID from testlogging.test_logging_detail
where APPROVAL_LEVELS_ID = '4'
)
)
我會怎麼做這在JPA?
SELECT e FROM Employees e ???