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

2024年11月29日 22:51
有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 还要看可能输入的情况