postgreSql 判断表不存在而创建表

语法其实和oracle差不多
create table if not exists bar_code 
(
  "barcodeEan" varchar(13) NOT NULL PRIMARY KEY,
  "itemId" int NOT NULL
)
 

你可能感兴趣的:(postgreSql 判断表不存在而创建表)