在 ALTER TABLE 之前检查列是否存在 -- mysql
有没有办法在 ALTER TABLE ADD coumn_name 语句运行之前(或运行时)检查 mySQL 数据库中是否存在列?类似于 IF 列不存在 ALTER TABLE
的东西。
我已尝试 ALTER IGNORE TABLE my_table ADD my_column 但如果我要添加的列已存在,这仍然会引发错误。
编辑:用例是升级已安装的 Web 应用程序中的表 - 因此为了简单起见,我想确保我需要的列存在,如果不存在,请使用 ALTER TABLE< 添加它们/代码>
Is there a way to check if a column exists in a mySQL DB prior to (or as) the ALTER TABLE ADD coumn_name
statement runs? Sort of an IF column DOES NOT EXIST ALTER TABLE
thing.
I've tried ALTER IGNORE TABLE my_table ADD my_column
but this still throws the error if the column I'm adding already exists.
EDIT: use case is to upgrade a table in an already installed web app-- so to keep things simple, I want to make sure the columns I need exist, and if they don't, add them using ALTER TABLE
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(10)
由于 mysql 控制语句(例如“IF”)仅在存储过程中起作用,因此可以创建并执行临时语句:
Since mysql control statements (e.g. "IF") only work in stored procedures, a temporary one can be created and executed:
实用函数和过程
首先,我有一组实用函数和过程,用于执行删除外键、普通键和列等操作。我只是将它们留在数据库中,以便我可以根据需要使用它们。
他们在这里。
使用上面的实用程序删除约束和列
有了这些实用程序,就可以很容易地使用它们来检查列和约束是否存在:
Utility functions and procedures
First, I have a set of utility functions and procedures that I use to do things like drop foreign keys, normal keys and columns. I just leave them in the database so I can use them as needed.
Here they are.
Dropping constraints and columns using the utilities above
With those in place, it is pretty easy to use them to check columns and constraints for existence:
你认为你可以尝试这个吗?:
这不是一句空话,但你至少能看看它是否适合你?至少在等待更好的解决方案时..
Do you think you can try this?:
It's no one-liner, but can you at least see if it will work for you? At least while waiting for a better solution..
用下面约翰·沃森 (John Watson) 的例子来造一个计数句子。
将该结果保存为整数,然后将其作为应用
ADD COLUMN
语句的条件。Make a count sentence with the example below by John Watson.
Save that result in an integer and then make it a condition to apply the
ADD COLUMN
sentence.您可以通过以下方式测试列是否存在:
只需填写列名称、表名称和数据库名称。
You can test if a column exists with:
Just fill in your column name, table name, and database name.
虽然这是一篇相当老的帖子,但我仍然对分享我对这个问题的解决方案感到高兴。如果列不存在,那么肯定会发生异常,然后我在表中创建列。
我刚刚使用了下面的代码:
Although its quite an old post but still i feel good about sharing my solution to this issue. If column doesn't exist then an exception would occur definitely and then i am creating the column in table.
I just used the code below:
如果列存在,您可以使用 CONTINUE 处理程序创建一个过程(请注意,此代码在 PHPMyAdmin 中不起作用):
如果列已存在,此代码不应引发任何错误。它不会执行任何操作并继续执行 SQL 的其余部分。
You can create a procedure with a CONTINUE handler in case the column exists (please note this code doesn't work in PHPMyAdmin):
This code should not raise any error in case the column already exists. It will just do nothing and carry on executing the rest of the SQL.
这个语法对我有用:
SHOW COLUMNS FROM <表名>喜欢'<列名>'
更多内容请参见这篇文章:
https://mzulkamal.com/blog/ mysql-5-7-check-if-column-exist?viewmode=0
This syntax work for me :
SHOW COLUMNS FROM < tablename > LIKE '< columnName >'
More in this post :
https://mzulkamal.com/blog/mysql-5-7-check-if-column-exist?viewmode=0
根据 MYSQL 社区:
IGNORE 是标准 SQL 的 MySQL 扩展。如果新表中的唯一键存在重复项或者启用严格模式时出现警告,它控制 ALTER TABLE 的工作方式。如果未指定 IGNORE,则在出现重复键错误时,复制将中止并回滚。如果指定了 IGNORE,则仅使用唯一键上有重复项的行中的一行。其他冲突的行将被删除。不正确的值将被截断为最接近匹配的可接受值。
所以一个有效的代码是:
ALTER IGNORE TABLE CLIENTS ADD CLIENT_NOTES TEXT DEFAULT NULL;
此处发布的数据:
http://dev.mysql.com/doc/refman/5.1 /en/alter-table.html
As per MYSQL Community:
IGNORE is a MySQL extension to standard SQL. It controls how ALTER TABLE works if there are duplicates on unique keys in the new table or if warnings occur when strict mode is enabled. If IGNORE is not specified, the copy is aborted and rolled back if duplicate-key errors occur. If IGNORE is specified, only one row is used of rows with duplicates on a unique key. The other conflicting rows are deleted. Incorrect values are truncated to the closest matching acceptable value.
So a working Code is:
ALTER IGNORE TABLE CLIENTS ADD CLIENT_NOTES TEXT DEFAULT NULL;
Data posted here:
http://dev.mysql.com/doc/refman/5.1/en/alter-table.html