我正在pgAdmin 4
使用PostgreSQL
. 我有两个数据库A
,B
每个数据库都有一个名为records
. 在数据库A
中,表records
有 3 列person_id
,shop_freq
和time
,大约有 1000 行。在数据库中B
,表records
有 4 列person_id
, shop_freq
,start_time
和end_time
, 并且是空的。
我想将列person_id
和shop_freq
从数据库中的数据传输到数据库A
中它们对应的列B
,然后将time
数据库的列传输A
到列start_time
,并将随机数据(例如大约 1 到 2 个月后start time
)传递到列end_time
。
我怎么能以一种简单而干净的方式pgAdmin
本身做这样的事情?