abrudtkuhl
ISP
Thank you in advance for help..
This is simple, but I cannot get it to work. I am looping through a function that migrates data from one db to another. I have a string that is a list all the columns in the table. I need to remove the first column from the string everytime it loops.
Original string:
strColVal = "ID, name, etc, etc, etc"
Desired string:
strColVal = "name, etc, etc, etc, etc"
The column name I want to get rid of is not the same length everytime, so I need to use the first comma as a delimiter. Any help would be greatly appreciated. Thanks
This is simple, but I cannot get it to work. I am looping through a function that migrates data from one db to another. I have a string that is a list all the columns in the table. I need to remove the first column from the string everytime it loops.
Original string:
strColVal = "ID, name, etc, etc, etc"
Desired string:
strColVal = "name, etc, etc, etc, etc"
The column name I want to get rid of is not the same length everytime, so I need to use the first comma as a delimiter. Any help would be greatly appreciated. Thanks