1.Convert转成String,在用Like查询。select * from table1 where convert(varchar,date,120) like '2006-04-01%' 2.Betweenselect * from table1 where time between '2 ...
分类:
数据库 时间:
2020-09-15 21:21:50
阅读次数:
40
When I am doing a test of comparison between Stateful and Stateless BSP application ( mentioned in blog Stateless and Stateful – Different behavior in ...
盲注时绕过过滤方法 一、=被过滤 1、可以使用通配符like或者REGEXP 比如想要查询id为8的数据一般会使用select * from users where id=8; 等于被过滤的话可以使用 或者<、> 或者!(<>)不不等于 使用between 二、引号被过滤 使用十六进制 把单引号的内 ...
分类:
其他好文 时间:
2020-08-27 11:46:24
阅读次数:
57
用于记录SQL SERVER常用语法,以及内置函数。 以下语句包含: WITH 临时表语法 ROW_NUMBER()内置函数,我一般主要是用来分页。针对于查出来的所有数据做一个数字排序 分页的BETWEEN AND 我也主要是用于分页使用。 WITH tab AS ( SELECT ROW_NUMB ...
分类:
数据库 时间:
2020-08-10 14:34:07
阅读次数:
75
SQL 教程 高级教程 函数 //教程//简介//语法//SELECT//SELECT DISTINCT//WHERE//AND & OR//ORDER BY//INSERT INTO//UPDATE//DELETE //SELECT TOP//LIKE//通配符//IN//BETWEEN//别名/ ...
分类:
数据库 时间:
2020-07-29 17:48:54
阅读次数:
89
ORM单表操作 类 表类对象 一行数据类属性 字段 增 创建记录方式1 student_obj = models.Student( name='dazhaung', age=23, ) student_obj.save() 创建记录方式2 new_obj = models.Student.objec ...
分类:
其他好文 时间:
2020-07-28 10:01:33
阅读次数:
63
一、简介 在每个节点(driver和executor)上运行的管理器,该接口提供用于在本地和远程将block放置和检索到各种存储(内存,磁盘和堆外)的接口。 二、源码 private[spark] class BlockManager( executorId: String, rpcEnv: Rpc ...
分类:
其他好文 时间:
2020-07-27 23:41:12
阅读次数:
73
/etc/login.defs 是设置用户帐号限制的文件。该文件里的配置对root用户无效。优先级低于/etc/shadow里面的配置。 使用vim打开文件 [root@localhost ~]# vim /etc/login.defs # # Please note that the parame ...
分类:
其他好文 时间:
2020-07-26 22:56:50
阅读次数:
65
题目描述 The task is really simple: given N exits on a highway which forms a simple cycle, you are supposed to tell the shortest distance between any pair ...
分类:
其他好文 时间:
2020-07-26 15:22:02
阅读次数:
59
A tree is a well-known data structure that is either empty (null, void, nothing) or is a set of one or more nodes connected by directed edges between ...
分类:
其他好文 时间:
2020-07-26 02:05:42
阅读次数:
102