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.
このようなデータを含む日付というフィールドがあります"27 Mar 2013, 28 Mar 2013, 29 Mar 2013"
"27 Mar 2013, 28 Mar 2013, 29 Mar 2013"
ここで、データを以下の形式に変更するクエリを作成する必要があります。
"27 Mar 2013,28 Mar 2013,29 Mar 2013".
"27 Mar 2013,28 Mar 2013,29 Mar 2013"
MySql でカンマに続く空白を置き換えるクエリの書き方。
Give this a try,
SELECT REPLACE(columnName, ', ', ',')