본문 바로가기

ASP,MSSQL Tip

SELECT 문을 이용한 데이터 UPDATE

SELECT 문을 이용해서 다른 테이블의 정보를 update 할수 있다.

 

서로 관계가 있는 필드가 존재한다는 조건에서

 

T_MEMBER 에 있는 m_etc라는 항목을 업데이트를 하려고하는데

 

이전 데이터는 member 테이블에 m_etc라는 필드에 존재하며 mem_no는 회원번호로 서로 관계성을 가지고 있다.

 

begin tran
update T_Member
set t_member.m_etc = B.m_etc
FROM t_member AS A , member as B
where A.mem_no = B.mem_no
rollback
commit

'ASP,MSSQL Tip' 카테고리의 다른 글

nanumi image component  (0) 2014.03.11
strip tag funtion  (0) 2014.03.10
[asp] ABCUpload UTF-8  (0) 2014.02.28
각 나라명 Country name  (0) 2014.01.15
[ASP Request.Form 배열로 받기  (0) 2013.11.29