Lets suppose I have two schemas in one DB: public and private. In both schemas I have the same table - my_table with the same columns. So is it normal to do the following:
SELECT public.my_table.my_col FROM public.my_table? I am trying to do it with H2 but get exception in ResultSet - column not found. Is it not normal or it's not normal for H2?