How to create Tab Delimited Select statement?

33,891

Solution 1

MySQL:

select concat(ColumnA, "\t" ,ColumnB)

SQL Server:

select ColumnA + char(9) + ColumnB

Oracle:

select ColumnA || chr(9) || ColumnB

Solution 2

If I understand your question, you should try this:

SELECT CONCAT(ColumnA, '\t', ColumnB)

Solution 3

Tab is char(9) in Microsoft SQL Server.

source: http://msdn.microsoft.com/en-us/library/ms187323.aspx

Solution 4

Postgresql:

select concat(ColumnA, chr(9), ColumnB)
Share:
33,891
meetpd
Author by

meetpd

I am the CEO of Upnexo Technologies Pvt. Ltd. We are a Product and Content Development Company. Our list of sites include: Upnexo.com HalfPantHippo.com TopVPN.Review SplitScreenApp.com ReviewRoller.com

Updated on July 09, 2022

Comments

  • meetpd
    meetpd almost 2 years

    I need to combine columns with select statment such that it create a tab delimited file.

    For. e.g

    Select ColumnA || "," || ColumnB
    

    Above statement will create Comma Seperate File. What should I write to create Tab delimited file?

    Please let me know.