• <bdo id='Ff7qx'></bdo><ul id='Ff7qx'></ul>
    1. <small id='Ff7qx'></small><noframes id='Ff7qx'>

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

      <legend id='Ff7qx'><style id='Ff7qx'><dir id='Ff7qx'><q id='Ff7qx'></q></dir></style></legend>

      1. <tfoot id='Ff7qx'></tfoot>

        MySQL 删除一些外键

        MySQL Removing Some Foreign keys(MySQL 删除一些外键)

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

              <tbody id='gOzcS'></tbody>
            • <legend id='gOzcS'><style id='gOzcS'><dir id='gOzcS'><q id='gOzcS'></q></dir></style></legend>
              <tfoot id='gOzcS'></tfoot>

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

                • <bdo id='gOzcS'></bdo><ul id='gOzcS'></ul>
                  本文介绍了MySQL 删除一些外键的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我有一个表,它的主键在其他几个表中使用,并且有几个指向其他表的外键.

                  I have a table whose primary key is used in several other tables and has several foreign keys to other tables.

                  CREATE TABLE location (
                     locationID INT NOT NULL AUTO_INCREMENT PRIMARY KEY
                     ...
                  ) ENGINE = InnoDB;
                  
                  CREATE TABLE assignment (
                     assignmentID INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
                     locationID INT NOT NULL,
                     FOREIGN KEY locationIDX (locationID) REFERENCES location (locationID)
                     ...
                  ) ENGINE = InnoDB;
                  
                  CREATE TABLE assignmentStuff (
                     ...
                     assignmentID INT NOT NULL,
                     FOREIGN KEY assignmentIDX (assignmentID) REFERENCES assignment (assignmentID)
                  ) ENGINE = InnoDB;
                  

                  问题是,当我尝试删除其中一个外键列(即 locationIDX)时,它给了我一个错误.

                  The problem is that when I'm trying to drop one of the foreign key columns (ie locationIDX) it gives me an error.

                  错误 1025 (HY000):重命名错误"

                  "ERROR 1025 (HY000): Error on rename"

                  如何在不出现此错误的情况下删除上面分配表中的列?

                  How can I drop the column in the assignment table above without getting this error?

                  推荐答案

                  如here,似乎外键约束必须被约束名称删除,而不是索引名称.

                  As explained here, seems the foreign key constraint has to be dropped by constraint name and not the index name.

                  语法是:

                  ALTER TABLE footable DROP FOREIGN KEY fooconstraint;
                  

                  这篇关于MySQL 删除一些外键的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  ibtmp1是非压缩的innodb临时表的独立表空间,通过innodb_temp_data_file_path参数指定文件的路径,文件名和大小,默认配置为ibtmp1:12M:autoextend,也就是说在文件系统磁盘足够的情况下,这个文件大小是可以无限增长的。 为了避免ibtmp1文件无止境的暴涨导致
                  What does SQL clause quot;GROUP BY 1quot; mean?(SQL 子句“GROUP BY 1是什么意思?意思是?)
                  MySQL groupwise MAX() returns unexpected results(MySQL groupwise MAX() 返回意外结果)
                  MySQL SELECT most frequent by group(MySQL SELECT 按组最频繁)
                  Why Mysql#39;s Group By and Oracle#39;s Group by behaviours are different(为什么 Mysql 的 Group By 和 Oracle 的 Group by 行为不同)
                  MySQL GROUP BY DateTime +/- 3 seconds(MySQL GROUP BY DateTime +/- 3 秒)

                  <small id='4ok8S'></small><noframes id='4ok8S'>

                  1. <legend id='4ok8S'><style id='4ok8S'><dir id='4ok8S'><q id='4ok8S'></q></dir></style></legend>
                    • <bdo id='4ok8S'></bdo><ul id='4ok8S'></ul>

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

                            <tbody id='4ok8S'></tbody>