testdb=
Table "public.member_info"
Column | Type | Collation | Nullable | Default
-----------+---------+-----------+----------+-----------------------------------------
id | integer | | not null | nextval('member_info_id_seq'::regclass)
name | text | | |
groupid | integer | | |
addressid | integer | | |
testdb=
id | name | groupid | addressid
----+------+---------+-----------
1 | 田中 | 103 | 1001
2 | 島野 | 101 | 1002
3 | 森川 | 103 | 1004
4 | 丸山 | 102 | 1001
(4 rows)
testdb=
Table "public.address_info"
Column | Type | Collation | Nullable | Default
-----------+--------------+-----------+----------+---------
addressid | integer | | |
postnum | character(7) | | |
address | text | | |
testdb=
addressid | postnum | address
-----------+---------+----------
1001 | 2061111 | 東京都
1002 | 2062222 | 神奈川県
1004 | 2064444 | 広島県
1003 | 2063333 | 京都府
testdb=
testdb-
testdb-
PREPARE
testdb=
name | address
------+---------
田中 | 東京都
丸山 | 東京都
(2 rows)