I try to declare a variable in a code like this:
DECLARE
p_country VARCHAR;
p_country : = '';
SELECT p_country;
But it's doesn't work:
ERROR: syntax error at or near "VARCHAR" LINE 2: p_country VARCHAR;
Can you tell me what's the problem?