上一页 1 ··· 81 82 83 84 85 86 87 88 89 ··· 112 下一页
摘要: 例子: select count(*) from table where DATEDIFF ([second], '2004-09-18 00:00:18', '2004-09-18 00:00:19') > 0 说明 select DATEDIFF(day, time1 , time2) 对应示例 阅读全文
posted @ 2017-06-29 15:10 甜菜波波 阅读(13201) 评论(0) 推荐(0) 编辑
摘要: http://layer.layui.com/mobile/ 阅读全文
posted @ 2017-06-29 14:35 甜菜波波 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 查询数据库中的存储过程 方法一: select `name` from mysql.proc where db = 'your_db_name' and `type` = 'PROCEDURE' 方法二: show procedure status; 查看存储过程或函数的创建代码 show crea 阅读全文
posted @ 2017-06-27 15:56 甜菜波波 阅读(7696) 评论(0) 推荐(0) 编辑
摘要: using System.Data; using System; public class A { static void Main(string[] args) { DataTable locationTable = new DataTable("Location"); // Add two columns locationTable.Columns.... 阅读全文
posted @ 2017-06-27 10:09 甜菜波波 阅读(6885) 评论(0) 推荐(0) 编辑
摘要: public interface Icolor{ int apply(int x,int y); } public enum color implements Icolor{ plus("+"){ public int apply(int x,int y){ return x+y;... 阅读全文
posted @ 2017-06-22 10:59 甜菜波波 阅读(9796) 评论(0) 推荐(0) 编辑
摘要: protected void removeEmpty(DataTable dt) { List removelist = new List(); for (int i = 0; i < dt.Rows.Count; i++) { bool rowdataisnull =... 阅读全文
posted @ 2017-06-21 16:56 甜菜波波 阅读(2369) 评论(0) 推荐(0) 编辑
摘要: SQL Prompt是一款拥有SQL智能提示功能的SQL Server和VS插件。超级好用的插件, SQL Prompt是一款拥有SQL智能提示功能的SQL Server和VS插件。超级好用的插件, 阅读全文
posted @ 2017-06-19 15:02 甜菜波波 阅读(142) 评论(0) 推荐(0) 编辑
摘要: package com.test; public class Programe { public static void main(String[] args) throws InterruptedException { // TODO Auto-generated method stub System.out.println("aa... 阅读全文
posted @ 2017-06-11 16:17 甜菜波波 阅读(127) 评论(0) 推荐(0) 编辑
摘要: ASP.NET MVC 3支持一项名为“Razor”的新视图引擎选项(除了继续支持/加强现有的.aspx视图引擎外)。当编写一个视图模板时,Razor将所需的字符和击键数减少到最小,并保证一个快速、通畅的编码工作流。 与大部分模板的语法不同,在Razor的帮助下,您不需要中断代码编写,仅仅为了在HT 阅读全文
posted @ 2017-06-09 18:07 甜菜波波 阅读(220) 评论(0) 推荐(0) 编辑
摘要: package com; public class Demo { public static void main(String[] args) { // TODO Auto-generated method stub //方法1 Thread t = new Thread() { public ... 阅读全文
posted @ 2017-06-09 13:42 甜菜波波 阅读(150) 评论(0) 推荐(0) 编辑
上一页 1 ··· 81 82 83 84 85 86 87 88 89 ··· 112 下一页