2013. 11. 20. 15:34, DEV/DB
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
◎ 테이블 복사
select col1, col2 into new_table
from old_table
참고사이트
http://manuals.sybase.com/onlinebooks/group-as/asg1250e/sqlug/@Generic__BookTextView/22065;pt=22568
◎ 테이블 조인 후 업데이트
update t1 set t1.c1 = t1.c1 + 50 from t1, t2 where t1.c1 = t2.c1 and t2.c2 = 1
◎ 서브쿼리 이용 업데이트
update t1 set c1 = c1 + 50 where t1.c1 in (select t2.c1 from t2 where t2.c2 = 1)
참고사이트
http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.dc20023_1251/html/optimizer/optimizer133.htm
'DEV > DB' 카테고리의 다른 글
데이터 최근수정시간 확인 (0) | 2014.03.10 |
---|---|
중복 데이터 삭제 방법 (0) | 2013.11.08 |
Group By 에서 문자열 합치기 - 버전별 정리 (0) | 2013.09.26 |
Comments, Trackbacks