Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个数据库,其 ID 行都称为“ID”。我需要将它们全部更改为“ID_[表名”],并更改与这些更改的 ID 行相关的每个外键。
我认为您没有更改数据库中的所有列名。
使用此语法一一更改表列
ALTER TABLE table_name RENAME COLUMN old_name to new_name;