Я хочу выбрать только последнюю строку в моей таблице и вернуть это int в моей переменной.
Это мой метод в моем репозитории:
@Transactional
@Modifying
@Query(value="SELECT category_id FROM category ORDER BY category_id DESC LIMIT 1\r\n", nativeQuery = true)
int selectLastRecord();
И когда я вызываю метод с этим кодом:
int categoryId = this.categoryRepository.selectLastRecord();
У меня ошибка:
org.postgresql.util.PSQLException: A result was returned when none was expected.