import java.util.ArrayList; import java.util.HashMap; import java.util.IdentityHashMap; import java.util.List; import java.util.Map; import java.util.Map.Entry; import org.apache.commons.lang3.StringUtils; public class SQLQueryUtil { private static final long serialVersionUID = -4008847394285279230L; private static String USE_JDBC_DRIVER = "mysql"; /** * main() * * @param args */ public static void main(String[] args) { SQLQueryUtil util = new SQLQueryUtil(); util.addTable("mydb.user","mydb.user"); util.addTable("mydb.group", "mydb.group"); util.addColumn("SUM(group.name)","sum_name"); util.addColumn("COUNT(group.name)","count_name"); util.addColumn("user.name", "user_name"); util.addAndCondition("user.id", RelationalOperators.EQ, "123", ValueType.NUMBER); //util.addAndInCondition("user_age", "'x','x','x','x','x'"); //util.addOrLikeCondition("like", "yyyy"); util.addGroupBy("group.name"); util.addAscOrderBy("create_time"); util.addDescOrderBy("user.id"); System.out.println(util.toSQL()); } /** * 日期格式化字符串 如:2013-06-20 */ public static final String FMT_DATE = "yyyy-MM-dd"; /** * 时间格式化字符串 如:13:01:01 */ public static final String FMT_TIME = "HH:mm:ss"; /** * 日期时间格式化字符串 如:2013-06-20 13:01:01 */ public static final String FMT_DATETIME = "yyyy-MM-dd HH:mm:ss"; /** * 逻辑运算 * * @author Vity * */ public enum LogicalOperators { AND("AND"), OR("OR"); private String value; private LogicalOperators(String value) { this.value = value; } public String toString() { return new String(this.value); } } /** * 关系运算 * * <p> * EQ("="), NE("<>"), GT(">"), GE(">="), LT("<"), LE("<=") * </p> * * @author Vity * */ public enum RelationalOperators { EQ("="), NE("<>"), GT(">"), GE(">="), LT("<"), LE("<="); private String value; private RelationalOperators(String value) { this.value = value; } public String toString() { return this.value; } } /** * 排序方式 * * @author Vity * */ public enum SortMethod { ASC("ASC"), DESC("DESC"); private String value; private SortMethod(String value) { this.value = value; } public String toString() { return this.value; } } /** * 值类型 * * @author Vity * */ public enum ValueType { NUMBER, DATE, STRING, TIME, DATETIME } /** * 内置表别名前缀 */ private final String TABLE_ALIAS_NAME = "TEMP_TABLE_ALIAS_"; /** * 内置表别名索引 */ private int TABLE_ALIAS_INDEX = 0; /** * 是否调试模式 非调试模式则不打印SQL语句 */ private boolean isDebug = true; /** * 是否去重 */ private boolean isDistinct = false; /** * 表名及别名集合 key : table & view name | value : alias name * <p> * <b>注意:</b>目前不支持重复表查询 * </p> */ private Map<String, String> tableMap = new HashMap<String, String>(); /** * 待查列名集合 key : column name value : | alias name */ private Map<String, String> columnMap = new HashMap<String, String>(); /** * 查询条件集合 key : and & or | value 条件值 */ private Map<String, String> conditionMap = new IdentityHashMap<String, String>(); /** * 排序条件集合 */ private Map<String, String> orderMap = new HashMap<String, String>(); /** * 分组集合 */ private List<String> groupList = new ArrayList<String>(); /** * sql生成结果 */ private StringBuilder sqlResult = new StringBuilder(); /** * 追加字符串,在后面添加一个空格 * * @param string * @return */ private SQLQueryUtil append(String string) { sqlResult.append(string).append(" "); return this; } /** * 删除最后两位字符串 * * @return */ private SQLQueryUtil clearEndChar() { sqlResult.delete(sqlResult.length() - 2, sqlResult.length()); return this; } /** * 生成SQL语句 * * @return */ public String toSQL() { if (tableMap.isEmpty()) { //throw new Exception("Failure", "未发现表或视图"); } this.append("SELECT"); if (isDistinct) { this.append("DISTINCT"); } if (columnMap.isEmpty()) { this.append("*"); } else { for (String key : columnMap.keySet()) { this.append(key); if (!StringUtils.isBlank(columnMap.get(key))) { this.append("AS").append(columnMap.get(key)); } this.append(","); } this.clearEndChar(); } this.append("FROM"); for (String key : tableMap.keySet()) { this.append(key); if (!StringUtils.isBlank(tableMap.get(key))) { this.append("AS").append(tableMap.get(key)); } this.append(","); } this.clearEndChar().append(" "); if (!groupList.isEmpty()) { this.append("GROUP BY"); for (String field : groupList) { this.append(field).append(","); } this.clearEndChar(); } if (!conditionMap.isEmpty()) { if (!groupList.isEmpty()) { this.append("HAVING"); } else { this.append("WHERE"); } this.append("1 = 1"); for (Entry<String, String> entry : conditionMap.entrySet()) { this.append(entry.getKey()).append(entry.getValue()); } } if (!orderMap.isEmpty()) { this.append("ORDER BY"); for (String key : orderMap.keySet()) { this.append(key).append(orderMap.get(key)).append(","); } this.clearEndChar(); } if (isDebug) { //logger.trace(sqlResult.toString().replace(" ,", ",").replace(" ", " ").replace(" 1 = 1 AND", "").replace(" 1 = 1 OR", "")); } return sqlResult.toString().replace(" ,", ",").replace(" ", " ").replace(" 1 = 1 AND", "").replace(" 1 = 1 OR", ""); } /** * 设置 是否Distinct查询 * * @param isDistinct */ public void setDistinct(boolean isDistinct) { this.isDistinct = isDistinct; } /** * 添加待查询的表或视图名称 * * @param tableName * @return */ public SQLQueryUtil addTable(String tableName) { tableMap.put(tableName, TABLE_ALIAS_NAME + TABLE_ALIAS_INDEX++); return this; } /** * 添加待查询的表或视图名称,并指定别名 * * @param tableName * @param aliasName * @return */ public SQLQueryUtil addTable(String tableName, String aliasName) { if (aliasName.contains(TABLE_ALIAS_NAME)) { //throw new AppException(ResultCode.Failure, "不能使用这个别名前缀:" + TABLE_ALIAS_NAME); } tableMap.put(tableName, aliasName); return this; } /** * 添加待查列 * * @param columnName * @return */ public SQLQueryUtil addColumn(String columnName) { return this.addColumn(columnName, ""); } /** * 添加待查列,并指定别名 * * @param columnName * @param aliasName * @return */ public SQLQueryUtil addColumn(String columnName, String aliasName) { columnMap.put(columnName, aliasName); return this; } /** * 添加查询条件 * * <p> * <span>针对日期类型查询的说明</span> <div> * 日期查询必须将查询值按照本类提供的格式化字符串进行格式化,并指定相应的ValueType </div> * </p> * * @param logicalOperators * @param cKey * @param relationalOperators * @param cValue * @param valueType * @return */ private SQLQueryUtil addCondition(LogicalOperators logicalOperators, String cKey, RelationalOperators relationalOperators, String cValue, ValueType valueType) { switch (valueType) { case STRING: conditionMap.put(logicalOperators.toString(), cKey.concat(" ").concat(relationalOperators.toString()).concat(" '").concat(cValue).concat("'")); break; case NUMBER: conditionMap.put(logicalOperators.toString(), cKey.concat(" ").concat(relationalOperators.toString()).concat(" ").concat(cValue)); break; default: conditionMap.put(logicalOperators.toString(), this.getDateTimeQuery(cKey, relationalOperators, cValue, valueType)); break; } return this; } /** * 目前仅支持 Oracle, MySQL ; 日期查询生成 其他数据库方式请根据需要自行扩展 */ private String getDateTimeQuery(String cKey, RelationalOperators ro, String cValue, ValueType vt) { if (USE_JDBC_DRIVER.toLowerCase().contains("oracle")) { switch (vt) { case DATE: return "to_char(".concat(cKey).concat(",'yyyy-mm-dd')").concat(ro.toString()).concat("'").concat(cValue).concat("'"); case TIME: return "to_char(".concat(cKey).concat(",'hh24:mi:ss')").concat(ro.toString()).concat("'").concat(cValue).concat("'"); case DATETIME: return "to_char(".concat(cKey).concat(",'yyyy-mm-dd hh24:mi:ss')").concat(ro.toString()).concat("'").concat(cValue).concat("'"); default: break; } } else if (USE_JDBC_DRIVER.toLowerCase().contains("mysql")) { switch (vt) { case DATE: return cKey.concat(ro.toString()).concat("UNIX_TIMESTAMP('").concat(cValue).concat(" 00:00:00')"); case TIME: //throw new AppException(ResultCode.Failure, "暂不支持MySQL某段时间内查询,请确认日期后使用 ValueType.DATETIME 查询"); case DATETIME: return cKey.concat(ro.toString()).concat("UNIX_TIMESTAMP('").concat(cValue).concat("')"); default: break; } } return cKey.concat(" ").concat(ro.toString()).concat(" \"").concat(cValue).concat("\""); } private SQLQueryUtil addLikeCondition(LogicalOperators logicalOperators, String cKey, String cValue) { if (cValue.contains("%")) { conditionMap.put(logicalOperators.toString(), cKey.concat(" LIKE \"").concat(cValue).concat("\"")); } else { conditionMap.put(logicalOperators.toString(), cKey.concat(" LIKE \"%").concat(cValue).concat("%\"")); } return this; } private SQLQueryUtil addInCondition(LogicalOperators logicalOperators, String cKey, String cValue) { conditionMap.put(logicalOperators.toString(), cKey.concat(" IN ( ").concat(cValue).concat(" )")); return this; } private SQLQueryUtil addNotInCondition(LogicalOperators logicalOperators, String cKey, String cValue) { conditionMap.put(logicalOperators.toString(), cKey.concat(" NOT IN ( ").concat(cValue).concat(" )")); return this; } private SQLQueryUtil addOrderBy(String orderField, SortMethod sortMethod) { orderMap.put(orderField, sortMethod.toString()); return this; } /** * 添加分组字段 * * @param groupField * @return */ public SQLQueryUtil addGroupBy(String groupField) { groupList.add(groupField); return this; } /** * 添加 AND查询条件 * * @param cKey * @param relationalOperators * @param cValue * @param valueType * @return */ public SQLQueryUtil addAndCondition(String cKey, RelationalOperators relationalOperators, String cValue, ValueType valueType) { return this.addCondition(LogicalOperators.AND, cKey, relationalOperators, cValue, valueType); } /** * 添加 OR查询条件 * * @param cKey * @param relationalOperators * @param cValue * @param valueType * @return */ public SQLQueryUtil addOrCondition(String cKey, RelationalOperators relationalOperators, String cValue, ValueType valueType) { return this.addCondition(LogicalOperators.OR, cKey, relationalOperators, cValue, valueType); } /** * 添加 AND LIKE 查询条件 * * @param cKey * @param cValue * @return */ public SQLQueryUtil addAndLikeCondition(String cKey, String cValue) { return this.addLikeCondition(LogicalOperators.AND, cKey, cValue); } /** * 添加 OR LIKE 查询条件 * * @param cKey * @param cValue * @return */ public SQLQueryUtil addOrLikeCondition(String cKey, String cValue) { return this.addLikeCondition(LogicalOperators.OR, cKey, cValue); } /** * 添加 AND IN 查询条件 * * @param cKey * @param cValue * @return */ public SQLQueryUtil addAndInCondition(String cKey, String cValue) { return this.addInCondition(LogicalOperators.AND, cKey, cValue); } /** * 添加 OR IN 查询条件 * * @param cKey * @param cValue * @return */ public SQLQueryUtil addOrInCondition(String cKey, String cValue) { return this.addInCondition(LogicalOperators.OR, cKey, cValue); } /** * 添加 AND NOT IN 查询条件 * * @param cKey * @param cValue * @return */ public SQLQueryUtil addAndNotInCondition(String cKey, String cValue) { return this.addNotInCondition(LogicalOperators.AND, cKey, cValue); } /** * 添加 OR NOT IN 查询条件 * * @param cKey * @param cValue * @return */ public SQLQueryUtil addOrNotInCondition(String cKey, String cValue) { return this.addNotInCondition(LogicalOperators.OR, cKey, cValue); } /** * 添加正向排序字段 * * @param orderField * @return */ public SQLQueryUtil addAscOrderBy(String orderField) { return this.addOrderBy(orderField, SortMethod.ASC); } /* * 添加逆向排序字段 */ public SQLQueryUtil addDescOrderBy(String orderField) { return this.addOrderBy(orderField, SortMethod.DESC); } /** * 清除待查表和视图 * * @return */ public SQLQueryUtil clearTable() { tableMap.clear(); return this; } /** * 清除待查列 * * @return */ public SQLQueryUtil clearColumn() { columnMap.clear(); return this; } /** * 清除查询条件 * * @return */ public SQLQueryUtil clearCondition() { conditionMap.clear(); return this; } /** * 清除排序条件 * * @return */ public SQLQueryUtil clearOrder() { orderMap.clear(); return this; } /** * 清除分组列 * * @return */ public SQLQueryUtil clearGroup() { groupList.clear(); return this; } }
相关推荐
电子商务之价格优化算法:梯度下降:机器学习在价格优化中的角色.docx
ToadforOracle与Oracle数据库版本兼容性教程.docx
360浏览器银河麒麟版 for X86 适配兆芯 / 海光 / intel / AMD CPU
使用React.js构建,提供多种主题可供选择,并且易于定制。该项目旨在帮助开发者和自由职业者创建自己的个性化投资组合。 主要功能点 多种主题可供选择,包括绿色、黑白、蓝色、红色、橙色、紫色、粉色和黄色 易于定制,可以在src/data文件夹中更新个人信息 包含主页、关于、简历、教育、技能、经验、项目、成就、服务、推荐信、博客和联系等多个部分 支持通过Google表单收集联系信息 提供SEO优化建议 支持多种部署方式,如Netlify、Firebase、Heroku和GitHub Pages 技术栈主要 React.js Material-UI Axios React-fast-marquee React-helmet React-icons React-reveal React-router-dom React-router-hash-link React-slick Slick-carousel Validator
中小型企业财务管理系统 SSM毕业设计 附带论文 启动教程:https://www.bilibili.com/video/BV1GK1iYyE2B
python whl离线安装包 pip安装失败可以尝试使用whl离线安装包安装 第一步 下载whl文件,注意需要与python版本配套 python版本号、32位64位、arm或amd64均有区别 第二步 使用pip install XXXXX.whl 命令安装,如果whl路径不在cmd窗口当前目录下,需要带上路径 WHL文件是以Wheel格式保存的Python安装包, Wheel是Python发行版的标准内置包格式。 在本质上是一个压缩包,WHL文件中包含了Python安装的py文件和元数据,以及经过编译的pyd文件, 这样就使得它可以在不具备编译环境的条件下,安装适合自己python版本的库文件。 如果要查看WHL文件的内容,可以把.whl后缀名改成.zip,使用解压软件(如WinRAR、WinZIP)解压打开即可查看。 为什么会用到whl文件来安装python库文件呢? 在python的使用过程中,我们免不了要经常通过pip来安装自己所需要的包, 大部分的包基本都能正常安装,但是总会遇到有那么一些包因为各种各样的问题导致安装不了的。 这时我们就可以通过尝试去Python安装包大全中(whl包下载)下载whl包来安装解决问题。
电子商务之价格优化算法:线性回归:价格优化策略实施.docx
内容概要:报告详细介绍了企业数字化转型的驱动因素、数字化转型方案分类及其应用场景,重点关注了云计算、超连接、数字孪生、人工智能、分布式账本、增材制造、人机接口、数据共享、工业物联网等关键技术。这些技术不仅支持了企业的运营效率提升和业务模式创新,也为实现更快、更开放、更高效的数字化转型提供了支撑。报告最后提出了企业实施数字化转型的六个步骤。 适合人群:企业高级管理人员、技术人员、咨询顾问,以及对工业数字化转型感兴趣的读者。 使用场景及目标:帮助企业制定和实施数字化转型策略,优化运营模式,提升业务效率,增强市场竞争力。同时,也可作为政府部门、研究机构和行业协会的参考文献。 其他说明:报告中提到的关键技术及其应用场景对企业数字化转型具有重要的指导意义,特别是对于那些希望通过数字化转型实现业务创新和升级的企业。
基于java的线上选课系统的设计与实现答辩PPT.pptx
安装前的准备 1、安装Python:确保你的计算机上已经安装了Python。你可以在命令行中输入python --version或python3 --version来检查是否已安装以及安装的版本。 个人建议:在anaconda中自建不同python版本的环境,方法如下(其他版本照葫芦画瓢): 比如创建python3.8环境,anaconda命令终端输入:conda create -n py38 python==3.8 2、安装pip:pip是Python的包管理工具,用于安装和管理Python包。你可以通过输入pip --version或pip3 --version来检查pip是否已安装。 安装WHL安装包 1、打开命令行(或打开anaconda命令行终端): 在Windows上,你可以搜索“cmd”或“命令提示符”并打开它。 在macOS或Linux上,你可以打开“终端”。 2、cd到whl文件所在目录安装: 使用cd命令导航到你下载的whl文件所在的文件夹。 终端输入:pip install xxx.whl安装即可(xxx.whl指的是csdn下载解压出来的whl) 3、等待安装完成: 命令行会显示安装进度,并在安装完成后返回提示符。 以上是简单安装介绍,小白也能会,简单好用,从此再也不怕下载安装超时问题。 使用过程遇到问题可以私信,我可以帮你解决! 收起
电子商务之价格优化算法:贝叶斯定价:贝叶斯网络在电子商务定价中的应用.docx
IMG_20241105_235746.jpg
基于java的毕业设计选题系统答辩PPT.pptx
专升本考试资料全套.7z
Trustwave DbProtect:数据库活动监控策略制定.docx
基于VB的程序实例,可供参考学习使用
本压缩包资源说明,你现在往下拉可以看到压缩包内容目录 我是批量上传的基于SpringBoot+Vue的项目,所以描述都一样;有源码有数据库脚本,系统都是测试过可运行的,看文件名即可区分项目~ |Java|SpringBoot|Vue|前后端分离| 开发语言:Java 框架:SpringBoot,Vue JDK版本:JDK1.8 数据库:MySQL 5.7+(推荐5.7,8.0也可以) 数据库工具:Navicat 开发软件: idea/eclipse(推荐idea) Maven包:Maven3.3.9+ 系统环境:Windows/Mac
该源码项目是一款基于Thinkphp5框架的Java插件设计,包含114个文件,其中Java源文件60个,PNG图片32个,XML配置文件7个,GIF图片7个,Git忽略文件1个,LICENSE文件1个,Markdown文件1个,Xmind文件1个,Idea项目文件1个,以及JAR文件1个。
数据库开发和管理最佳实践.pdf
本压缩包资源说明,你现在往下拉可以看到压缩包内容目录 我是批量上传的基于SpringBoot+Vue的项目,所以描述都一样;有源码有数据库脚本,系统都是测试过可运行的,看文件名即可区分项目~ |Java|SpringBoot|Vue|前后端分离| 开发语言:Java 框架:SpringBoot,Vue JDK版本:JDK1.8 数据库:MySQL 5.7+(推荐5.7,8.0也可以) 数据库工具:Navicat 开发软件: idea/eclipse(推荐idea) Maven包:Maven3.3.9+ 系统环境:Windows/Mac