gpt4 book ai didi

java - 使用 JDBC 在 MySQL 中插入 select

转载 作者:行者123 更新时间:2023-11-29 08:14:16 25 4
gpt4 key购买 nike

我想将一行中的值插入到另一行中,这是我的代码:

static void addVipMonth(String name) throws SQLException
{
Connection conn = (Connection) DriverManager.getConnection(url, user, pass);
PreparedStatement queryStatement = (PreparedStatement) conn.prepareStatement("INSERT INTO vips(memberId, gotten, expires) " +
"VALUES (SELECT name FROM members WHERE id = ?, NOW(), DATEADD(month, 1, NOW()))"); //Put your query in the quotes
queryStatement.setString(1, name);
queryStatement.executeUpdate(); //Executes the query
queryStatement.close(); //Closes the query
conn.close(); //Closes the connection
}

此代码无效。我该如何纠正它?

最佳答案

I get an error 17:28:46 [SEVERE] com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MyS QL server version for the right syntax to use near ' NOW(), DATE_ADD( now(), INT ERVAL 1 MONTH )' at line 1 – sanchixx

这是由于 SELECT .. 语句中的错误造成的。
修改后的语句为:

INSERT INTO vips( memberId, gotten, expires )  
SELECT name, NOW(), DATE_ADD( now(), INTERVAL 1 MONTH )
FROM members WHERE id = ?
<小时/>
  1. 使用select插入时,不需要VALUES关键字。
  2. 您使用了错误的 DATEADD 函数语法。正确的语法是 Date_add( date_expr_or_col, INTERVAL number unit_on_interval)

您可以尝试按如下更正的插入语句:

INSERT INTO vips( memberId, gotten, expires )  
SELECT name FROM members
WHERE id = ?, NOW(), DATE_ADD( now(), INTERVAL 1 MONTH )

引用:

  1. INSERT ... SELECT Syntax
  2. DATE_ADD(date,INTERVAL expr unit)

关于java - 使用 JDBC 在 MySQL 中插入 select,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20922966/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com