Skip to main content

mysql 데이터값 변경하기

mysql 전체 컬럼의 데이터 변경하기

테이블명 : test_table
업데이트 대상 컬럼 : name_cols
원래 문자 : linux
바꿀문자 : windows

MYSQL> update test_table set name_cols=replace(name_cols,'linux','windows');

reference