I have 2 tables. 1st one have oneToMany relationship with 2nd.
2
1st
oneToMany
2nd
Class Author
@Entity @Table(name =
I think its something like this:
select a from Author as a join a.Book as ab where ab.AuthorId like '%"hello"%';
not sure about a.Book though, it could also be a.Books as your columnname is named like that.