上一页 1 ··· 204 205 206 207 208 209 210 211 212 ··· 347 下一页
摘要: 在文件 batch.sql 中写下多个SQL文件source file1.SQLsource file2.SQLsource file3.SQL然后运行 source batch.sql 阅读全文
posted @ 2015-02-02 08:55 emanlee 阅读(5359) 评论(0) 推荐(0)
摘要: rm -rf /usr/local/MATLAB/R2012arm /usr/local/bin/matlab /usr/local/bin/mcc /usr/local/bin/mex /usr/local/bin/mbuild 阅读全文
posted @ 2015-02-01 21:30 emanlee 阅读(3850) 评论(0) 推荐(0)
摘要: # 显示总大小(/下全部文件占用大小)du -sh /* | sort -nr# 显示各文件夹的大小(当前文件夹下各文件夹的大小)du --max-depth=1 阅读全文
posted @ 2015-02-01 20:00 emanlee 阅读(2192) 评论(0) 推荐(0)
摘要: # sorting examples using the mtcars datasetattach(mtcars)# sort by mpgnewdata <- mtcars[order(mpg),]# sort by mpg and cylnewdata <- mtcars[order(mpg, 阅读全文
posted @ 2015-01-28 15:09 emanlee 阅读(3504) 评论(0) 推荐(0)
摘要: 出现错误:Jan 23, 2015 4:19:21 PM org.apache.catalina.core.StandardWrapperValve invokeSEVERE: Servlet.service() for servlet [DisplayChart] in context with ... 阅读全文
posted @ 2015-01-23 17:20 emanlee 阅读(1165) 评论(0) 推荐(0)
摘要: 实例 定义和用法shape 属性与 coords 属性配合,可以规定区域的尺寸、形状和位置。详细解释:shape 属性用于定义图像映射中对鼠标敏感的区域的形状:圆形(circ 或 circle)多边形(poly 或 polygon)矩形(rect 或 rectangle)shape 属性的... 阅读全文
posted @ 2015-01-22 16:10 emanlee 阅读(1092) 评论(0) 推荐(0)
摘要: HTML vertical text (Safari, Firefox, Chrome, and Opera).vText { -moz-transform: rotate(-90deg) translate(0, 100%); -moz-transform-origin: 0% 100%;... 阅读全文
posted @ 2015-01-22 15:25 emanlee 阅读(4976) 评论(0) 推荐(1)
摘要: CONVERT(expr USING transcoding_name)CONVERT(expr,type)类型必须用下列的类型:可用的类型 二进制,同带binary前缀的效果 : BINARY 字符型,可带参数 : CHAR() 日期 : DATE 时间: TIME 日期时间型 : D... 阅读全文
posted @ 2015-01-22 11:28 emanlee 阅读(940) 评论(0) 推荐(0)
摘要: mysql查询结果导出/输出/写入到文件方法一:直接执行命令:mysql> select count(1) fromtable into outfile'/tmp/test.xls';Query OK, 31 rows affected (0.00 sec)在目录/tmp/下会产生文件test.xl... 阅读全文
posted @ 2015-01-19 13:40 emanlee 阅读(123537) 评论(0) 推荐(4)
摘要: Solution 1: 修改1列 update student s, city c set s.city_name = c.name where s.city_code = c.code; Solution 2: 修改多个列 update a, b set a.title=b.title, a.na 阅读全文
posted @ 2015-01-18 17:16 emanlee 阅读(26670) 评论(0) 推荐(1)
上一页 1 ··· 204 205 206 207 208 209 210 211 212 ··· 347 下一页