IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> 【组件】JAVA解析SQL语句jsqlparser -> 正文阅读

[游戏开发]【组件】JAVA解析SQL语句jsqlparser

jsqlparser

依赖maven

        <!-- https://mvnrepository.com/artifact/com.github.jsqlparser/jsqlparser -->
        <dependency>
            <groupId>com.github.jsqlparser</groupId>
            <artifactId>jsqlparser</artifactId>
            <version>4.3</version>
        </dependency>

    public static void main(String[] args) throws Exception {


        String sql = """
                UPDATE
                 t1 q
                 SET q.name  = '张三'
                """;
//        sql = """
//DELETE t1 FROM t1,t2 WHERE t1.id=t2.id
//               """;

        Statement parse = CCJSqlParserUtil.parse(sql);
        //字典
        Dict tableMap = new Dict();
        Dict tableFullMap = new Dict();

        Table table = null;
        FromItem fromItem = null;
        List<Join> joins = null;
        List<Table> usingList = null;
        Expression where = null;
        if(parse instanceof Insert){
            log.info("增");
            Insert insert = (Insert) parse;
            table = insert.getTable();

        }else if(parse instanceof Delete){
            log.info("删");
            Delete delete = (Delete) parse;
            table = delete.getTable();
            joins = delete.getJoins();
            usingList = delete.getUsingList();
            where = delete.getWhere();

        }else if(parse instanceof Update){
            log.info("改");
            Update update = (Update) parse;
            table = update.getTable();
            joins = update.getJoins();
            fromItem = update.getFromItem();
            where = update.getWhere();

        }else if(parse instanceof Select){
            log.info("查");

        }


        if(table != null){
            log.info("表名:{}", table.getName());
            if(table.getAlias() != null){
                tableMap.set(table.getAlias().getName(), table.getName());
            }else{
                tableMap.set(table.getName(), table.getName());
            }
            tableFullMap.set(table.getName(), table);
        }

        if(fromItem != null){
            Table fromItemTable = (Table) fromItem; // table.getAlias().getName(), table.getName()
            log.info("fromItem表名:{}", fromItemTable.getName());
            if(fromItemTable.getAlias() != null){
                tableMap.set(fromItemTable.getAlias().getName(), fromItemTable.getName());
            }else{
                tableMap.set(fromItemTable.getName(), fromItemTable.getName());
            }
            tableFullMap.set(fromItemTable.getName(), fromItemTable);
        }

        /**
         * 联查
         */
        if(CollUtil.isNotEmpty(joins)){
            for (Join join : joins) {
                FromItem rightItem = join.getRightItem();
                Table table2 = (Table) rightItem; // (table.getAlias().getName(), table.getName());
                log.info("联查表:{}", table2.getName());
                if(table2.getAlias() != null){
                    tableMap.set(table2.getAlias().getName(), table2.getName());
                }else{
                    tableMap.set(table2.getName(), table2.getName());
                }
                tableFullMap.set(table2.getName(), table2);

                // on 条件分析   //和where一样
                Collection<Expression> onExpressions = join.getOnExpressions();
                for (Expression expression : onExpressions) {
//                EqualsTo equalsTo = (EqualsTo) expression;
                    if (expression instanceof Column) {
                        Column rightColumn = (Column) expression;
                        log.info("联查条件 ON,表名:{}, 字段名:{}, 关联条件:{}", tableMap.get(rightColumn.getTable().toString()), rightColumn.getColumnName());
                    }
                }
            }
        }


        // where 分析
        // where 只有两种情况,一种就是简单的a = b,另外就是 a = b or ... and, 这种就是AndExpression
        if(where != null){
            if (where instanceof EqualsTo) {
                EqualsTo equalsTo = (EqualsTo) where;
                Expression rightExpression = equalsTo.getRightExpression();
                Expression leftExpression = equalsTo.getLeftExpression();
                if (rightExpression instanceof Column) {
                    Column rightColumn = (Column) rightExpression;
                    log.info("条件 RIGHT,表名:{}, 字段名:{}, 值:{}", tableMap.get(rightColumn.getTable().toString()), rightColumn.getColumnName(), equalsTo.getRightExpression());
                }
                if (leftExpression instanceof Column) {
                    Column leftColumn = (Column) leftExpression;
                    log.info("条件 LEFT,表名:{}, 字段名:{}, 值:{}", tableMap.get(leftColumn.getTable().toString()), leftColumn.getColumnName(), equalsTo.getRightExpression());
                }
            }else if(where instanceof AndExpression){
                AndExpression andExpression = (AndExpression) where;
                Expression leftExpression = andExpression.getLeftExpression();
//            doExpression(leftExpression);
                Expression rightExpression = andExpression.getRightExpression();
//            doExpression(rightExpression);
            }
        }

        /**
         * usingList
         */
        if(CollUtil.isNotEmpty(usingList)){
            for (Table table2 : usingList) {

                if(table2.getAlias() != null){
                    tableMap.set(table2.getAlias().getName(), table2.getName());
                }else{
                    tableMap.set(table2.getName(), table2.getName());
                }
                log.info("using表名:{}", table2.getName());

            }
        }

//        System.out.println(parse);
//
//        // 使用工具类把SQL转换为Select对象
//        Select select = (Select) CCJSqlParserUtil.parse("""
//                 SELECT
//                                       *
//                                        FROM
//                                        user u
//                """);
//
//        SelectBody selectBody = select.getSelectBody();
//        PlainSelect plainSelect = (PlainSelect) selectBody;


    }

工具



import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.lang.Dict;
import lombok.extern.slf4j.Slf4j;
import net.sf.jsqlparser.JSQLParserException;
import net.sf.jsqlparser.expression.Expression;
import net.sf.jsqlparser.parser.CCJSqlParserUtil;
import net.sf.jsqlparser.schema.Table;
import net.sf.jsqlparser.statement.Statement;
import net.sf.jsqlparser.statement.delete.Delete;
import net.sf.jsqlparser.statement.insert.Insert;
import net.sf.jsqlparser.statement.select.FromItem;
import net.sf.jsqlparser.statement.select.Join;
import net.sf.jsqlparser.statement.select.Select;
import net.sf.jsqlparser.statement.update.Update;

import java.util.HashSet;
import java.util.List;
import java.util.Set;

@Slf4j
public class SqlUtil {


    /**
     * 通过sql 解析出涉及到的表
     * @param sql
     * @return
     * @throws Exception
     */
    public static Set<String> getSqlTables(String sql) {


//        String sql = """
//                UPDATE
//                 user u
//                 SET u.name  = '张三'
//                """;
//        sql = """
//DELETE t1 FROM t1,t2 WHERE t1.id=t2.id
//               """;

        Set<String> tables = new HashSet<>();

        Statement parse = null;
        try {
            parse = CCJSqlParserUtil.parse(sql);
        } catch (JSQLParserException e) {
            e.printStackTrace();
            return tables;
        }
        //字典
        Dict tableMap = new Dict();
        Dict tableFullMap = new Dict();

        Table table = null;
        FromItem fromItem = null;
        List<Join> joins = null;
        List<Table> usingList = null;
        Expression where = null;
        if(parse instanceof Insert){
            log.info("增");
            Insert insert = (Insert) parse;
            table = insert.getTable();

        }else if(parse instanceof Delete){
            log.info("删");
            Delete delete = (Delete) parse;
            table = delete.getTable();
            joins = delete.getJoins();
            usingList = delete.getUsingList();
            where = delete.getWhere();

        }else if(parse instanceof Update){
            log.info("改");
            Update update = (Update) parse;
            table = update.getTable();
            joins = update.getJoins();
            fromItem = update.getFromItem();
            where = update.getWhere();

        }else if(parse instanceof Select){
//            log.info("查");

        }


        if(table != null){
//            log.info("表名:{}", table.getName());
//            if(table.getAlias() != null){
//                tableMap.set(table.getAlias().getName(), table.getName());
//            }else{
//                tableMap.set(table.getName(), table.getName());
//            }
//            tableFullMap.set(table.getName(), table);
            tables.add(table.getName());
        }

        if(fromItem != null){
            Table fromItemTable = (Table) fromItem; // table.getAlias().getName(), table.getName()
//            log.info("fromItem表名:{}", fromItemTable.getName());
//            if(fromItemTable.getAlias() != null){
//                tableMap.set(fromItemTable.getAlias().getName(), fromItemTable.getName());
//            }else{
//                tableMap.set(fromItemTable.getName(), fromItemTable.getName());
//            }
//            tableFullMap.set(fromItemTable.getName(), fromItemTable);
            tables.add(fromItemTable.getName());
        }

        /**
         * 联查
         */
        if(CollUtil.isNotEmpty(joins)){
            for (Join join : joins) {
                FromItem rightItem = join.getRightItem();
                Table table2 = (Table) rightItem; // (table.getAlias().getName(), table.getName());
//                log.info("联查表:{}", table2.getName());
//                if(table2.getAlias() != null){
//                    tableMap.set(table2.getAlias().getName(), table2.getName());
//                }else{
//                    tableMap.set(table2.getName(), table2.getName());
//                }
//                tableFullMap.set(table2.getName(), table2);
                tables.add(table2.getName());

                // on 条件分析   //和where一样
//                Collection<Expression> onExpressions = join.getOnExpressions();
//                for (Expression expression : onExpressions) {
                EqualsTo equalsTo = (EqualsTo) expression;
//                    if (expression instanceof Column) {
//                        Column rightColumn = (Column) expression;
//                        log.info("联查条件 ON,表名:{}, 字段名:{}, 关联条件:{}", tableMap.get(rightColumn.getTable().toString()), rightColumn.getColumnName());
//                    }
//                }
            }
        }


        // where 分析
        // where 只有两种情况,一种就是简单的a = b,另外就是 a = b or ... and, 这种就是AndExpression
//        if(where != null){
//            if (where instanceof EqualsTo) {
//                EqualsTo equalsTo = (EqualsTo) where;
//                Expression rightExpression = equalsTo.getRightExpression();
//                Expression leftExpression = equalsTo.getLeftExpression();
//                if (rightExpression instanceof Column) {
//                    Column rightColumn = (Column) rightExpression;
//                    log.info("条件 RIGHT,表名:{}, 字段名:{}, 值:{}", tableMap.get(rightColumn.getTable().toString()), rightColumn.getColumnName(), equalsTo.getRightExpression());
//                }
//                if (leftExpression instanceof Column) {
//                    Column leftColumn = (Column) leftExpression;
//                    log.info("条件 LEFT,表名:{}, 字段名:{}, 值:{}", tableMap.get(leftColumn.getTable().toString()), leftColumn.getColumnName(), equalsTo.getRightExpression());
//                }
//            }else if(where instanceof AndExpression){
//                AndExpression andExpression = (AndExpression) where;
//                Expression leftExpression = andExpression.getLeftExpression();
            doExpression(leftExpression);
//                Expression rightExpression = andExpression.getRightExpression();
            doExpression(rightExpression);
//            }
//        }

        /**
         * usingList
         */
        if(CollUtil.isNotEmpty(usingList)){
            for (Table table2 : usingList) {

//                if(table2.getAlias() != null){
//                    tableMap.set(table2.getAlias().getName(), table2.getName());
//                }else{
//                    tableMap.set(table2.getName(), table2.getName());
//                }
//                log.info("using表名:{}", table2.getName());
                tables.add(table2.getName());

            }
        }

//        System.out.println(parse);
//
//        // 使用工具类把SQL转换为Select对象
//        Select select = (Select) CCJSqlParserUtil.parse("""
//                 SELECT
//                                       *
//                                        FROM
//                                        user u
//                """);
//
//        SelectBody selectBody = select.getSelectBody();
//        PlainSelect plainSelect = (PlainSelect) selectBody;

        return tables;
    }

}

  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2022-03-17 22:31:30  更:2022-03-17 22:31:57 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年1日历 -2025/1/16 16:56:50-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码