java hibernate执行多条SQL语句的问题

2024-11-29 22:51:58
推荐回答(1个)
回答1:

要兼容,还是分开语句吧。多写几行代码而已。

sql.append("create table tempTestTable(a char(4)); ");
sql.append("alter table tempTestTable add test " + columnType + "(50);");
既然都是自己处理的,两句合成一句,不更方便
sql.append("create table tempTestTable(a " + columnType + "(50) ");

columnType 还要看可能输入的情况