使用SQL Server 2005如何分割行和列值
id value1 value2
001 200 300
002 200x300 400x200
003 300x200 500x600
004 100 200
.....
我想值列拆分成2列
If value1 row 200x300 then it should display value1 - 200 and value2 - 300
if value2 row 400x200 then it should display value1 - 400 and value2 - 200
預計輸出
id value1 value2
001 200 300
002 200 300
002 400 200
003 300 200
003 500 600
004 100 200
....
如何做這個。
需要SQL查詢幫助
分割?什麼是邏輯?請解釋一下 – DevelopmentIsMyPassion 2013-04-25 07:37:11
解釋一下,請檢查我的問題 – Gopal 2013-04-25 07:40:42
@AshReva,請在發帖之前試着理解這個問題,這個問題與這個問題完全不一樣。 – Gopal 2013-04-25 07:51:35