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.
这应该很简单,但还没有找到答案。
我只想在类型 A 不存在的情况下创建它和/或在类型 A 已经存在的情况下删除它,并在我的 HSQL 数据库启动时重新创建它。
现在我知道了 drop 和 create 命令:
CREATE TYPE myType as VARCHAR(100) DROP TYPE myType
但是我还没有辨别如何检查类型的存在。
其实很简单:
DROP TYPE myType IF EXISTS