在mybatis的学习中,狂神建议字符串匹配直接将模糊匹配的符号放在字符串中,如:匹配'keWord',那么实际所使用的参数应该为'%keyWord%' map.put("keyWord","%" + keyWord + "%"); <select id="getUserLikeGaojianLis ...
分类:
数据库 时间:
2020-08-09 09:24:19
阅读次数:
109
linq中的join是inner join内连接,就是当两个表中有一个表对应的数据没有的时候那个关联就不成立。 比如表A B的数据如下 from a in A join b in B on a.BId equals b.Idselect new {a.Id, b.Id} 的结果是 {1,1} {2, ...
分类:
其他好文 时间:
2020-08-08 10:36:02
阅读次数:
96
(1)一个典型的渐进问题 证明:\(n\rightarrow \infty时\) \(\sum_{k=0}^n \frac{n^k}{k!}=\frac{n^n}{2n!}\left\{\sqrt{2\pi n}+\frac{4}{3}+\frac{\sqrt{2\pi}}{12\sqrt{n}}- ...
分类:
其他好文 时间:
2020-08-07 00:32:44
阅读次数:
99
.selected{ border-color: #5FB878; } .selected:after { content: ""; position: absolute; top: 0; right: 0; border-top: 30px solid #5FB878; border-left: ...
分类:
Web程序 时间:
2020-08-06 19:30:10
阅读次数:
99
题目描述: 给定一个二叉树,返回它的中序 遍历。 输入: [1,null,2,3] 1 \ 2 / 3 输出: [1,3,2] //go //* Definition for a binary tree node. type TreeNode struct { Val int Left *TreeN ...
分类:
其他好文 时间:
2020-08-06 09:31:39
阅读次数:
66
Less-5 字符型_单引号_盲注 0x01 left() left(database(),1) #left(a,b)截取字符串a的自左向右的b个字符 ?id=1' and left(version(),1)=5--+ 判断版本号第一个是否为5,若是,则youarein 若不是,则 查看数据库长度, ...
分类:
其他好文 时间:
2020-08-05 23:26:08
阅读次数:
87
现在写法: display: flex;flex-direction: row;justify-content: center;align-items: center; 对应旧的写法:display: -webkit-flex;-webkit-flex-direction: row;-webkit- ...
分类:
其他好文 时间:
2020-08-05 19:41:56
阅读次数:
71
#画国旗importturtleturtle.speed(5)turtle.setup(800,600)turtle.pensize(6)turtle.pencolor("brown")turtle.penup()turtle.goto(-350,-300)turtle.pendown()turtle.left(90)turtle.forward(50)turtle.right
分类:
其他好文 时间:
2020-08-02 22:25:45
阅读次数:
106
前序遍历+重赋值 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode() {} * TreeNode(i ...
分类:
其他好文 时间:
2020-08-02 17:34:21
阅读次数:
91