上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 20 下一页
摘要: 在数据库中,统计信息是规划器生成计划的源数据。没有收集统计信息或者统计信息陈旧往往会造成执行计划严重劣化,从而导致性能问题 更新统计信息:analyze ANALYZE语句可收集与数据库中表内容相关的统计信息,统计结果存储在系统表PG_STATISTIC中。 查询优化器会使用这些统计数据,以生成最有 阅读全文
posted @ 2021-06-15 16:27 star521 阅读(589) 评论(0) 推荐(0) 编辑
摘要: PGSQL-SQL执行计划 explain和explain analyze的区别 explain 只生成执行计划,不实际执行 explain analyze 生成执行计划 执行sql 1.表访问方式 Seq Scan 全表顺序扫描 index Scan 索引扫描 :两步1.找出匹配索引条件行的位置, 阅读全文
posted @ 2021-06-15 16:16 star521 阅读(1711) 评论(0) 推荐(0) 编辑
摘要: phpstudy 启动 php的文件目录 G:\phpstudy\PHPTutorial\WWW\helloword.php 测试 http://localhost/helloword.php <?php $a='helloword'; echo $a; echo '<br/>'; var_dump 阅读全文
posted @ 2021-05-31 16:47 star521 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 今天2021.05.31五月的最后一天,周末(2021.05.29)第一次 考计算机软考,高级信息项目管理师 考前正是项目比较忙的一段时间,没有怎么准备。考前看了几篇真题和解析,就拎包上战场了,能过的概率50%吧 上半年软考报名时间在三月中旬到四月初 官网: https://www.ruankao. 阅读全文
posted @ 2021-05-31 11:34 star521 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 创建表 CREATE TABLE `count_table` ( `schema_in` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '库名', `table_name` var 阅读全文
posted @ 2021-04-02 01:40 star521 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 需求 找出子公司、子公司的子公司、子公司的子公司的公司 。。。。。 mysql实现递归 创建测试表 CREATE TABLE `digui_test` ( `org_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DE 阅读全文
posted @ 2021-04-02 01:29 star521 阅读(467) 评论(0) 推荐(0) 编辑
摘要: 基础布局容器 view <!-- view 阻止冒泡 点击效果只会影响子元素,不会受父元素影响 --> <view class="box" hover-class="boxHover" > <view class="item" hover-class="itemHover" hover-stop-p 阅读全文
posted @ 2021-02-18 17:44 star521 阅读(109) 评论(0) 推荐(0) 编辑
摘要: copy copy 1.定义组件 components/组件/组件 2.引入组件 index.json { "usingComponents": { "xsjzj":"/components/xsj/xsj" } } 3.使用组件 index.wxml <xsjzj></xsjzj> 阅读全文
posted @ 2021-02-04 00:44 star521 阅读(35) 评论(0) 推荐(0) 编辑
摘要: index.wxml <view class="container"> <!-- 按钮 图标 --> <van-button bindtap="onclick" icon="phone-circle" type="info" size="large">007按钮</van-button> <view 阅读全文
posted @ 2021-02-04 00:23 star521 阅读(214) 评论(0) 推荐(0) 编辑
摘要: https://youzan.github.io/vant-weapp/#/quickstart https://nodejs.org/zh-cn/download/ 安装 npm node 在小程序项目文件夹下 初始化 npm init -y 项目文件会多出 后面步骤如下 https://youz 阅读全文
posted @ 2021-01-30 15:57 star521 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-01-18 11:39 star521 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 配置mysql 的 /etc/my.cnf [mysql] no-auto-rehash default-character-set = utf8mb4 [mysqld] #skip-grant-tables log_timestamps=SYSTEM user = mysql port = 330 阅读全文
posted @ 2021-01-07 04:28 star521 阅读(77) 评论(0) 推荐(0) 编辑
摘要: update user set host='%' where user='root'; flush privileges; 阅读全文
posted @ 2021-01-07 04:24 star521 阅读(67) 评论(0) 推荐(0) 编辑
摘要: #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; ev 阅读全文
posted @ 2021-01-07 02:59 star521 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 返回当前时间的 Unix 时间戳,并格式化为日期: <?php $t=time(); echo($t . "<br>"); echo(date("Y-m-d",$t)); ?> 阅读全文
posted @ 2021-01-04 16:27 star521 阅读(43) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 20 下一页