在postgres中需要序列为A1 A2

时间:2010-10-29 12:58:50

标签: postgresql

亲爱的,   使用序列我们可以在postgers中插入一个整数序列 就像我只想插入A1和A2, 这可能是以直接的方式做到这一点,还是需要写一个函数?

请让我知道最简单的方法 提前致谢 !

1 个答案:

答案 0 :(得分:1)

  • create table test ( a text );
CREATE TABLE
  • insert into test(a) select 'A'||generate_series(1,4)::text;
INSERT 0 4
  • select * from test;
 a  
----
 A1
 A2
 A3
 A4
(4 rows)