PLpgSQL 创建表的时候,想先判断下如果表存在就不创建

PLpgSQL 创建表的时候,想先判断下如果表存在就不创建,第1张

判断是否存在,如果不存在,再创建:

declare viewExist number

begin

select count(1) into viewExist from user_views where VIEW_NAME='REPORT_APPOINTMENTSBYLOCATORS'

if viewExist=0 then

execute immediate

'CREATE VIEW REPORT_APPOINTMENTSBYLOCATORS

AS

SELECTappointmentID, startDateTime, endDateTime, grid, locator,

meetingAddress, contactNumber, company, contact, reasonForAppointment,

DtFirstCall, DtSecondCall,CustomerAnswerFirstCall, CustomerAnswerSecondCall,

IsMeetOnSite, DtLastModified, AppointmentStatus, IsLocatorArriveOnsite,

DtCompletedAt,DtLocatorArriveOnsite, RescheduledOn, RescheduledAt, IsRescheduled, city

FROM Appointment'

end if

end

方法一:直接在表中指定字段类型为serial 类型

david=# create table tbl_xulie (

david(# id serial,

david(# name text)

NOTICE:  CREATE TABLE will create implicit sequence "tbl_xulie_id_seq" for serial column "tbl_xulie.id"

CREATE TABLE

david=#

方法二:先创建序列名称,然后在新建的表中列属性指定序列就可以了,该列需int 类型

创建序列的语法:

CREATE [ TEMPORARY | TEMP ] SEQUENCE name [ INCREMENT [ BY ] increment ]

    [ MINVALUE minvalue | NO MINVALUE ] [ MAXVALUE maxvalue | NO MAXVALUE ]

    [ START [ WITH ] start ] [ CACHE cache ] [ [ NO ] CYCLE ]

    [ OWNED BY { table.column | NONE } ]


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9977089.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-04
下一篇 2023-05-04

发表评论

登录后才能评论

评论列表(0条)

保存