How to write join by Lateral “,” in Java Criteria API JPA, Hibernate
I want to achieve the below result with ‘,’
FROM table1 t1,
LATERAL jsonb_array_elements(secret_data->’rating’->’subRating’) AS subRatings
WHERE
I want to achieve the below result with ‘,’
FROM table1 t1,
LATERAL jsonb_array_elements(secret_data->’rating’->’subRating’) AS subRatings
WHERE