回答:
||
オペレータは、「CONCATENATE」である-それは、一緒にそのオペランドの2つの文字列を結合します。
http://www.sqlite.org/lang_expr.htmlから
パディングについては、私が使用した一見奇妙に見える方法は、ターゲット文字列、たとえば「0000」で開始し、「0000423」を連結し、次に「0423」のsubstr(result、-4、4)とすることです。
更新: SQLiteには「lpad」または「rpad」のネイティブ実装がないように見えますが、(基本的に私が提案した)http://verysimple.com/2010/01/12/sqlite-lpadをたどることができます。-rpad-function /
-- the statement below is almost the same as
-- select lpad(mycolumn,'0',10) from mytable
select substr('0000000000' || mycolumn, -10, 10) from mytable
-- the statement below is almost the same as
-- select rpad(mycolumn,'0',10) from mytable
select substr(mycolumn || '0000000000', 1, 10) from mytable
以下にその外観を示します。
SELECT col1 || '-' || substr('00'||col2, -2, 2) || '-' || substr('0000'||col3, -4, 4)
それはもたらす
"A-01-0001"
"A-01-0002"
"A-12-0002"
"C-13-0002"
"B-11-0002"
COALESCE(nullable_field, '') || COALESCE(another_nullable_field, '')
。
SQLiteには、printf
まさにそれを行う関数があります。
SELECT printf('%s-%.2d-%.4d', col1, col2, col3) FROM mytable
@tofutimの回答を1行追加...連結された行のカスタムフィールド名が必要な場合...
SELECT
(
col1 || '-' || SUBSTR('00' || col2, -2, 2) | '-' || SUBSTR('0000' || col3, -4, 4)
) AS my_column
FROM
mytable;
SQLite 3.8.8.3でテスト済み、ありがとうございます。