2
Answers

Pivoting to a Single Column in SQL

Hi All,

I have a Database table structure in the following format..

IDValue
100ADE
100BCD
100CEF
101MNO
101PQR
101XYZ
102EFG

I want a query to retrieve the results of table in the following format.

IDResults
100ADE,BCD,CEF
101MNO,PQR,XYZ
102EFG

I know that we can accomplish this by PIVOT Keyword but not able to finalize the query, can you guys help me out Please

Thanks in Advance
Vishwas





Answers (2)
0
Munesh Sharma

Munesh Sharma

NA 17.1k 2.4m 10y

First of all be sure that you are importing/using (depending on language) the System.IO namespace for this to work. But what you can do is something like this


string pathToCreate = "~/UserFolders/" + TextBox1.Text;

if(Directory.Exists(Server.MapPath(pathToCreate))

{

   //In here, start looping and modify the path to create to add a number

   //until you get the value needed

}

 

//Now you know it is ok, create it

Directory.CreateDirectory(Server.MapPath(pathToCreate));