本文介绍了在psql中定义多行字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想粘贴

  123
  456
  789

放入 psql 并将多行字符串存储在某个变量中(即:str )供以后使用。

into psql and to store multi-line string in some variable (ie. :str) for later use.

有可能吗?现在,我收到未终止的带引号的字符串错误。

Is that possible? Now I'm getting unterminated quoted string error.

推荐答案

笨拙,但在9.3版及更高版本中,您可以使用与:

A little clunky, but in version 9.3 and up, you can do it with \gset in conjunction with a dollar-quoted literal:

SELECT
$$123
456
789$$ AS str \gset

这篇关于在psql中定义多行字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 18:35