我在一个sqlite表中有三列:

    Column1    Column2    Column3
    A          1          1
    A          1          2
    A          12         2
    C          13         2
    B          11         2

我需要选择Column1-Column2-Column3(例如A-01-0001)。我想在每一列上加一个-

我是一个初学者关于SQLite,任何帮助将不胜感激


当前回答

还有一行是@tofutim的回答…如果你想为连接的行自定义字段名…

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

在SQLite 3.8.8.3上测试,谢谢!

其他回答

||操作符是“concatenate”-它将的两个字符串连接在一起 它的操作数。

从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"

SQLite有一个printf函数可以做到这一点:

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

还有一行是@tofutim的回答…如果你想为连接的行自定义字段名…

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

在SQLite 3.8.8.3上测试,谢谢!