删除记录哪些字段具有指定的值

时间:2017-06-16 13:46:09

标签: java mysql sql jdbc

我正在尝试删除具有我指定值的字段的记录:

public static void delete(String firstName, String lastName, int age)
{
    try 
    {
        Statement myStmt = connection.createStatement();
        String sql = "delete from students where firstName='" + firstName + "', lastName='" + lastName + "', age='" + age + "'";
        myStmt.executeUpdate(sql);
    } 
    catch (SQLException e)
    {e.printStackTrace();}
}

代码不起作用。我绝对相信它的问题。请帮我做正确的sql。如何在表格中找到由我指定哪些字段的记录?

以下是我遇到的错误:

com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where firstName='deleted', lastName='deleted', age='10'' at line 1
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
    at java.lang.reflect.Constructor.newInstance(Unknown Source)
    at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
    at com.mysql.jdbc.Util.getInstance(Util.java:408)
    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
    at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
    at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
    at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2486)
    at com.mysql.jdbc.StatementImpl.executeUpdateInternal(StatementImpl.java:1552)
    at com.mysql.jdbc.StatementImpl.executeLargeUpdate(StatementImpl.java:2607)
    at com.mysql.jdbc.StatementImpl.executeUpdate(StatementImpl.java:1480)
    at Driver.delete(Driver.java:76)
    at Driver.main(Driver.java:18)

2 个答案:

答案 0 :(得分:5)

要避免所有这些语法错误甚至SQL注入,您必须使用PreparedStatement,因此您可以使用:

String query = "delete from students where firstName=? and lastName=? and age=?";
try (PreparedStatement delete = connection.prepareStatement(query)) {

    delete.setString(1, firstName);
    delete.setString(2, lastName);
    delete.setInt(3, age);//<-----------(1)

    delete.executeUpdate();
}
  • (1)我不确定年龄是int还是varchar,所以如果age是一个字符串,你必须使用setString。

您真正的问题是您必须使用and中的orwhere而不是,

 where firstName='" + firstName + "', lastName='" + lastName + "', age='" + age + "'";
//----------------------------------^----------------------------^

答案 1 :(得分:3)

您的SQL不正确,应该是:

String sql = "DELETE FROM students WHERE firstName='" + firstName + "' AND lastName='" + lastName + "' AND age='" + age + "'";

您只能使用关键字来区分WHERE子句中的条件,例如ANDOR逗号在SQL查询的该部分中是无效的分隔符。