在PLSQL DEVELOPER中用下列语句中建了张表,不知道在哪能找到他
在左侧的tables中找不到

-- Create table
create table SYSTEM.FIRST
(
  AA NUMBER,
  BB NUMBER
)
tablespace EXAMPLE
  pctfree 10
  initrans 1
  maxtrans 255
  storage
  (
    initial 64K
    minextents 1
    maxextents unlimited
  );