摘要:
update newsset news.special_id='|'+ltrim(rtrim(str(s.id)))+'|'from news,special as swhere news.specialname=s.specialname and news.special_id is null 阅读全文
2007年6月18日
2007年6月14日
摘要:
create table t1(n varchar(10),p nvarchar(30))insert t1select N'張三', 'a,b,h'union select N'李四', 'i,e,c,b'create table t2(code varchar(10),n1 nvarchar(30))insert t2select 'a' , '上海'union select 'b' , N'北京'union select 'c' , N' 阅读全文
2007年6月13日
摘要:
原文地址:http://www.windbi.com/showtopic-153.aspx既能解密存储过程,又能解密函数、触发器、视图没测试过create PROCEDURE [dbo].[sp__windbi$decrypt](@procedure sysname = NULL, @revfl int = 1)AS/*王成辉翻译整理,转贴请注明出自微软BI开拓者www.windbi.com目前这个存储过程只能解密存储过程,至于解密函数、触发器、视图的存储过程本网站会进一步关注,调用形式为:exec dbo.sp__windbi$decrypt @procedure,0如果第二个参数使用1的话 阅读全文