How to obtain all field names of a table separated by commas _ MySQL

Source: Internet
Author: User
Since Oracle9i, you can use the SYS_CONNECT_BY_PATH function to display the content from the parent node to the current row in the form of "path" or a list of hierarchical elements. Obtain the names of all fields in a table and separate them with commas. Selectmax (substr (SYS_CONNECT_BY_PATH (COLUMN_NAME,), 2) colfrom (selectCOLUMN_NAME, colu since Oracle 9i, you can use the SYS_CONNECT_BY_PATH function to implement
The row content is displayed in the form of "path" or a list of hierarchical elements.

Obtain the names of all fields in a table and separate them with commas.

Select max (substr (SYS_CONNECT_BY_PATH (COLUMN_NAME, ','), 2) col from (
Select COLUMN_NAME, column_id from user_tab_columns where table_name = '& table name ')
Start with column_id = 1
Connect by column_id = rownum;

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.