출처 : http://cong4u.tistory.com/15?srchid=BR1http%3A%2F%2Fcong4u.tistory.com%2F15
update 회원테이블
set out_id = 'dl_result'
from 덧글테이블 a, 회원테이블 b
where a.phone = b.phone
and convert(varchar(8), a.regdate, 112) = '20081009'
and b.out_id is null
회원테이블의 칼럼 out_id 를 dl_result 로 업데이트하는 구문
덧글테이블과 회원테이블에서 폰번호 등 where절에 맞는 것만 찾아서 업뎃함.
2개 테이블, inner join 등을 사용해서 몇개고 늘릴수있다.
update A.Table명
set A.Column = '내용'
from A.Table inner join B.Table on A.칼럼 = B.칼럼
inner join C.Table on B.칼럼 = C.칼럼
inner join ....
where A.칼럼 = '' and B.칼럼=''
...
'쓸만한 글' 카테고리의 다른 글
[스크랩] 올 여름되기 전에 정자 하나 만들어? (0) | 2009.01.06 |
---|---|
테이블에서 한 컬럼(한줄아님)에 스타일적용하기.. (0) | 2008.12.23 |
radio 태그를 쓸 때 문자열을 눌러서 radio 선택하기 태그 (0) | 2008.12.22 |
[스크랩] [text]ime-mode (0) | 2008.10.24 |
javascript 자바스크립트 배열 맴버변수, 기본 배열 함수 (0) | 2008.10.22 |