RAISE NOTICE 'hello,world!';
服务器说:
Error : ERROR: Syntax error at or near "RAISE" LINE 1: RAISE NOTICE 'hello,world!' ^
为什么?
DO language plpgsql $$ BEGIN RAISE NOTICE 'hello,world!'; END $$;
Variables are referenced使用%:
RAISE NOTICE '%',variable_name;