【事件】 bike trip Describe an unforgettable bike trip you had You should say: When and where you had the trip Who you went with Why you had the trip by b ...
分类:
其他好文 时间:
2021-04-21 12:57:26
阅读次数:
0
ctfshow web7 和上题一样的套路 先跑一遍字典 "or "a"="a'.).or.('.a.'='.aor 1=1--'or 1=1--a'or' 1=1--"or 1=1--'or.'a.'='a"or"="a'='a'or''=''or'='or'1'or 1=1#'='&passwo ...
分类:
Web程序 时间:
2021-04-21 12:53:43
阅读次数:
0
Dim bag,pipe do Set bag=GetObject("WinMgmts:") Set pipe=bag.execquery("select * from win32_process where name='notepad.exe'") for each i in pipe i.ter ...
分类:
系统相关 时间:
2021-04-21 12:36:32
阅读次数:
0
查询你想要的表名:select table_name,tablespace_name,status,temporary from user_tables where table_name like '%tab_name%';tab_name 为要查表名的其中一部分。如:你要查表名中有order的表名 ...
分类:
数据库 时间:
2021-04-21 12:08:25
阅读次数:
0
更新数据 语法: update表名set字段1名字=字段1的值,字段2名字=字段2的值 where条件 更新所有数据 将所有人的成绩设置为100; update t_user set score=100; 根据条件更新 将学号是3的学生,成绩设为59; update t_user set score ...
分类:
其他好文 时间:
2021-04-21 12:06:39
阅读次数:
0
Java字符串 三个字符串类 String (不可变) StringBuilder (可变) StringBuffer(可变) 空字符串不是null,空字符串分配了空间,而null没有分配空间 不可变字符串的创建 package chapter8; public class chapt01 { pu ...
分类:
编程语言 时间:
2021-04-21 12:02:46
阅读次数:
0
索引优化 1.1SQL性能下降的原因 查询语句写的很不好; 索引失效 单值索引 select * from user where name=''; create index idx_user_name on user(name); 复合索引 select * from user where name ...
分类:
其他好文 时间:
2021-04-20 14:31:28
阅读次数:
0
一、过滤 SELECT * FROM mytable WHERE col IS NULL 二、排序 SELECT * FROM mytable ORDER BY col1 DESC, col2 ASC 注: ASC:升序(默认) DESC:降序 ...
分类:
数据库 时间:
2021-04-20 14:08:18
阅读次数:
0
第一步: 将所有副本可读设置为 “否” 第二步: 在主副本上设置挂起 ALTER DATABASE Erp_Wygl_6008 SET HADR SUSPEND 第三步: 设置迁移后的文件路径 SELECT database_id,name,physical_name AS CurrentLocat ...
分类:
数据库 时间:
2021-04-19 16:07:28
阅读次数:
0
最近响应群里朋友完整开源之前那个博客系统,准备重构一番项目的代码,对数据库中的表决定都添加 create_by、update_by、create_time、update_time、del_flag 等字段。 当时添加表的时候没有设置默认值,现在要对二三十张表某个字段,如对 del_flag 设置默认 ...
分类:
数据库 时间:
2021-04-19 14:53:46
阅读次数:
0