上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 21 下一页
摘要: select t.table_name,t.num_rows from user_tables t ORDER BY NUM_ROWS DESC;//实际行数 analyze table emp compute statistics; select num_rows * avg_row_len fr 阅读全文
posted @ 2019-04-15 09:33 萌橙 阅读(2910) 评论(0) 推荐(0) 编辑
摘要: public class WebBrower { /// <summary> /// 修改注册表信息来兼容当前程序 /// /// </summary> public static void SetWebBrowserFeatures(int ieVersion) { // don't change 阅读全文
posted @ 2019-04-11 14:59 萌橙 阅读(417) 评论(0) 推荐(0) 编辑
摘要: 1:复制表结构及数据到新表 select * into 目的数据库名.dbo.目的表名 from 原表名 select * into my0735home.dbo.infoMianTest from infoMian 2:备份表的一部分列(不写*而写出列的列表) select 列名1,列名2,列名3 阅读全文
posted @ 2019-04-09 16:22 萌橙 阅读(8659) 评论(2) 推荐(4) 编辑
摘要: 帮助类 using System; using System.CodeDom; using System.CodeDom.Compiler; using System.Collections.Generic; using System.Configuration; using System.IO; 阅读全文
posted @ 2019-04-04 15:27 萌橙 阅读(426) 评论(0) 推荐(0) 编辑
摘要: Swiper(Swiper master)是目前应用较广泛的移动端网页触摸内容滑动js插件。 https://www.swiper.com.cn/ 阅读全文
posted @ 2019-04-03 11:50 萌橙 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 一、建立网页 <html> <head> <meta http-equiv="Content-Language" content="zh-cn"> <script language="javascript" type="text/javascript"> <!-- 提供给C#程序调用的方法 --> 阅读全文
posted @ 2019-04-02 11:48 萌橙 阅读(1073) 评论(2) 推荐(0) 编辑
摘要: 1.新表不存在 create table new_table select * from old_talbe; 这种方法会将old_table中所有的内容都拷贝过来,用这种方法需要注意,new_table中没有了old_table中的primary key,Extra,auto_increment等 阅读全文
posted @ 2019-03-29 09:28 萌橙 阅读(8751) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 判断两个相同引用类型的对象的属性值是否相等 /// </summary> /// <typeparam name="T"></typeparam> /// <param name="obj1">对象1</param> /// <param name="obj2"> 阅读全文
posted @ 2019-03-29 08:42 萌橙 阅读(863) 评论(0) 推荐(0) 编辑
摘要: 逐梦博客(前端知识) https://www.deanhan.cn/category/posts/study SQL格式化工具 http://tool.oschina.net/codeformat/sql jQuery.LigerUI http://www.ligerui.com/ Vue.js—— 阅读全文
posted @ 2019-03-20 11:50 萌橙 阅读(245) 评论(0) 推荐(0) 编辑
摘要: https://www.html.cn/archives/8748#table-of-contents https://www.haorooms.com/post/js_regexp 阅读全文
posted @ 2019-03-19 10:01 萌橙 阅读(275) 评论(0) 推荐(1) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 21 下一页