當它返回最大ID時,我不知道如何編寫。請給我答案。如何在ejb方法中寫'select max(AdvID)from Advertisement'查詢?
我已經在sessionbean中寫了這個,但它返回-1。
@Override
public int searchMaxAdvID() {
int adid=em.createNativeQuery("select max(AdvID) from Advertisement").getMaxResults();
return adid;
}