Please i am trying to create a table in postgres using pgadmin. After selecting from the "Inherit from" drop down, i am getting the following error
ERROR: syntax error at or near "%"
LINE 2: INHERIT public.%22Staff%22;
This is a bug in pgAdmin4 as it doesn't appear to handle quoted object names, at least for inheritance.
I have now reported this bug to the PgAdmin community.
In the meantime, you may wish to take the SQL it generates (visible on the SQL tab) and manually edit then run it, replacing %22 with ". Or you could use table names without quoting, which will cause it to lose it's casing, so that may or may not be an issue for you.
Disclosure: I am an EnterpriseDB (EDB) employee.
"Staff"?