三种方法:rpm,yum,源码包 安装rpm包 [root@lizhipeng01 Packages]# rpm -ivh zsh-5.0.2-7.el7.x86_64.rpm准备中... ################################# [100%]正在升级/安装... 1:zs ...
分类:
其他好文 时间:
2018-01-05 23:30:42
阅读次数:
296
course表 grade表 score表 student表 teacher表 1. 查询Student表中的所有记录的Sname、Ssex和Class列。select sname,ssex,class from student2.查询教师所有的单位即不重复的Depart列。select disti ...
分类:
其他好文 时间:
2018-01-04 18:17:20
阅读次数:
383
2.条件选取querySet的时候,filter表示=,exclude表示!=。 querySet.distinct() 去重复__exact 精确等于 like 'aaa' __iexact 精确等于 忽略大小写 ilike 'aaa' __contains 包含 like '%aaa%' __i ...
分类:
其他好文 时间:
2018-01-03 15:58:20
阅读次数:
145
RectMask2D 矩形2D遮罩 A RectMask2D is a masking control similar to the Mask control. The mask restricts the child elements to the rectangle of the parent ...
分类:
编程语言 时间:
2018-01-02 23:20:50
阅读次数:
1905
这个问题,原因是UTF-8编码有可能是两个、三个、四个字节。Emoji表情或者某些特殊字符是4个字节,而Mysql的utf8编码最多3个字节,所以数据插不进去。 我的解决方案是这样的 1.在mysql的安装目录下找到my.ini,作如下修改: [mysqld] character-set-serve ...
分类:
数据库 时间:
2018-01-02 21:14:20
阅读次数:
256
转自:http://blog.csdn.net/yazhouren/article/details/46643321 MMC(multiMedia card)是一种通信协议,支持两种模式SPI和MMC eMMC是一种支持MMC协议的芯片 MMC/e ?MMC communication is bas ...
分类:
其他好文 时间:
2018-01-02 19:56:32
阅读次数:
211
1, 分区 具体可见: http://blog.csdn.net/open_data/article/details/46893331 1, 分区类型: RANGE分区:基于属于一个给定连续区间的列值,把多行分配给分区。 LIST分区:类似于按RANGE分区,区别在于LIST分区是基于列值匹配一个离 ...
分类:
数据库 时间:
2018-01-02 19:54:37
阅读次数:
275
/ ****php常用函数 / 1、加密解密字符串 function encryptDecrypt($key, $string, $decrypt){ if($decrypt){ $decrypted = rtrim(mcrypt_decrypt(MCRYPT_RIJNDAEL_256, md5($ ...
分类:
Web程序 时间:
2018-01-02 13:16:02
阅读次数:
218
原理和简单推导(以三阶为例): 设P0、P02、P2是一条抛物线上顺序三个不同的点。过P0和P2点的两切线交于P1点,在P02点的切线交P0P1和P2P1于P01和P11,则如下比例成立: 这是所谓抛物线的三切线定理。 当P0,P2固定,引入参数t,令上述比值为t:(1-t),即有: t从0变到1, ...
分类:
其他好文 时间:
2018-01-02 11:44:05
阅读次数:
238
声明: 本实验均在H3C模拟器上进行,实际以组网需求为准 一、IKE野蛮模式及NAT穿越配置 1.组网图 2.组网需求 RAT在NAT网关内侧,要求在RTA与RTB之间建立IPSec隧道,对Host_1所在子网10.138.0.0/16和 Host_2所在子网10.139.0.0/16之间数据进行保 ...
分类:
其他好文 时间:
2018-01-01 17:07:52
阅读次数:
2015