💻환경
SYBASE ASE 12.5
DML이란?
데이터베이스 내의 데이터를 조작하는 데 사용되는 SQL(Structured Query Language)의 하위 집합
기본 문법
update
Update table
set name = 'exp'
where empno = '1234'
활용
다중값 update = join update
update A
set x = b.a1, y=b.a2, z=b.a3
from A, B
where A.a = B.a
and A....
and B....