简化数据库名称

This commit is contained in:
暮光:城中城
2023-03-12 16:16:37 +08:00
parent 300c0b75fe
commit e257cec3b6
3 changed files with 3 additions and 3 deletions

View File

@@ -309,7 +309,7 @@ public class SqlParseUtil {
}
public static void main(String[] args) {
String storageSql = "select * from zyplayer_doc_manage.wiki_space where id=1 group by id";
String storageSql = "select * from zyplayer_doc.wiki_space where id=1 group by id";
storageSql = storageSql.replaceAll("(#\\{\\w+})", "'$1'");
String selectCountSql = getSelectCountSql(storageSql);
System.out.println(selectCountSql);