如何在SQLite 3.0中重命名表?


Answers:



0

答案仍然是使用“ ALTER TABLE”。但是有关该主题的主要文档页面非常厚。需要的是一个简单的例子。您可以在这里找到:https : //www.sqlitetutorial.net/sqlite-alter-table/

确切地说,在最基本的情况下,它看起来像这样:

ALTER TABLE existing_table
RENAME TO new_table;

我不确定圆点表示法是否有效,但我认为以下也是正确的:

ALTER TABLE existing_database.existing_table
RENAME TO new_database.new_table;
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.