建立下表后,无法使用select查询。建表的时候是Table created。查询的时候是table or view does not exist
create table "agency"  (
   "id"                 CHAR(7)                         not null,
   "city"               VARCHAR(20),
   "address"            VARCHAR(80),
   "phone"              VARCHAR(18),
   constraint PK_AGENCY primary key ("id")
);但是建立
create table test(sss varchar2(20));
这个表就可以查了。