上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 89 下一页
摘要: 摘录https://www.cnblogs.com/zery/p/6971902.html 阅读全文
posted @ 2018-07-22 09:23 BloggerSb 阅读(645) 评论(0) 推荐(0)
摘要: 使用 SET FOREIGN_KEY_CHECKS=0;来禁用外键约束. 用 SET FOREIGN_KEY_CHECKS=1;来启动外键约束. 查看当前FOREIGN_KEY_CHECKS的值可用如下命令SELECT @@FOREIGN_KEY_CHECKS; 阅读全文
posted @ 2018-07-22 09:17 BloggerSb 阅读(395) 评论(0) 推荐(0)
摘要: #1、单行注释可以用"#" select 1 as cname; #this is a comment #2、单行注释的第二种写法用 "-- " 注意这个风格下"--【空格】" 也就是说“--" 与注释之间是有空格的。 select 123; -- this is a comment #3、多行注释可以用/**/ select 123; /* this is a comment */ 阅读全文
posted @ 2018-07-16 16:48 BloggerSb 阅读(405) 评论(0) 推荐(0)
摘要: -- 时间戳转日期 select FROM_UNIXTIME(1531714980); #日期转时间戳 Select UNIX_TIMESTAMP('2018-07-16 12:23:00'); 阅读全文
posted @ 2018-07-16 16:44 BloggerSb 阅读(217) 评论(0) 推荐(0)
摘要: --查询tablename 数据库中 以"_copy" 结尾的表 select table_name from information_schema.tables where table_schema='tablename' and table_type='base table' and table 阅读全文
posted @ 2018-07-12 16:57 BloggerSb 阅读(801) 评论(0) 推荐(0)
摘要: begin try --SQL end try begin catch --sql (处理出错动作) end catch 我们将可能会出错的sql 写在begin try...end try 之间,若出错,刚程序就跳到紧接着的begin try...end try 的beign catch...en 阅读全文
posted @ 2018-07-10 13:53 BloggerSb 阅读(1765) 评论(0) 推荐(0)
摘要: public static class CheckedComboBoxEditExtension { public static void BindData(this CheckedComboBoxEdit control, IList> collection, bool isShowButtons = true) { if (co... 阅读全文
posted @ 2018-06-27 14:25 BloggerSb 阅读(386) 评论(0) 推荐(0)
摘要: CheckComboboxEdit //清空项 checkedComboBoxEdit1.Properties.Items.Clear(); //自定义数组 string[] strs=new string[]{"新建","审批中","已完成","已撤销"}; //添加项 checkedComboB 阅读全文
posted @ 2018-05-31 18:37 BloggerSb 阅读(12825) 评论(0) 推荐(0)
摘要: update Fct_StockMove set Disabled=Disabled^1 WHERE MoveId='DCE268E0-2CB3-4D17-AC4E-0046FB459CAD'; 1.使用取反操作符 update t1 set c1=~c1; 2.使用异或操作符 ,适用于int类型操 阅读全文
posted @ 2018-05-14 15:27 BloggerSb 阅读(1339) 评论(0) 推荐(1)
摘要: 如果不需要添加为null或者为空的栏位,则可以使用如下代码 源文: http://www.cnblogs.com/xuhongfei/p/7491108.html 阅读全文
posted @ 2018-05-14 09:49 BloggerSb 阅读(207) 评论(0) 推荐(0)
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 89 下一页