태터데스크 관리자

도움말
닫기
적용하기   첫페이지 만들기

태터데스크 메시지

저장하였습니다.

블로그 이미지
좋은 인생이였다. 라고 말 할 수 있는 삶을 살자
희윤

Notice

Recent Comment

Recent Trackback

Archive

calendar

      1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29      
  • 27,655total
  • 8today
  • 22yesterday

'mysql'에 해당되는 글 2건

  1. 2009/02/03 mysql update join
  2. 2008/06/30 INSTR()
2009/02/03 11:10 mysql

update table1 w
inner join table2 o on o.t = w.t and o.a = w.a set
w.e = o.e
where w.id = 'test'

update 테이블, inner join ~~~~~~~~ set
a.a = b.b
where a.a = '' 

'mysql' 카테고리의 다른 글

mysql update join  (0) 2009/02/03
INSTR()  (0) 2008/06/30
posted by 희윤
2008/06/30 14:44 mysql
SELECT INSTR('fooxarbar', 'bar');
=> 7

SELECT INSTR('foobarbar', 'bar');
=> 4

찾으려는 단어거 몇번째부터 시작하는지 알려줌

'mysql' 카테고리의 다른 글

mysql update join  (0) 2009/02/03
INSTR()  (0) 2008/06/30
posted by 희윤