LINK_LOC.SQL 479 B

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