★
Size: a a a
★
ВБ
ВБ
★
ВБ
ВБ
DS
DS
DS
DS
DS
ВБ
★
TypedQuery<CityEntity> query = entityManager.createQuery(
"from CityEntity city inner join " +
"CountryEntity country on city.countryEntity.countryid =" +
" country.countryid where city.cityName LIKE '" + "A%" + "'"
, CityEntity.class);
List<CityEntity> list = query.getResultList();
DS
ВБ
ВБ
ВБ
TypedQuery<CityEntity> query = entityManager.createQuery(
"from CityEntity city inner join " +
"CountryEntity country on city.countryEntity.countryid =" +
" country.countryid where city.cityName LIKE '" + "A%" + "'"
, CityEntity.class);
List<CityEntity> list = query.getResultList();
DS
ВБ
★