Question about the comma delimiter used to export CSV files from SQL statements

Source: Internet
Author: User
For SQL export CSV files, the comma delimiter is generally set to ",", but many of the contents in the database contain commas. how can this problem be solved?


Reply to discussion (solution)

This statement also reports an error. $ rs ['group _ concat (concat_ws ('X', 'sku ', 'quantity-purchased, it should be the 'X' problem. what should I do?

echo $rs['ship-postal-code'].",".$address.",".$rs['recipient-name'].",".$rs['ship-city'].",".$rs['ship-state'].",".$rs['buyer-phone-number'].",".$rs['group_concat( concat_ws(' X ', `sku` , `quantity-purchased` ) )']."\r\n";

CSV files are generally separated by commas (,). However, many contents in the database contain commas (,). how can this problem be solved? According to the format of the CSV file, when the content contains a comma, the content should be enclosed in double quotation marks. when the content contains double quotation marks, the double quotation marks should be changed to two double quotation marks, of course, the entire content is enclosed in double quotation marks.
Generally, the content of the character type should be placed in double quotation marks.
In addition, fgetcsv after php5.3 cannot recognize Chinese characters not in double quotation marks

This statement also reports an error. $ rs ['group _ concat (concat_ws ('X', 'sku ', 'quantity-purchased, it should be the 'X' problem. what should I do?

PHP code

Echo $ rs ['ship-postal-Code']. ",". $ address. ",". $ rs ['recipient-name']. ",". $ rs ['s ......
$ Rs ['group _ concat (concat_ws ('X', 'sku ', 'quantity-purchased')']
It's strange that there are single quotes in single quotes without errors.

Xuzuning is large,

I. Is this problematic statement an escape character or a double quotation mark?

II. This statement writes the database content to a CSV file. what should I do ??

3. The txt file is exported from linen. Which of the following is not prone to the problem caused by separators in CSV and TXT files ??

The standard csv is like this.
"Abcd", "a", 123
The values of the three columns are abcd, a ", and 123.

Double quotation marks can be omitted in case of no ambiguity.
Aaa, bb, cccc

However
Aaa, Chinese character, 123
In this way, php5.3 can only read the content in columns 1 and 3, and the 2nd column is empty.

It doesn't matter what tool you use to notice these facts.
Since a tool becomes a tool, it naturally has its merits.

$ Rs ['group _ concat (concat_ws ('X', 'sku ', 'quantity-purchased')']

How should I change this statement ?? I cannot read any data.

$ Rs ["group_concat (concat_ws ('X', 'sku ', 'quantity-purchased')"]

When exporting files, you can select "column separator (C)" at the bottom. you can select "tab separator". however, pay attention ", when the "symbol" is displayed, the separator is invalid.

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.