'2015/02'에 해당되는 글 2건

  1. 2015.02.19 놀러갈 온천
  2. 2015.02.04 오리클 select update
카테고리 없음2015. 2. 19. 22:39
http://m.news.naver.com/read.nhn?mode=LSD&mid=sec&sid1=004&oid=310&aid=000003809
Posted by 선한열심
카테고리 없음2015. 2. 4. 18:58
update test t
set t.title = (
select p.title
from pms p
where p.id = t.id
)
where r.title is null
and exists (
select p.title
from pms p
where p.id = r.id
)

Posted by 선한열심