关于批处理添加表到scott数据库下的问题
最近做了一个题,老师出的,让用批处理把SCOTT 下创建一个新表,百度了半天也没找到可以添加的,大家有知道的么,已经连接成功。下边是我写的,但是无法添加,批处理不是太懂,有懂的帮忙一下,谢了
@echo off
sqlplus scott/tiger
user scott
create table emp2(
id number primary key,
name varchar2(10) not null,
age int
);