重命名 MySQL 中的列时出错

Error renaming a column in MySQL(重命名 MySQL 中的列时出错)
本文介绍了重命名 MySQL 中的列时出错的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何重命名表 xyz 中的列?列是:

How do I rename a column in table xyz? The columns are:

Manufacurerid, name, status, AI, PK, int

我想重命名为manufacturerid

我尝试使用 PHPMyAdmin 面板,但出现此错误:

I tried using PHPMyAdmin panel, but I get this error:

MySQL said: Documentation
#1025 - Error on rename of '.\shopping\#sql-c98_26' to '.\shopping\tblmanufacturer' (errno: 150)

推荐答案

Lone Ranger 非常接近...其实你还需要指定重命名列的数据类型.例如:

Lone Ranger is very close... in fact, you also need to specify the datatype of the renamed column. For example:

ALTER TABLE `xyz` CHANGE `manufacurerid` `manufacturerid` INT;

记住:

  • 将 INT 替换为您的任何列数据类型(必需)
  • 波浪号/反引号 (`) 是可选的

这篇关于重命名 MySQL 中的列时出错的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)