oracle 创建表,增加修改删除字段
创建表 create table test (id varchar2(20) not null); 增加一个字段 alter table test add (test01 varcha ...
创建表 create table test (id varchar2(20) not null); 增加一个字段 alter table test add (test01 varcha ...
启动sqlplus sqlplus / as sysdba; 查询当前数据库实例 select name from v$database; 切换到其他实例 sqlplus /@ ...