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.
是否可以在 Firebird 中重命名表,或者我应该创建一个新表,然后使用插入移动数据?
显然不是。
您必须创建一个新表,复制旧值或创建一个与原始表相同的预期名称的视图。
有关详细信息,请参阅http://www.firebirdfaq.org/faq363/。
可以通过以下方式更改列名:
ALTER TABLE "tableName" ALTER "columnName" TO "NewColumnName";