轻设计 / 轻生活 / 轻日记 / 轻梦想 === zhoumojianshe ===
© 优特良品&优特建站出品 | Powered by YOUTIY
苏ICP备13018047号-1
Sql Server:Print函数突破8000字符的限制
TAGS: 后端设计

今天研究了一下Sql Server的Print函数,发现Print函数只能打印8000个字符的内容,这个跟与业务需求有矛盾,如何才能突破8000个字符的现在,考虑到用循环来实现这个功能,具体实现代码:


	Declare @SqlSelect Varchar(max);
	set @SqlSelect=''; WHILE LEN(@SqlSelect) > 8000
	BEGIN
	  print(left(@SqlSelect,8000));
	  set @SqlSelect= right(@SqlSelect,LEN(@SqlSelect)-8000);
	END
	print( @SqlSelect);


本文由周末简设原创出品,如需转载请注明出处
本文出处:http://www.youtiy.com/detail_609.html


周末
2021-11-25 12:08:14
标签云
网页设计 精致慢生活 感悟思语 我的旧年华
加偶微信