摘要:
一.定义表变量DECLARE @T1 table(UserID int , UserName nvarchar(50),CityName nvarchar(50));insert into @T1 (UserID,UserName,CityName) values (1,'a','上海')insert into @T1 (UserID,UserName,CityName) values (2,'b','北京')insert into @T1 (UserID,UserName,CityName) values (3,'c 阅读全文
摘要:
---恢复内容开始---本文转http://www.mhzg.net/a/20117/2011789260293.html由于业务需求,我们可能会把一串以分割符字符串数据放到一个字段,如我们在客户端处理拆分是很简单的,不过这样做效果不太好,怎么用SQL SERVER 2008 来解决这件事件哪?--参考拆分表:-->-->(Roy)生成測試數據ifnotobject_id('Tab')isnulldroptableTabGoCreatetableTab([Col1]int,[COl2]nvarchar(5))InsertTabselect1,N'a,b,c& 阅读全文