mysql-airflow 在mysql上执行 create database airflow; —— 创建数据库 GRANT all privileges on airflow.* TO 'airflow'@'%' IDENTIFIED BY '123456'; —— 将数据库airflow的所有 ...
分类:
数据库 时间:
2019-10-31 01:15:02
阅读次数:
115
1.客户端运行ipconfig/all查询出mac地址2.在三层交换机上运行showmacaddressdynamicaddress00-21-97-0F-15-F6showcdpneighbors
分类:
系统相关 时间:
2019-10-30 18:33:06
阅读次数:
133
当数据的值为NULL的时候,可能出现各种意想不到的效果,让人防不胜防,我们来看看NULL导致的各种神坑,如何避免? 一、比较运算符中使用NULL 任何值和NULL使用运算符(>、<、>=、<=、!=、<>)或者(in、not in、any/some、all)比较时,返回值都为NULL,NULL作为布 ...
分类:
其他好文 时间:
2019-10-30 15:07:51
阅读次数:
107
/* * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. ... ...
分类:
编程语言 时间:
2019-10-30 13:17:39
阅读次数:
69
1.大小写绕过 这个大家都很熟悉,对于一些太垃圾的WAF效果显著,比如拦截了union,那就使用Union UnIoN等等绕过。 2.简单编码绕过 比如WAF检测关键字,那么我们让他检测不到就可以了。比如检测union,那么我们就用%55也就是U的16进制编码来代替U,union写成 %55nION ...
分类:
数据库 时间:
2019-10-30 13:13:23
阅读次数:
107
将多条select语句的结果,合并到一起,称为联合查询 使用union关键字 场景: 获取数据的条件,出现逻辑冲突,或者很难在一个逻辑内表示,就可以拆成多个逻辑,分别实现,最后将结果合并到一起 select语句 union (all 可选) select语句 如果union的结果又重复记录,会消除重 ...
分类:
其他好文 时间:
2019-10-30 11:45:06
阅读次数:
48
1068 Find More Coins (30 分) 1068 Find More Coins (30 分) 1068 Find More Coins (30 分) Eva loves to collect coins from all over the universe, including s ...
分类:
其他好文 时间:
2019-10-29 23:59:02
阅读次数:
192
Recently, Valery have come across an entirely new programming language. Most of all the language attracted him with template functions and procedures. ...
分类:
其他好文 时间:
2019-10-29 23:47:49
阅读次数:
94
```python class Pagination(object): def __init__(self,current_page,all_count,per_page_num=2,pager_count=11): """ 封装分页相关数据 :param current_page: 当前页 :pa... ...
分类:
其他好文 时间:
2019-10-29 22:03:39
阅读次数:
96
It is vitally important to have all the cities connected by highways in a war. If a city is occupied by the enemy, all the highways from/toward that c ...
分类:
其他好文 时间:
2019-10-29 13:38:19
阅读次数:
92