I\'m working with JPA (Hibernate as provider) and an underlying MySQL database.
I have a table containing every name of streets in Germany. Every streetname has a un
You also write a SQL query. It is like a normal query:
SQL
Query sqlQuery = session.createSqlQuery("select * from CITY where name like binary :name').addString('name', name);
Note that the code is roughly done.