• jonatan.carlberg (8/27/2014)


    Hi!

    I'm quite new to SQL. I'm able to extract the info that I need, but only into a result of one row, like:

    Order header | Order details

    ID | Customer name | Customer address | Product number | Product name | Quantity | Price | Product number | Product name | Quantity | Price

    2 Andy Andy's way 2 24 Glue 3 35 39 Oyster 2 9

    I would like the query to return it in this way:

    2AndyAndy's way 2

    24Glue335

    39Oyster290

    Is it even possible? Thanks in advance 🙂

    Hi and welcome to the forums. We can help but we need some more details. Does your table always have this format or is this a flat file and you need to determine how to parse it?

    _______________________________________________________________

    Need help? Help us help you.

    Read the article at http://www.sqlservercentral.com/articles/Best+Practices/61537/ for best practices on asking questions.

    Need to split a string? Try Jeff Modens splitter http://www.sqlservercentral.com/articles/Tally+Table/72993/.

    Cross Tabs and Pivots, Part 1 – Converting Rows to Columns - http://www.sqlservercentral.com/articles/T-SQL/63681/
    Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs - http://www.sqlservercentral.com/articles/Crosstab/65048/
    Understanding and Using APPLY (Part 1) - http://www.sqlservercentral.com/articles/APPLY/69953/
    Understanding and Using APPLY (Part 2) - http://www.sqlservercentral.com/articles/APPLY/69954/