#例:迁移微博用户数据。 由于源表weiboFriend与目标表weiboUser的表结构不完全相同,因此在语句不但要严排列字段顺序,而且还要用缺省(如:'' 等)补齐源表中没有的字段 具体SQL语句: insert into public.weiboUser ( id,screen_name,location,descriptio

#例:迁移微博用户数据。

由于源表weiboFriend与目标表weiboUser的表结构不完全相同,因此在语句不但要严格排列字段顺序,而且还要用缺省值(如:'' 等)补齐源表中没有的字段值

具体SQL语句:

insert into public.weiboUser ( id,screen_name,location,description,profile_image_url,blog_url,followers_count,statuses_count,created_at ) ( select uid,screen_name,'','',profile_image_url,'',followers_count,statuses_count,created from public.weiboFriend );

大家可以根据实际情况稍加修改后使用

09-16 06:30