今日内容概要 如何查询表 """ select where group by having distinct order by limit regexp like ... """ 连表操作理论 今日内容详细 前期表准备 create table emp( id int not null unique ...
分类:
数据库 时间:
2020-06-14 12:46:59
阅读次数:
58
redis安装小结 下载,解压,编译,修改配置文件,注册为服务 redis6的安装详细说明(个人认为) 到目前阿里云镜像里redis-server版本好像还不是6.0以上的,要用最新的只能自己折腾 用命令查看apt中redis-server的版本apt-cache madison redis-ser ...
分类:
系统相关 时间:
2020-06-14 01:08:07
阅读次数:
200
####BUUCTF-[极客大挑战 2019]BabySQL(联合注入绕过waf) 记一道联合注入的题,这道题存在过滤。 经过手工的测试,网站会检验用户名和密码是否都存在,如果在用户名处插入注入语句,语句后面跟的注符会将密码注释掉,检测不到密码会报错Input your username and p ...
分类:
数据库 时间:
2020-06-13 23:38:20
阅读次数:
113
Caused by: java.sql.SQLSyntaxErrorException: Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'c.id' which is ... ...
分类:
数据库 时间:
2020-06-13 16:01:22
阅读次数:
325
写操作(三) 一.写模式 1.1 覆盖写 在写文件的时候我们要养成一个写完文件就刷新的习惯. 刷新flush() f = open('../path1/小娃娃.txt',mode='w',encoding='utf-8') f.write('太白很白') f.flush() f.close() 结果 ...
分类:
其他好文 时间:
2020-06-13 13:10:26
阅读次数:
53
+模式 一.读写模式 对于读写模式,必须是先读后写,因为光标默认在开头位置,当读完了以后再进行写入.我们以后使用频率最高的模式就是r+ 1.1 r+模式 看下正确的操作: f1 = open('../path1/小娃娃.txt',mode='r+',encoding='utf-8') msg = f ...
分类:
其他好文 时间:
2020-06-13 12:38:27
阅读次数:
37
一、控制文件内指针的移动 coding:utf-8一:文件内指针移动的单位是什么?读出二进制解码得到的字符串:hello你好硬盘: 0101010101101010101011010101010只有t模式下read(n),这个n代表的字符个数with open('a.txt',mode='rt',e ...
分类:
编程语言 时间:
2020-06-13 10:46:56
阅读次数:
60
# http://localhost:8080/h2-console spring.datasource.url=jdbc:h2:mem:testdb spring.datasource.driverClassName=org.h2.Driver #进行该配置后,每次启动程序,程序都会运行resou ...
分类:
其他好文 时间:
2020-06-13 10:40:23
阅读次数:
88
基本信息 样本名:1 分析环境及工具:windows7 x64、IDA 7.0、OD md5:6426350e8787b601cf89b67da89d8269 查壳 无壳 行为预览 遍历注册表 遍历进程 跨进程读遍历进程内存 创建本地线程 打开了其他进程 访问了网络 设置特殊文件夹属性 具体分析 前 ...
分类:
其他好文 时间:
2020-06-13 10:30:21
阅读次数:
90
###题目 Table: Product + + + | Column Name | Type | + + + | product_id | int | | product_name | varchar | | unit_price | int | + + + product_id 是这个表的主键 ...
分类:
数据库 时间:
2020-06-13 00:24:06
阅读次数:
75