随笔 - 404
文章 - 0
评论 - 1037
阅读 -
136万
09 2009 档案
如何显示数据库long text 字段内容
摘要:declare @s varchar(8000) set @s='' select @s=ArticlePageSource fromtable where ArticlePageId=1 print @s显示longtext 字段内容
阅读全文
(转)资料收集,新手必备的sql数据导入导出知识
摘要:转载自csdnSQLSERVER与ACCESS、EXCEL的数据转换熟悉SQLSERVER2000的数据库管理员都知道,其DTS可以进行数据的导入导出,其实,我们也可以使用Transact-SQL语句进行导入导出操作。在Transact-SQL语句中,我们主要使用OpenDataSource函数、OPENROWSET函数,关于函数的详细说明,请参考SQL联机帮助。利用下述方法,可以十分容易地实现S...
阅读全文
快速排序算法的实现
摘要:#include<iostream>#include<math.h>#include<time.h>#include<stdlib.h>using namespace std;//产生(begin,end)区间的随机数int myrand(int begin,int end){srand(unsigned(time(NULL))); int i=(r...
阅读全文