准备工作 先来一段伪代码,首先你能看懂么? SELECT DISTINCT <select_list> FROM <left_table> <join_type> JOIN <right_table> ON <join_condition> WHERE <where_condition> GROUP ...
分类:
数据库 时间:
2020-11-24 12:33:32
阅读次数:
10
Dao层代码:@Overridepublic int findTotalCount(int cid,String rname) { //String sql = "select count(*) from tab_route where cid = ?"; //1.定义sql模板 String sq ...
分类:
数据库 时间:
2020-11-24 12:07:25
阅读次数:
8
靶场地址 http://59.63.200.79:8003/bluecms/uploads/ 百度查询了bluecms的相关漏洞 发现存在sql注入,且sql注入点在如下网页 http://59.63.200.79:8003/bluecms/uploads/ad_js.php?ad_id=1 经过探 ...
分类:
其他好文 时间:
2020-11-23 12:10:21
阅读次数:
4
如果直接写 select * from user where id <> 217;mybatis就会报语法错误,<>特殊字符需要转义 如下 select * from user where id <> 217; 使用Mybatis的时候,特殊字符需进行转义,如<> <>&am ...
分类:
数据库 时间:
2020-11-21 12:07:00
阅读次数:
13
SELECT LISTAGG(fun_getaaa103('AAE140', a.aae140), ',') WITHIN GROUP(ORDER BY a.aae140) AS aae140str FROM ac02 a where a.aac001 = '10002070436'; SELECT ...
分类:
其他好文 时间:
2020-11-20 12:07:47
阅读次数:
6
You are given a perfect binary tree where all leaves are on the same level, and every parent has two children. The binary tree has the following defin ...
分类:
其他好文 时间:
2020-11-20 12:00:39
阅读次数:
9
1. 查询工资高于1号部门平均工资的员工信息 select avg(sal) from emp where deptno=1; select * from emp where sal>2330; 合并上面两条SQL select * from emp where sal>(select avg(sa ...
分类:
其他好文 时间:
2020-11-20 11:37:51
阅读次数:
4
防止sql注入 char *sqlite3_mprintf(const char*,...); void sqlite3_free(void*); sqlite3_mprintf 用来代替sprintf 来防止sql注入。 sqlite3_mprintf的内部操作: ?会将%Q,替换成给定的字符串。 ...
分类:
数据库 时间:
2020-11-19 12:42:05
阅读次数:
11
##1.1 SAT SAT. Given a CNF formula Φ, does it have a satisfying truth assignment? 可满足性要求的是结果为TRUE! ###1.1.1 3-SAT SAT: where each clause contains exac ...
分类:
其他好文 时间:
2020-11-19 12:40:04
阅读次数:
9
JDBC四要素 user=root password=abc123 url=jdbc:mysql://localhost:3306/test driverClass=com.mysql.jdbc.Driver driverClass:加载注册驱动,注册已经默认实现 Class.forName(dri ...
分类:
数据库 时间:
2020-11-19 12:22:24
阅读次数:
53