摘要: 1 select * from Score 阅读全文
posted @ 2018-08-02 16:26 徒然喜欢你 阅读(374) 评论(1) 推荐(0) 编辑
摘要: 一、下载phpStudy(https://pan.baidu.com/s/1ngFn6ixvGljU_r-q7tpurw) 该程序包集成最新的Apache+PHP+MySQL+phpMyAdmin+ZendOptimizer,一次性安装,无须配置即可使用,是非常方便、好用的PHP调试环境。该程序不仅 阅读全文
posted @ 2018-06-12 15:31 徒然喜欢你 阅读(896) 评论(0) 推荐(0) 编辑
摘要: select datediff(year, 开始日期,结束日期); --两日期间隔年select datediff(quarter, 开始日期,结束日期); --两日期间隔季select datediff(month, 开始日期,结束日期); --两日期间隔月select datediff(day, 阅读全文
posted @ 2018-06-07 13:47 徒然喜欢你 阅读(14222) 评论(1) 推荐(0) 编辑
摘要: 1.Liger UI:http://www.ligerui.com/ 2.https://msdn.itellyou.cn/ 3.正则表达式:https://www.bejson.com/othertools/regex_create/ 4.LayUI:http://layer.layui.com/ 阅读全文
posted @ 2018-05-30 15:43 徒然喜欢你 阅读(319) 评论(0) 推荐(0) 编辑
摘要: 数据库(B表中的AID字段保存的为A表中的AID字段) A表: B表: 1.将B表中的数据拆分查询显示。 SELECT A.BID, B.valueFROM(SELECT BID, [AID] = CONVERT(xml,'<root><v>' + REPLACE([AID], ',', '</v> 阅读全文
posted @ 2018-05-11 09:18 徒然喜欢你 阅读(1024) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 按照当前时间的毫秒值生成一个自定义的15位Guid码 /// </summary> /// <returns></returns> public static string Generate() { lock (locker) { string guid = Da 阅读全文
posted @ 2018-04-23 11:23 徒然喜欢你 阅读(863) 评论(4) 推荐(0) 编辑
摘要: 今天闲来无事,就回忆了一下九九乘法表,之前都是用Java代码打的,不过现在在做.Net开发,于是就用C#写了一下,不过原理都是一样的~ using System;using System.Collections.Generic;using System.Linq;using System.Text; 阅读全文
posted @ 2017-10-26 16:46 徒然喜欢你 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 一、jsp中java小脚本 1.<% java代码段%> 2.<% =java表达式%>不能有分号 3.<%!成员变量和函数声明%> 二、注释 1.<!--html注释-->客户端可以看到 2.<%--jsp注释--%>客户端不能看到 三、jsp页面的的执行过程 1.客户端请求(输入URL) 2.服 阅读全文
posted @ 2017-09-01 10:23 徒然喜欢你 阅读(205) 评论(0) 推荐(0) 编辑
摘要: Web.config配置文件 在Web.config配置文件中,通过sessionState节点上的mode属性设置 mode值共分为5种: 1.InProc: mode默认值,只是保存当前应用程序域,重启服务session保存数据丢失。 优点:获取数据快,没有序列化和反序列化的要求。 缺点:占用内 阅读全文
posted @ 2017-08-31 09:38 徒然喜欢你 阅读(5558) 评论(0) 推荐(0) 编辑