摘要: private static string DataTableToXml(DataTable table) { if (null == table) return string.Empty; string xmlStr = "<ROOT>\n"; for (int i = 0; i < table. 阅读全文
posted @ 2023-02-07 17:32 宋佳莉 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1.通过sp里面的关键字查询sp名称 SELECT obj.Name 存储过程名, sc.TEXT 存储过程内容 FROM syscomments sc INNER JOIN sysobjects obj ON sc.Id = obj.ID WHERE obj.Name LIKE 'OTD%' AN 阅读全文
posted @ 2022-03-07 15:02 宋佳莉 阅读(37) 评论(0) 推荐(0) 编辑
摘要: CREATE FUNCTION [dbo].[f_splitSTR]( @string VARCHAR(MAX), --待分拆的字符串 @splitChar VARCHAR(10) --数据分隔符 )RETURNS @result TABLE(col VARCHAR(100)) AS BEGIN D 阅读全文
posted @ 2022-01-14 11:32 宋佳莉 阅读(707) 评论(0) 推荐(0) 编辑
摘要: SELECT 表名=case when a.colorder=1 then d.name else '' end, 字段名=a.name, 标识=case when COLUMNPROPERTY(a.id,a.name,'IsIdentity')=1 then 'Y'else 'N' end, 主键 阅读全文
posted @ 2021-03-15 15:15 宋佳莉 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 1、JS数据类型 值类型:undefined、number、string、boolean、symbol 引用类型:function、object 2、undefined和null 2.1、在if语句中,undefined和null都会自动转为false // if (!undefined) {// 阅读全文
posted @ 2020-12-23 13:31 宋佳莉 阅读(91) 评论(0) 推荐(0) 编辑
摘要: SELECT obj.Name 存储过程名, sc.TEXT 存储过程内容 FROM syscomments sc INNER JOIN sysobjects obj ON sc.Id = obj.ID WHERE sc.TEXT LIKE '%自己要查的内容%' 阅读全文
posted @ 2020-10-22 15:52 宋佳莉 阅读(1754) 评论(0) 推荐(0) 编辑
摘要: create table #Data(name varchar(100),row varchar(100),reserved varchar(100),data varchar(100),index_size varchar(100),unused varchar(100)) declare @na 阅读全文
posted @ 2020-10-18 21:04 宋佳莉 阅读(346) 评论(0) 推荐(0) 编辑
摘要: 版权声明:a56爆大奖在线娱乐为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/u012097590/article/details/82771499 阅读全文
posted @ 2019-06-27 22:45 宋佳莉 阅读(843) 评论(0) 推荐(0) 编辑
摘要: 什么是跨域? 跨域是指一个域下的文档或脚本试图去请求另一个域下的资源,这里跨域是广义的。 广义的跨域: 1.) 资源跳转: A链接、重定向、表单提交 2.) 资源嵌入: <link>、<script>、<img>、<frame>等dom标签,还有样式中background:url()、@font-f 阅读全文
posted @ 2018-06-06 17:11 宋佳莉 阅读(247) 评论(0) 推荐(0) 编辑
摘要: <%@ Register tagprefix="tagprefix" Namespace="namespace" Assembly="assembly" %> 属性说明 属性 描述 assembly namespace src 阅读全文
posted @ 2018-04-25 09:55 宋佳莉 阅读(1873) 评论(0) 推荐(0) 编辑