2014. 11. 3. 18:19
How to concatenate strings with padding in sqlite - Stack Overflow.pdf
-- 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
+ 대신 || 를 사용해라.
'JAVA > Android' 카테고리의 다른 글
하나에 App에 다수의 App Widget (0) | 2014.11.18 |
---|---|
App Widgets 에서 사용할 수 있는 레이아웃 (0) | 2014.11.18 |
[Android.] UI Thread Handler Main (0) | 2014.10.23 |
[Android] Dialog 배경 클릭시 종료 (0) | 2014.10.17 |
Activity 사이즈 동적 조절. (0) | 2014.10.06 |