Database/OracleSQL
Oracle/SQL/alter/rename columu/컬럼이름변경
hyeon-H
2021. 4. 28. 21:57
728x90
반응형
컬럼에 오타가 발생했을경우...
--컬럼 이름변경하기
--alter table board_api rename columu 원래이름 to 변경할이름;
alter table board_api RENAME COLUMN writrday to writeday;
commit;
728x90
반응형