I want to create a schema in postgresql with a sql file. I use USE db_name in MySQL After I created the database. Like this:
DROP SCHEMA IF EXISTS db_name;
CREATE SCHEMA db_name;
USE db_name;
And After that I create the tables and tables are created in that database I'm using now. How could I do something like that in postgresql?