$sqlplus system/managerSQL>create user test identified by test default tablspace users;SQL>grant connect to test;SQL>grant resource to test;SQL>connect test/test;SQL>create table student(id number,name varchar2(20),score number);SQL>insert into test values(1,’zhang’,95);