如何从一个单元格中删除第一个字母并添加到 PSQL 中的另一个单元格?

How can I cut the 1st letter from a cell and add to another cell in PSQL?

我有一个长列表,我想用 psql 命令将第一个字母添加到另一个单元格中。

A header Another header
John J
Lila L
Dwane D
Zaba Z
Kiol K
Longi L
Uthe U
Hell H

像这样。

您可以使用 left() postgres 函数从字符串中提取第一个字符,请参阅 manual。尝试这样的事情:

SELECT "A header", left("A header", 1) AS "Another header"
  FROM your_table