Oracle에서 테이블 이름을 수정하는 방법
방법 1: alter table old_table_name rename to new_table_name;
alter table old_table_name rename to new_table_name;
这是最简单的(个人认为)
方式二:select tname from tab;(查询的是数据库中所有的表名)rename old_table_name to new_table_name;
rename只能修改自己schema下面的表
方式三:create table new_table_name as select * from old_table_name;
相当于再复制成一张新表
drop table old_table_name;
删除旧表
方式四:直接在PLSQL developer
방법 2: 탭에서 tname 선택; (데이터베이스의 모든 테이블 이름 쿼리) old_table_name을 new_table_name으로 이름 변경;
rename은 자체 스키마 아래에서만 테이블을 수정할 수 있습니다🎜🎜방법 3:select로 new_table_name 테이블 생성 * from old_table_name;
🎜🎜은 새 테이블에 복사하는 것과 같습니다🎜🎜drop table old_table_name;
기존 테이블 삭제🎜🎜방법 4: PLSQL 개발자에서 직접 변경
🎜🎜 추천 튜토리얼: "🎜Oracle Tutorial🎜"🎜위 내용은 오라클에서 테이블 이름을 수정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!