我试图运行在Postgresql 9.2:
RAISE NOTICE 'hello,world!';
服务器说:
Error : ERROR: Syntax error at or near "RAISE" LINE 1: RAISE NOTICE 'hello,world!' ^
为什么?
使用匿名
code block:
原文链接:https://www.f2er.com/postgresql/193198.htmlDO language plpgsql $$ BEGIN RAISE NOTICE 'hello,world!'; END $$;
RAISE NOTICE '%',variable_name;