如何在sqlite中使用填充连接字符串


Answers:


382

||运营商是“连击” -它加入其操作数的两个字符串。

来自http://www.sqlite.org/lang_expr.html

对于填充,我使用的看似骗子的方法是从您的目标字符串开始,例如“ 0000”,连接“ 0000423”,然后用substr(result,-4,4)表示“ 0423”。

更新:在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"

9
@Andrew-通常,任何涉及NULL的标量运算都将产生NULL。使用可以满足您的要求COALESCE(nullable_field, '') || COALESCE(another_nullable_field, '')
MatBailie 2014年

37

SQLite的printf功能可以做到这一点:

SELECT printf('%s-%.2d-%.4d', col1, col2, col3) FROM mytable

1
查询错误:无此功能:printf无法执行语句,从mytable限制中选择printf('%s。%s',id,url)。我的版本是3.8.2 2014-12-06。您使用的是哪个版本?
Berry Tsakala 2014年

5
@BerryTsakala:3.8.6
Yakov Galka

1
3.8.3“还有其他一些小的增强,例如增加了printf()SQL函数。”
桑德堡

17

@tofutim答案仅需一行...如果您想要自定义字段名称作为串联行...

SELECT 
  (
    col1 || '-' || SUBSTR('00' || col2, -2, 2) | '-' || SUBSTR('0000' || col3, -4, 4)
  ) AS my_column 
FROM
  mytable;

SQLite 3.8.8.3上测试,谢谢!

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.