Saturday 4 May 2019

database - Error renaming a column in MySQL

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


Manufacurerid, name, status, AI, PK, int

I want to rename to manufacturerid


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)

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...