postgres 中需要序列为 A1 A2

发布于 2024-09-30 03:20:11 字数 120 浏览 2 评论 0原文

各位, 使用序列我们可以在 postgers 中插入一个整数序列
就像我只想插入 A1 和 A2 , 是否可以直接执行此操作,或者是否需要编写一个函数?

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

Dear all,
Using sequence we can insert a sequence of integers in postgers
like that I just want to insert A1 and A2 ,
Is this possible to do this in a straight forward manner , or otherwise do need to write a function ?

Please let me know the easiest way of doing this
Thanks in advance !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不爱素颜 2024-10-07 03:20:11
  • create table test ( a text );
CREATE TABLE
  • insert into test(a) select 'A'||generate_series(1,4)::text;
INSERT 0 4
  • select * from测试;
 a  
----
 A1
 A2
 A3
 A4
(4 rows)

  • 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文