||

    mysql update 이중쿼리, 문자열 붙이기

    같은 update문 인데도 이렇게나 다르다. mysql update user set score=score+"+score+", flag=concat(flag,'"+flagA+"') where id='"+id+"' and (select flag from (select flag from user where id = '"+id+"') as temp ) not like '%"+flagA+"%'" oracle update user set score=score+"+score+", flag=flag||'"+flagA+"' where id='"+id+"' and (select flag from user where id = '"+id+"') t not like '%"+flagA+"%'" 어쩔 수 없이 쓰는거긴하다만.. ​..