guest table 생성
drop table guest ;
create table guest (
sabun number(4) primary key not null ,
name varchar2(10) not null ,
title varchar2(10) not null ,
wdate date not null ,
pay number(3) not null ,
hit number(2) default 0 ,
email varchar2(20) not null
);
commit;
select * from guest ;
테이블에 속성 추가
alter table guest add( email varchar2(10) default 'bc@tis.com') ;
댓글
댓글 쓰기