..열심히 공부하세../MS-SQL
17_공지사항
댄스댄스
2008. 6. 18. 15:41
--공지사항 테이블 설계
create table tb_notice
(
noticeidx int identity primary key,
nsubject varchar(255) not null,
ncontents text not null,
regdt smalldatetime default getdate()
)
--공지사항추가 프로시저 작성
create proc Ins_notice
@subject varchar(255),@contents text
as
insert into tb_notice(nsubject,ncontents)
values(@subject,@contents)
select * from tb_notice