在开发中往往要用到类似下面的二维统计: a b type1 54 65 type2 54 54 在SQL中使用CASE WHEN 语句可以很轻松的实现: SELECT SUM(CASE WHEN type='type1' THEN 1 ELSE 0 END) AS a ,SUM(CASE WHEN type='type2' THEN 1 ELSE 0 END) AS b FROM Table1…
语音识别:科大讯飞语音云 http://www.xfyun.cn/ 语音机器人模拟 public class TalkBean { public String text; public boolean isAsk;// true表示提问,false是回答 public int imageId = -1;// 回答的图片id public TalkBean(String text, boolean isAsk, int imageId) { this.text = text; this.isAsk…