2010. 2. 24. 15:41
초보프로그래머만..
어떤내용을 디비에 저장할때 기존에 있는내용을 update할지 새로 저장할지 판단해야할때 쓰면 좋을듯..
-----------------------------------------------------------------------------------------
if not exists(select * from schedule_info_tbl where scDate = convert(datetime, '2010-02-26 13:22:11',120))
begin
insert into schedule_info_tbl(scName,scDate)
values('열심히', convert(datetime, '2010-02-26 13:22:11',120))
end
else
begin
update schedule_info_tbl
set scName = '열심히'
where scDate = convert(datetime, '2010-02-26 13:22:11',120)
end
'초보프로그래머만..' 카테고리의 다른 글
[html] 말풍선에 줄바꿈넣기 (0) | 2010.02.25 |
---|---|
[mssql]원하는날짜 where조건으로 활용하기(convert사용) (0) | 2010.02.25 |
JAVA-입력받은날짜의 해당주(week)날짜구하기 (2) | 2010.02.22 |
아이바티스-동적리턴컬럼 가져오기 (0) | 2010.02.18 |
JspSourceDependent 관련 에러시...해결방법 (0) | 2010.02.18 |