반응형
Wordpress MySQL 데이터베이스의 wp_postmeta 테이블
에는 meta_key = 'price'
와 meta_value = 'XXX'
가있는 대부분의 행이 있습니다. 여기서 XXX 숫자입니다.
The meta_value is a long text field. The numbers stored in it have a different shape some are stored with a dot, meaning thousand (10.000 means ten thousand) others are stored with a comma, meaning hundredth (10,00 means ten).
How to remove dots and comma so to have a pure number, without hundredth? In other words, 100.000 should be 100000 and 10,00 should be 10
귀하의 답변에 미리 감사드립니다!
해결 방법
UPDATE wp_postmeta
SET meta_value = REPLACE(REPLACE(meta_value,',00',''),'.','')
WHERE meta_key='price';
참조 페이지 https://stackoverflow.com/questions/11210759
반응형
'MySql' 카테고리의 다른 글
MySQL SQL 상태를 처리하는 방법 [HY000]; 오류 코드 [1366]; 잘못된 문자열 값? (0) | 2021.02.07 |
---|---|
MySQL How to convert IPv6 from binary for storage in MySQL (0) | 2021.02.07 |
MySQL JavaScript를 사용하여 MySQL 쿼리를 실행하는 방법 (0) | 2021.02.07 |
MySQL how to understand "can't connect" mysql error messages? (0) | 2021.02.07 |
MySQL 더 효율적인 방법 : 여러 MySQL 테이블 또는 하나의 큰 테이블? (0) | 2021.02.07 |
댓글