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.
我正在开发一个使用 JDBC 的 Java UI 应用程序。我假设我正在使用的数据库已经存在。但是,程序引用的表可能不一定存在。
因此,仅在第一次使用时,我想检查这些表是否存在,如果不存在,则创建它们。
在创建表时说
CREATE TABLE IF NOT EXISTS ......
有关更多信息,请参阅此。
CREATE TABLE IF NOT EXISTS Employee (id INT);
这适用于mysql、sql、PostgreSQL、Oracle