Java數據庫之刪除記錄

刪除數據表也有3種方案 sql 一.使用Statement對象 刪除數據表記錄的SQL語句的語法是:     delete from 表名 where 特定條件 例如 :     delete from ksInfo where 姓名 = ‘張大衛’ 先建立一個SQL語句,而後調用Statement對象的executeUpdate()方法:     stmt.executeUpdate(sql);
相關文章
相關標籤/搜索