<tfoot id='fg3RV'></tfoot>

    • <bdo id='fg3RV'></bdo><ul id='fg3RV'></ul>
    <legend id='fg3RV'><style id='fg3RV'><dir id='fg3RV'><q id='fg3RV'></q></dir></style></legend>

  • <i id='fg3RV'><tr id='fg3RV'><dt id='fg3RV'><q id='fg3RV'><span id='fg3RV'><b id='fg3RV'><form id='fg3RV'><ins id='fg3RV'></ins><ul id='fg3RV'></ul><sub id='fg3RV'></sub></form><legend id='fg3RV'></legend><bdo id='fg3RV'><pre id='fg3RV'><center id='fg3RV'></center></pre></bdo></b><th id='fg3RV'></th></span></q></dt></tr></i><div id='fg3RV'><tfoot id='fg3RV'></tfoot><dl id='fg3RV'><fieldset id='fg3RV'></fieldset></dl></div>

        <small id='fg3RV'></small><noframes id='fg3RV'>

      1. 如何更改超过 1 列的表列数据类型?

        时间:2023-06-24
            <bdo id='PlzaV'></bdo><ul id='PlzaV'></ul>

                <i id='PlzaV'><tr id='PlzaV'><dt id='PlzaV'><q id='PlzaV'><span id='PlzaV'><b id='PlzaV'><form id='PlzaV'><ins id='PlzaV'></ins><ul id='PlzaV'></ul><sub id='PlzaV'></sub></form><legend id='PlzaV'></legend><bdo id='PlzaV'><pre id='PlzaV'><center id='PlzaV'></center></pre></bdo></b><th id='PlzaV'></th></span></q></dt></tr></i><div id='PlzaV'><tfoot id='PlzaV'></tfoot><dl id='PlzaV'><fieldset id='PlzaV'></fieldset></dl></div>

                    <tbody id='PlzaV'></tbody>
                • <tfoot id='PlzaV'></tfoot>

                  <small id='PlzaV'></small><noframes id='PlzaV'>

                  <legend id='PlzaV'><style id='PlzaV'><dir id='PlzaV'><q id='PlzaV'></q></dir></style></legend>
                  本文介绍了如何更改超过 1 列的表列数据类型?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  例如:

                  ALTER TABLE webstore.Store MODIFY COLUMN (
                    ShortName VARCHAR(100),
                    UrlShort VARCHAR(100)
                  );
                  

                  但是上面的方法不起作用.我正在使用 MySql 5.x

                  The above however does not work. I am using MySql 5.x

                  推荐答案

                  ALTER TABLE 可以在一条语句中进行多张表的更改,但是MODIFY COLUMN 一次只能对一列起作用,所以需要指定MODIFY COLUMN 用于您要更改的每一列:

                  ALTER TABLE can do multiple table alterations in one statement, but MODIFY COLUMN can only work on one column at a time, so you need to specify MODIFY COLUMN for each column you want to change:

                  ALTER TABLE webstore.Store
                    MODIFY COLUMN ShortName VARCHAR(100),
                    MODIFY COLUMN UrlShort VARCHAR(100);
                  

                  另外,请注意手册中的警告:

                  Also, note this warning from the manual:

                  当您使用 CHANGE 或 MODIFY 时,column_definition 必须包括数据类型和应应用于新列的所有属性,除了 PRIMARY KEY 或 UNIQUE 等索引属性.原始定义中存在但未为新定义指定的属性不会被继承.

                  When you use CHANGE or MODIFY, column_definition must include the data type and all attributes that should apply to the new column, other than index attributes such as PRIMARY KEY or UNIQUE. Attributes present in the original definition but not specified for the new definition are not carried forward.

                  这篇关于如何更改超过 1 列的表列数据类型?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:MySQL的alter table查询速度很慢 下一篇:在 ALTER TABLE -- mysql 之前检查列是否存在

                  相关文章

                • <small id='56Isd'></small><noframes id='56Isd'>

                    <tfoot id='56Isd'></tfoot>

                    • <bdo id='56Isd'></bdo><ul id='56Isd'></ul>
                    <legend id='56Isd'><style id='56Isd'><dir id='56Isd'><q id='56Isd'></q></dir></style></legend>

                  1. <i id='56Isd'><tr id='56Isd'><dt id='56Isd'><q id='56Isd'><span id='56Isd'><b id='56Isd'><form id='56Isd'><ins id='56Isd'></ins><ul id='56Isd'></ul><sub id='56Isd'></sub></form><legend id='56Isd'></legend><bdo id='56Isd'><pre id='56Isd'><center id='56Isd'></center></pre></bdo></b><th id='56Isd'></th></span></q></dt></tr></i><div id='56Isd'><tfoot id='56Isd'></tfoot><dl id='56Isd'><fieldset id='56Isd'></fieldset></dl></div>