上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 29 下一页
摘要: 一个sql整了半天排错,发现是表名大小写不一样导致的,所以记录下 查了下资料,mysql的表名是根据存储在操作系统上的文件的名称来判断的。 如果操作系统文件名不区分大小写, 例如windows,那么对应的表名就不区大小写。 如果操作系统文件名区分大小写, 例如linux,那么对应的表名就区分大小写。 阅读全文
posted @ 2023-05-17 09:35 mofy 阅读(101) 评论(0) 推荐(0)
摘要: sql关键字作为保留字使用,不能用于表或者列的名称 sql语句不区分大小写 sql语句中空格会被忽略 select列名之间用逗号分隔 少用*号检索,会降低性能 distinct关键字作用于所有的列 限制结果语法 top 5 关键字 sqlserver和access中使用 fetch first 5 阅读全文
posted @ 2023-05-10 13:16 mofy 阅读(104) 评论(0) 推荐(0)
摘要: 情况一 arr=['a','b'] sql="select * from student where name in (?)" db.query(sql,arr,function(){ console.log(this.sql) }) // select * from student where n 阅读全文
posted @ 2023-05-04 15:16 mofy 阅读(92) 评论(0) 推荐(1)
摘要: 16 of CSS’s named colors come from the VGA palette originally, and were then adopted into HTML: aqua, black, blue, fuchsia, gray, green, lime, maroon, 阅读全文
posted @ 2023-03-20 11:54 mofy 阅读(201) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2023-02-28 10:04 mofy 阅读(28) 评论(0) 推荐(0)
摘要: chrome webdriver下载 https://chromedriver.storage.googleapis.com/index.html 阅读全文
posted @ 2023-02-28 09:13 mofy 阅读(423) 评论(0) 推荐(0)
摘要: -q, --quiet Quiet. Produces output suitable for logging, omitting progress indicators. More q's will produce more quiet up to a maximum of two. You ca 阅读全文
posted @ 2023-02-27 16:41 mofy 阅读(159) 评论(0) 推荐(0)
摘要: file模块 文件的相关操作,新增,删除 https://www.cnblogs.com/keerya/p/8040071.html ping模块 检测联通行 https://www.cnblogs.com/keerya/p/8040071.html command模块 linux命令的相关操作,不 阅读全文
posted @ 2023-02-27 14:15 mofy 阅读(15) 评论(0) 推荐(0)
摘要: 第二个命令后面如果加 --mirror Aliyun会报错,所以查看了文档 其他的使用标准输出的方式还有xargs和连字符(减号)"-",这两个参数的方式,后面加--mirror Aliyun也没有成功,不知道是不是我操作失误或者使用方式不对~ 阅读全文
posted @ 2023-02-27 09:46 mofy 阅读(74) 评论(0) 推荐(0)
摘要: 一、简介Ansible的默认配置文件是/etc/ansible/ansible.cfg,如果ansible的工作目录里没有ansible.cfg那么默认使用全局的配置文件,如果有的话使用工作目录里的配置文件,这一点和inventory类似。如果存在多个配置文件,那么可能会搞错,不知道用的是哪个怎么办 阅读全文
posted @ 2023-02-25 19:27 mofy 阅读(371) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 29 下一页