update 表名 set 列名=更新值 where 查询条件
例如:把Employee表中的名为张三的EmployeeID的值更改为1,就要写到
update Employee set EmployeeID=1 where Name='张三'
import java.sql.*;
public class DBUtil{
public static void main(String[] args)throws Exception{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con=DriverManager.getConnection("jdbc:odbc:jsql");
PreparedStatement pst=con.prepareStatement("insert iotn jobs ('dddddd','1','1')");
pst.executeUpdate();
pst.close();
con.close();
}
}
。。。update
update table set 列名=更新值 [where 条件] 感觉楼上说对了
有外联另外说...
update table set 列名=更新值 [where 条件]