*ORDER BY 子句在SELECT语句的结尾。 使用外连接可以查询不满足连接条件的数据 with字句 字符函数lower upper initcap concat substr length instr lpad/rpad trim replace数字函数round trunc mod日期mon ...
分类:
数据库 时间:
2017-07-18 11:43:59
阅读次数:
209
Hadoop重新格式化后,仍然datanode启动失败,查看log: org.apache.hadoop.hdfs.server.datanode.DataNode: Java.io.IOException: Incompatible namespaceIDs in /home/admin/joe. ...
分类:
其他好文 时间:
2017-07-18 01:43:02
阅读次数:
161
select * from EMP where ENAME ='SMITH'; select ename || ' is a ' || job from emp; select distinct empno from emp; select * from emp where COMM>SAL; se... ...
分类:
其他好文 时间:
2017-07-17 13:19:30
阅读次数:
201
form here 用gdb 查看汇编代码, 采用disassemble 和 x 命令。 nexti, stepi 可以单步指令执行 如下例: 源代码: [root@hjj ~]# cat 1.c#include <stdio.h>int main(int argc, char *argv[]){ ...
分类:
编程语言 时间:
2017-07-16 13:32:39
阅读次数:
216
What Are Tango Poses? As your device moves through 3D space, it calculates where it is (position) and how it's rotated (orientation) up to 100 times p ...
分类:
其他好文 时间:
2017-07-16 12:39:00
阅读次数:
228
一、Sass的控制命令 二、Sass的函数功能 sass中除了可以定义变量,还自备了一系列函数功能,主要包括:字符串函数、数字函数、列表函数、颜色函数、Instrospection函数、三元函数等。当然,sass中也有自定义函数。 其中,最常使用的有:字符串函数、数字函数、列表函数、颜色函数。 Ma ...
分类:
其他好文 时间:
2017-07-15 16:53:44
阅读次数:
177
1.大写、小写、首字母大写其余小写(各个函数之间根据情况可以套用) 2.连接、截取、长度 3.字符串中指定字符的位置、填充、删除指定字符 4.数值函数:四舍五入,截取小数、取余数 5.日期函数(自行百度) ...
分类:
其他好文 时间:
2017-07-14 20:25:09
阅读次数:
158
Sub 筛选OutLook主题并转发() On Error Resume Next Dim OutApp As Application Set OutApp = Application Dim OutMail As MailItem Dim OneAccount As Account Dim Usi... ...
分类:
其他好文 时间:
2017-07-11 09:40:21
阅读次数:
235
转载自 http://blog.sina.com.cn/s/blog_ae40e7350102wnrs.html IndexOf()方法是用来判断一个字符串是否存在于一个更长的字符串中。从长字符串左端到右端来搜索,如果存在该子字符串就返回它所处的位置(即索引)。如果在被搜索的字符串没有找到要查找的字 ...
分类:
Web程序 时间:
2017-07-10 12:11:05
阅读次数:
202
开发过程中有可能会遇到很小的数字,在显示过程中就转换成了科学计数法,这种不利于人的观看,于是就有必要转成字符串形式的。so. 将科学计数法的数字转换成字符串: 使用的是java.math的BigDecimal: 显示结果: 亲测好使。。 ...
分类:
编程语言 时间:
2017-06-30 15:34:00
阅读次数:
222