Vertica migrates data from other tables to a new table (insertinto statement usage instance)

Source: Internet
Author: User
# Example: migrate Weibo user data. Because the structure of the source table weiboFriend is not exactly the same as that of the target table weiboUser, the statement must not only strictly arrange the field order, but also use the default (for example) fill in the SQL statement for fields not found in the source table: insertintopublic. weiboUser (id, screen_name, location, descriptio

# Example: migrate Weibo user data. Because the structure of the source table weiboFriend is not exactly the same as that of the target table weiboUser, the statement must not only strictly arrange the field order, but also use the default (for example) SQL statement for filling fields not in the source table: insert into public. weiboUser (id, screen_name, location, descriptio

# Example: migrate Weibo user data.

Because the structure of the source table weiboFriend is not exactly the same as that of the target table weiboUser, the statement must not only strictly arrange the field order, but also use the default value (for example) fill fields not in the source table

Specific SQL statement:

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

You can use it after slight modification according to the actual situation.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.