码迷,mamicode.com
首页 >  
搜索关键字:hive union all    ( 31352个结果
13-Hive字符函数
字符函数 函数返回值型 函数(参数) 描述 string base64(binary bin) 将二进制 bin 转换成 64 位的字符串 string concat(string|binary A, string|binary B...) 对二进制字节码或字符 串按次序进行拼接 array<str ...
分类:其他好文   时间:2021-02-10 13:05:47    阅读次数:0
14-HIve聚合函数
聚合函数 函数返回值型 函数(参数) 描述 BIGINT count(*), count(expr), count(DISTINCT expr[, expr...]) 1.统计总行数,包括含有 NULL 值的行 2.count(expr) 统计提 供非 NULL 的 expr 表达式 值的行数 3. ...
分类:其他好文   时间:2021-02-10 13:04:58    阅读次数:0
Typescript中Partial, Readonly, Record, Pick
源码 /** * Make all properties in T optional */ type Partial<T> = { [P in keyof T]?: T[P]; }; /** * Make all properties in T readonly */ type Readonly<T ...
分类:其他好文   时间:2021-02-10 12:59:56    阅读次数:0
梨子带你刷burp练兵场(burp Academy) - 服务器篇 - Sql注入 - SQL injection UNION attack, finding a column containing text
SQL injection UNION attack, finding a column containing text 首先判断列数,过程略,得知有三列,因为null与任何数据类型兼容,所以我们只需要一次改一个位置即可,先将第一个位置的null改成题目中给出的随机字符串 发现第一个位置不能存放字符 ...
分类:数据库   时间:2021-02-09 12:26:59    阅读次数:0
Hive的JDBC连接配置
首相要安装好hive 1.首先修改配置文件文件为hive 路径下的 conf/hive-sit.xml 将内容增加 <property> <name>hive.server2.thrift.port</name> <value>10000</value> <description>Port numb ...
分类:数据库   时间:2021-02-08 12:21:57    阅读次数:0
gcc/g++ 安全编码
安全编译: NX(堆栈不可执行): -z noexecstack SP(栈保护):-fstack-protector-all 或 -fstack-protector-strong BIND_NOW(立即绑定):-Wl,z,now 或 LD_BIND_NOW=1 RELRO(只读重定位):-Wl,-z ...
分类:其他好文   时间:2021-02-08 11:52:19    阅读次数:0
1239. Maximum Length of a Concatenated String with Unique Characters
问题: 给定一组字符串数组, 有这些字符串合并构成不存在重复字符的“集连字符串” 求该集连字符串最大长度。 Example 1: Input: arr = ["un","iq","ue"] Output: 4 Explanation: All possible concatenations are ...
分类:其他好文   时间:2021-02-06 12:15:04    阅读次数:0
修改用户权限、用户和用户组相关的命令
1.修改文件或目录权限 -- chmod ①文字设定法 chmod who [+、-、=] mode 文件名 who:u - user,文件所有者 g - group,文件所属组 o - others,其他人 a - all,所有人 +、-、=:增加、减少、覆盖 mode:r:读 w:写 x:执行 ...
分类:其他好文   时间:2021-02-06 12:02:08    阅读次数:0
pandas字符串一些操作
# In[1] import pandas as pd import numpy as np import json import os import re # In[2] # !pwd os.chdir('./root/FAQ/') # In[2] with open('./data/all_da ...
分类:其他好文   时间:2021-02-05 10:56:21    阅读次数:0
[转][Oracle]数据文件自动扩展
参考:http://www.voidcn.com/article/p-mckvczfj-ov.html 解决 Oracle 数据库文件自动扩展到 32G 后报错 ORA-01563 的问题 create or replace procedure auto_add_datafile is ALL_fi ...
分类:数据库   时间:2021-02-05 10:42:34    阅读次数:0
31352条   上一页 1 ... 25 26 27 28 29 ... 3136 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!