2016年2月22日
摘要: 1. 分组:group by语句 group by必须跟在where子句里的条件之后,在order by之前(如果有的话),如下: select column1, column2 from table1, table2 where conditions group by column1, colum 阅读全文
posted @ 2016-02-22 21:35 MAY'S 阅读(182) 评论(0) 推荐(0) 编辑
  2016年2月21日
摘要: 基本的汇总函数包括: >>COUNT; >>SUM; >>MAX; >>MIN; >>AVG; 1. count函数 ALL是默认的,如果没有指定distinct,重复的行也被统计在内。distinct命令不能与count(*)一起使用,只能用于count(column_name) 2. 在使用汇总 阅读全文
posted @ 2016-02-21 18:57 MAY'S 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 概述 SQL里3个基本的数据操作语言(DML)命令是: >INSERT >UPDATE >DELECT 1. 用新数据填充表 1)数据插入表 insert into table_name values('value1','value2',[null]); 数值或者null值不用单引号包围,其他的都必 阅读全文
posted @ 2016-02-21 00:19 MAY'S 阅读(125) 评论(0) 推荐(0) 编辑
  2016年2月20日
摘要: 需要的文件如下: JDK:jdk-8u5-windows-x64.exe Selenium:selenium-java-2.39.0.jar、selenium-server-standalone-2.39.0.jar testng:testng-6.8.8.jar ANT:apache-ant-1. 阅读全文
posted @ 2016-02-20 22:30 MAY'S 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 1. 创建表 CREATE TABLE table_name( field1 data_type [not null], ... field5 data_type [not null], );例子:CREATE TABLE Student( Sno char(7) not null primary 阅读全文
posted @ 2016-02-20 22:12 MAY'S 阅读(226) 评论(0) 推荐(0) 编辑
  2014年3月13日
摘要: Snagit: Scrolling is not workingMike Spinkposted this on January 10, 2013 02:48 PMGeneral Scrolling Capture FailureFor a video on how to use the auto scroll, and some best practices,click here.Please try the following stepsto improve theScrolling Capturefunctionality and success rate.Open theMain Sn 阅读全文
posted @ 2014-03-13 09:05 MAY'S 阅读(455) 评论(0) 推荐(0) 编辑
  2014年3月8日
摘要: 1.Combine Captures In Snagit Editor, you can combine multiple image captures or objects together on the canvas. a. Open the images to combine in thetray. b. Click to select the image in the tray that you want to add the other image(s) to. c. Drag the other image from the tray onto the canvas... 阅读全文
posted @ 2014-03-08 17:47 MAY'S 阅读(167) 评论(0) 推荐(0) 编辑
  2014年2月18日
摘要: 第一步安装JDK JDk1.7.下载地址:http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html一路猛击‘下一步’,OK。安装完成后配置环境变量: JAVA_HOME = E:\Java\Java\jdk1.7.0_15 PATH = %JAVA_HOME%\bin CLASSPATH = .;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\lib\tools.jar配置完环境变量后,CMD命令行输入:java -version,返回如下结果,则表示安装成功:第 阅读全文
posted @ 2014-02-18 22:23 MAY'S 阅读(547) 评论(0) 推荐(0) 编辑
  2014年2月17日
摘要: 1. JDK 安装 (1)JDK 下载地址:http://www.oracle.com/technetwork/java/javase/downloads (32位操作系统选windows x86, 64位选windows) (2) 安装过程中会出现两次 安装提示 。第一次是安装 jdk ,第二次是安装 jre 。建议两个都安装在同一个java文件夹中的不同文件夹中。(不能都安装在java文件 夹的根目录下,jdk和jre安装在同一文件夹会出错).2.环境变量配置 安装完JDK后配置环境变量 计算机→属性→高级系统设置→高级→环境变量 系统变量→新建 JAVA_HOME ... 阅读全文
posted @ 2014-02-17 23:14 MAY'S 阅读(152) 评论(0) 推荐(0) 编辑