gpt4 book ai didi

java - 我尝试使用 JDBC 在 MySQL 数据库中创建一个表

转载 作者:行者123 更新时间:2023-11-29 05:10:34 25 4
gpt4 key购买 nike

<分区>

我正在尝试在我的 MySQL 数据库中创建一个表。这是我的代码:

//Table
public static void createTable() throws Exception
{
try {
Connection conn = getConnection();
PreparedStatement create = conn.prepareStatement("CREATE TABLE IF NOT EXIST registration(id int NOT NULL AUTO_INCREMENT,first_name varchar(45),last_name(45),email varchar(320),password varchar(50),PRIMARY KEY(id))");
create.executeUpdate();
}
catch(Exception e) {
System.out.println(e);
}
finally {
System.out.println("System Updated");
};
}
//End of Table

这是我遇到的错误

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 'EXIST registration(id int NOT NULL AUTO_INCREMENT,first_name varchar(45),last_name(45),email var' at line 1

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