老师有建表和数据的脚本吗
不用建表,只要你用scott用户登陆到sqlplus 后就能select出来emp这个表,这张表里面的数据也是有的,应该是Oracle内置的一个表
scott
create table table_name;----建表
alter table old_table_name rename to new_table_name;----修改表名
drop table table_name;----删表
insert into table_name values('*','*',.....)----表中插入数据