1
鑑於這種兩個實體:彈簧數據JPA:如何使JPA標準查詢
post post_category
- id - post_id
- title - name
- text
我想使用JPA標準查詢此查詢,使:
select * from post
where post.id in (
select post_id from post_category
where name = '<category1>' and name = '<category2>' ... and name = '<categoryN>')
查看有關哪些問題可以在SO上進行的FAQ:http://stackoverflow.com/faq。目前這個問題是開放式的 - 我們不會爲你寫代碼。 –
類似的一個在這裏 - http://stackoverflow.com/a/13912967/366964一些快速入門的變化。 –