- -- Create table
- create table LINK_LOC
- (
- linkid VARCHAR2(10) not null
- )
- tablespace UTIS_HIST_DATA
- pctfree 10
- initrans 1
- maxtrans 255;
- -- Add comments to the table
- comment on table LINK_LOC is '지역센터에서 사용하는 레벨1 링크 정보';
- -- Add comments to the columns
- comment on column LINK_LOC.linkid is '지역센터에서 사용하는 LINK ID';
- create or replace view LINK_LOC as
- select to_char(link_id) as linkid from ptatms.tb_link where del_yn = 'N';
|