||
Operator jest „concatenate” - łączy ze sobą dwa ciągi swoich argumentów.
Ze strony http://www.sqlite.org/lang_expr.html
W przypadku wypełniania, pozornie oszustem, którego użyłem, jest rozpoczęcie od łańcucha docelowego, powiedz „0000”, konkatenacji „0000423”, a następnie substr (wynik, -4, 4) dla „0423”.
Aktualizacja: Wygląda na to, że nie ma natywnej implementacji „lpad” lub „rpad” w SQLite, ale możesz śledzić (zasadniczo to, co zaproponowałem) tutaj: http://verysimple.com/2010/01/12/sqlite-lpad -rpad-funkcja /
-- 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
Oto jak to wygląda:
SELECT col1 || '-' || substr('00'||col2, -2, 2) || '-' || substr('0000'||col3, -4, 4)
daje
"A-01-0001"
"A-01-0002"
"A-12-0002"
"C-13-0002"
"B-11-0002"