Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 MySQL 数据库。
在它的表中有一个名为“itm_name”的字段
我正在尝试从此字段中检索几位数据。
但是,由于不规则的空白和对齐,存在一些不均匀性。
是否可以将一些条目向右移动并用 WhiteSpace 替换移动的区域?
例如:
From: CHOCOABLOC (CH Egg. | To: CHOCOABLOC (CH Egg. |
update your_table set your_column = concat(' ', your_column) where substring(your_column, 1, 2) != ' '