我想從mysql表中刪除數據,如果它與當前日期。使用休眠刪除SQL表中的數據
這是我寫的代碼,並呈現出在線路的異常「錯誤」:
什麼是從那裏應用條件與表中刪除數據的過程?
Date date=new Date();
SimpleDateFormat myFormat=new SimpleDateFormat("dd-MM-yyyy");
String todayDate=myFormat.format(date);
String query="delete * from today_list where today_date="+"'"+todayDate+"'";
Transaction t1=session.beginTransaction();
session.createQuery(query).executeUpate();//ERROR
t1.commit();
你得到的例外是什麼? – Averroes