We will migrate the database from mysql to postgresql in our product(through java). So we need to change the mysql query to postgresql query in java application. How to create the table i.e., databasename.tablename in postgresql. For mysql, we can directly create the table e.g create table information.employee. Here database name is "information" and table name is "employee" . Is it possible to achieve same query in postgresql.
I searched google it says cross database reference is not possible. Please help me. I saw pg_class table it contains the table names in the specific database, like wise databse and tables relationships are stored in any other table.