I want to check whether the table exists or not in the database.
IF NOT EXISTS (SELECT * from INFORMATION_SCHEMA.Tables WHERE Table_name = 'test') THEN
    RAISE INFO 'Not exists';
else
    RAISE INFO 'Exists';
end if;
Getting an error:
ERROR:  syntax error at or near "IF"
 
     
    