SQL Import method, seen on the internet

Source: Internet
Author: User
Tags bulk insert

-------This is a new table, ready to import the table

CREATE TABLE csvtable (
Name NVARCHAR (MAX),
Email NVARCHAR (MAX),
Area NVARCHAR (MAX)
)

----------Insert data from D:\csv.txt, each data delimiter is | The delimiter for each piece of data is;----------


BULK INSERT csvtable
From ' D:\csv.txt '
With (
FieldTerminator = ' | ',
Rowterminator = '; '
)

--------Query the content you import----
SELECT * from Csvtable

Someone once told me another way, is from the data interface upside down data, the method of depositing the database, but also interception, but his method is written by himself

Use Left (' String ' indexof (string)) to intercept this 1.1-point loop recursively.

SQL Import method, seen on the internet

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.