如何提高PostgreSQL中的通知?
发布时间:2020-12-13 16:41:25 所属栏目:百科 来源:网络整理
导读:我试图运行在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!'
我试图运行在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; (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |