postgres=
Table "public.shopa_shoes"
Column | Type | Collation | Nullable | Default
--------+-------------------+-----------+----------+-----------------------------------------
id | character varying | | not null | nextval('shopa_shoes_id_seq'::regclass)
size | numeric | | |
postgres=
Table "public.shopb_shoes"
Column | Type | Collation | Nullable | Default
--------+-------------------+-----------+----------+---------
id | character varying | | |
size | numeric | | |
postgres=
id | size
------+------
0001 | 23.5
0001 | 24.5
0003 | 24
(3 rows)
postgres=
id | size
------+------
0001 | 24.5
0002 | 23
0005 | 22.5
(3 rows)
postgres=
id | size | id | size
------+------+------+------
0001 | 24.5 | 0001 | 24.5
0001 | 23.5 | 0001 | 24.5
| | 0002 | 23
| | 0005 | 22.5
(4 rows)