상세 컨텐츠

본문 제목

C#연동 예제

청강컴정/DataBase

by luckey 2009. 3. 16. 17:48

본문


create table USERS
(
 SN int not null primary key identity(1,1),
 NAME nvarchar(24),
 DUTY nvarchar(12),
 MOBILE nvarchar(18)
)

insert into USERS values('홍길동', '사원', '000-0000-0000')
insert into USERS values('홍길동', '사원', '000-0000-0000')
insert into USERS values('홍길동', '사원', null)
insert into USERS values('홍길동', '사원', '')

create proc selectAll
as
begin
select * from USERS
end


관련글 더보기

댓글 영역