프로그램 사용/oracle
oracle alter
구차니
2014. 5. 20. 15:43
변경시에는 추가된 값이 있으면 안되는 경우도 있으니(date -> varchar2)
주의해서 사용해야 할 듯...
[링크 : http://majesty76.tistory.com/27]
주의해서 사용해야 할 듯...
alter table tablename add (colname type ..) // 항목 추가하기
alter table tablename drop column // 항목 삭제하기
alter table tablename modify (colname newtype ..) // 변수형 바꾸기
alter table tablename rename column oldname to newname // 항목명 바꾸기(9iR2 이후) |
[링크 : http://majesty76.tistory.com/27]