system用户下
之前创建过CardInfo这个表
输入select * from CardInfo;
显示未选定行
之后输入
create table CardInfo
(
CardID Char(19) primary key,
cid int references Customer not null,
OpenTime Date default sysdate not null,
OpenMoney int check(OpenMoney>=1) not null,
Balance int check(Balance>=1) not null,
IsReportLost Nchar(1) default '否' not null,
Password Char(6) default '888888' not null
);
却显示‘名称已由现有对象使用’这是不是表示表已经存在啊如果是存在的话为什么无法查询??