Hello there
I have a strange issue and just wanted to know if it is possible in SQL 2005. Can somebody please guide me on this.
I have a column with data like
223 245 356
223 356 222
223
456
Null
223 456
etc (these are 3 digit numbers ie; first row contains 3 different values and last row has 2 different values. )
Is there a way that I can divide this data and insert into different rows.
Example, in one row I have to insert the first value of the first column, 223 and in the next row I have to insert 245 and in the next 356 and so on. So the data present in this column would go into 10 rows. Am I clear?
Please let me know if this can be achieved. Thank you for your time.
I have a strange issue and just wanted to know if it is possible in SQL 2005. Can somebody please guide me on this.
I have a column with data like
223 245 356
223 356 222
223
456
Null
223 456
etc (these are 3 digit numbers ie; first row contains 3 different values and last row has 2 different values. )
Is there a way that I can divide this data and insert into different rows.
Example, in one row I have to insert the first value of the first column, 223 and in the next row I have to insert 245 and in the next 356 and so on. So the data present in this column would go into 10 rows. Am I clear?
Please let me know if this can be achieved. Thank you for your time.
Comment