MySQL 在 PHP 中重命名列
我需要使用 PHP 重命名 MySQL 表中的列。
这变得很困难,因为语法是 ALTER TABLE [table] CHANGE COLUMN [oldname] [newname] [definition]。该定义是必需的参数。
有没有办法获取定义并将其简单地反馈到 SQL 语句中?一些示例代码会很棒,谢谢!
I need to rename columns in my MySQL table using PHP.
This is made difficult because the syntax is ALTER TABLE [table] CHANGE COLUMN [oldname] [newname] [definition]
. The definition is a required parameter.
Is there a way to grab the definition and simply feed this back into the SQL statement? Some sample code would be fantastic, thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
根据 http://codingforums.com/showthread.php?t=148936,您可能必须解析 SHOW CREATE TABLE 的结果才能获取当前定义,然后在 ALTER 语句中使用它。
mysql_fetch_field() 也可能有用。
According to http://codingforums.com/showthread.php?t=148936, you may have to parse the results of
SHOW CREATE TABLE
to get the current definition, then use that in theALTER
statement.mysql_fetch_field() may be useful also.
information_schema
。显示表状态 [{FROM | IN} db_name] [LIKE '模式' | WHERE 表达式]
information_schema
.SHOW TABLE STATUS [{FROM | IN} db_name] [LIKE 'pattern' | WHERE expr]
发出
SHOW CREATE TABLE
,读出描述感兴趣的列的行,识别列定义并构建您的ALTER TABLE
语句。Issue
SHOW CREATE TABLE
, read off the line describing the column that is of interest, identify the column definition and construct yourALTER TABLE
statement.我的解决方案是这样的:
My solution was this: