[improvement] remove number condition (#375)

This commit is contained in:
mainmain
2023-11-13 19:52:18 +08:00
committed by GitHub
parent 5feac0c14e
commit 47be92d5f6
4 changed files with 12 additions and 6 deletions

View File

@@ -54,7 +54,7 @@ public class SqlParserRemoveHelper {
}
removeWhereExpression(whereExpression, removeFieldNames);
}
public static String removeWhereCondition(String sql) {
public static String removeNumberCondition(String sql) {
Select selectStatement = SqlParserSelectHelper.getSelect(sql);
SelectBody selectBody = selectStatement.getSelectBody();