摘要:
代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--declare @t table(value varchar(10)) insert @t select 'F000001' union all s... 阅读全文
随笔档案-2009年12月
取字符串中第一个出现的数字
2009-12-07 14:43 by 清海扬波, 1202 阅读, 收藏, 编辑
摘要:
代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--select data, substring(numbers,1,patindex('%[ ]%',numbers+' ')-1) as new_data from ( select da... 阅读全文
QRCode二维码控件的实例
2009-12-05 16:51 by 清海扬波, 872 阅读, 收藏, 编辑
摘要:
前段时间网友在问,让后在网上很容易的就找到个Demo,后来就把这个文件删除了,今天心血来潮就想看看,结果找了半天网上也找不到了。但最终是找到了,教训啊,所以把它放在这里,方便自己以后使用。QRCodeDemo代码 这个是另外一个下载地址http://www.yours-better.com/upload/QRCodeTest.rar。 阅读全文
收藏的MSSQL求連續ID內數量合計-常見解決方案
2009-12-04 22:30 by 清海扬波, 237 阅读, 收藏, 编辑
摘要:
代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/----> Title : MSSQL求連續ID內數量合計-常見解決方案 --> Author : wufeng4552 --> Date : 20... 阅读全文
SQLServer中的Split
2009-12-04 14:42 by 清海扬波, 193 阅读, 收藏, 编辑
摘要:
代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--create function f_split ( @SourceSql varchar(8000), @StrSeprate... 阅读全文