posted 2 years ago
Hi ,
I am developing spring boot app to get an entity which has join of 3-4 tables. I enabled sql output in application.properties . But i am seeing only high level SQL . Is there
any way i can print all join queries also when fetching the data :
---------------SQL output --------------------------
select
parent0_.pk_pk_key as pk__p1_6_,
from
mainentity0_
where
mainentity0_.pk_emp_key in (
? , ? , ? , ? , ?
)
---------------------------Tables -------------------------------------------------------------------------------------------------------
Thanks