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.
(SQL Navigator 経由で)という名前のテーブルを作成しましたFILE。このテーブル (sql: ) を削除したいのですがdrop table FILE、できません。例外がスローされます: invalid table name。テーブルの名前を変更する必要があり、それをドロップできます: alter table FILE rename to FILE_
FILE
drop table FILE
invalid table name
alter table FILE rename to FILE_
作成できるのにドロップできない理由を教えてください。あなたの提案に感謝します:)
特別な名前でテーブルを作成および削除できます。「」を使用するだけです。
create table "file" (..) drop table "file"
DROP TABLE "FILE";
名前を二重引用符で囲むと、大文字と小文字が区別されますが、キーワードではなく区切り識別子としてマークされます。