Utilice un bloque de código anónimo :
DO language plpgsql $$
BEGIN
RAISE NOTICE 'hello, world!';
END
$$;
Se hace referencia a las variables
usando %
:
RAISE NOTICE '%', variable_name;
Utilice un bloque de código anónimo :
DO language plpgsql $$
BEGIN
RAISE NOTICE 'hello, world!';
END
$$;
Se hace referencia a las variables
usando %
:
RAISE NOTICE '%', variable_name;