Set deafult schema while querying in pgAdmin 4 with query tool

Viewed 22838

Whenever i have to execute sql commands in pgAdmin 4 i have to append schema_name with tables. Eg :-

SELECT * FROM my_schema.users //where myschema is schema name
ORDER BY id ASC  

Is there any way to execute sql commands in pgAdmin 4 without schema name, by setting a default schema in advance.

Some thing like this

SELECT * FROM programme
ORDER BY id ASC 

- without specifying schema name with table.

Is there a way to set default schema in pgAdmin 4 for querying in sql tool?

1 Answers
Related