如何提高PostgreSQL中的通知?

前端之家收集整理的这篇文章主要介绍了如何提高PostgreSQL中的通知?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图运行在Postgresql 9.2:
RAISE NOTICE 'hello,world!';

服务器说:

Error : ERROR:  Syntax error at or near "RAISE"
LINE 1: RAISE NOTICE 'hello,world!'
        ^

为什么?

使用匿名 code block
DO language plpgsql $$
BEGIN
  RAISE NOTICE 'hello,world!';
END
$$;

Variables are referenced使用%:

RAISE NOTICE '%',variable_name;
原文链接:https://www.f2er.com/postgresql/193198.html

猜你在找的Postgre SQL相关文章