Q&A

  • select 해서 insert 한커리로 할수 있는지
insert into safechange values(
(select distinct(acode) from aaa where ause = '0'), 1, 1)

이런씩으로 한번에 삽입할수 있나요.. 궁금..
그러니까..  select 한것은 바로 한문장 퀄리로 저장할수 있느지..
코딩으로는 for 문으로 돌리면 되는건 아는데여.. 제가 해보니까..
안데더라구여.. 궁금 그럼.. 이만.. 감사
2  COMMENTS
  • Profile
    이중철 2003.11.10 20:45
    insert into safechange
    select distinct(acode), 1, 1 from aaa where ause = '0'
  • Profile
    장덕곤 2003.11.10 20:45

    삽일할데이터가 만약에 distinct(acode),1,1이라면

    insert into safechange
    select distinct(acode),1,1 from aaa    
    where ause = '0'

    1은 숫자모드입니다
    만약에 문자모드라면
    select distinct(acode),'1','1' from aaa    이렇게만 바꿔주시면됨당..