||
Operatör "concatenate" - bu arada işlenenlerinden iki dizeyi katıldı.
Gönderen http://www.sqlite.org/lang_expr.html
Dolgu için kullandığım daha aldatıcı yol, hedef dizenizle başlamak, '0000' demek, '0000423' birleştirmek, sonra '0423' için substr (sonuç, -4, 4).
Güncelleme: Görünüşe göre SQLite'de "lpad" veya "rpad" in yerel bir uygulaması yok, ancak takip edebilirsiniz (temelde önerdiğim) burada: http://verysimple.com/2010/01/12/sqlite-lpad -rpad fonksiyonlu /
-- 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
İşte böyle görünüyor:
SELECT col1 || '-' || substr('00'||col2, -2, 2) || '-' || substr('0000'||col3, -4, 4)
verir
"A-01-0001"
"A-01-0002"
"A-12-0002"
"C-13-0002"
"B-11-0002"