如何使用 PHP 编辑 MySQL 表列属性?
我需要编辑 MySQL 表中的字段类型。目前我将这一列设置为 VARCHAR,我需要将其更改为 INT。问题是我无法访问控制面板,所以我不能简单地翻转开关。我该如何使用 PHP 进行此编辑?
I need to edit a field type in a MySQL table. Currently I have this one column set as VARCHAR that I need to change to an INT. The catch is that I do not have access to the control panel so I cannot simply flip the switch. How do I go about making this edit with PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需执行
ALTER TABLE
语句在 PHP 中:
如果您需要该列的额外属性,例如
NOT NULL
、PRIMARY KEY
或其他属性,请务必将它们包含在ALTER 中
语句,位于数据类型之后INT
。Just execute an
ALTER TABLE
statementIn PHP:
If you require extra attributes on that column, such as
NOT NULL
,PRIMARY KEY
, or others, be sure to include them in theALTER
statement, just after the data typeINT
.