作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个用 Java 编写的应用程序。现在我必须在数据库中创建一个新列。但该列不存在时才创建。
所以我想使用IF NOT EXISTS和ALTER TABLE来创建我的新列。
这是我尝试过的:
//Some import statements and previous, not for the question relevant code
//relevant code:
Statement alter = conn.createStatement();{
String alterStr="alter table test_cm_documents ADD if not exists test_id int";
alter.executeQuery(alterStr);
System.out.println("Column has been generated.")
}
实际上我只是期望它打印出“列已生成”。但它给了我以下错误消息:
ERROR 1064(42000): 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 'if not exists test_id' at line 1
我对这个主题还很陌生,所以请原谅任何错误。
最佳答案
您可以使用:
select * from information_schema.columns
where
table_schame='<enter_your_database_name_here_remove_brackets>' and
table_name='test_cm_documents' and
column_name='test_id'
在 Java 应用程序中接收元组列表,如果该列表的大小为 0,则执行 mysql 查询:
alter table test_cm_documents add column test_id int;
此外,您还需要向 Java 应用程序中指定的用户授予访问权限(对于 information_schema)。 (如果用户是“ROOT”,请忽略此)。
关于java - 如何将 IF NOT EXISTS 语句用于 ALTER TABLE 语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58390022/
我是一名优秀的程序员,十分优秀!