MariaDB 文字列を区切り文字で区切って連結するサンプル
環境
MariaDB 10.6.4
Windows 10 Home 64bit
構文
CONCAT_WS( 区切り文字,文字列1文字列2… )
文字列を区切り文字で区切って連結するには、「CONCAT_WS( )」を使用します。
使用例
SELECT CONCAT_WS( '*’, 'study’, 'skill’, 'test’ )
結果
MariaDB [(none)]> SELECT CONCAT_WS( '*', 'study', 'skill', 'test' ); +--------------------------------------------+ | CONCAT_WS( '*', 'study', 'skill', 'test' ) | +--------------------------------------------+ | study*skill*test | +--------------------------------------------+ 1 row in set (0.000 sec)