java jdbc accessing multiple resultsets

后端 未结 3 1767
既然无缘
既然无缘 2020-12-18 14:54

I have the following structure:

List -->List_Participant -->Participant

so a list may contain several participants.I try to read this in java:



        
3条回答
  •  無奈伤痛
    2020-12-18 15:45

    Nested query ? Something like Select * from List_Participant where name in (select name from List); This can be made to work for your third tabel as well.

提交回复
热议问题