We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
例如: delete from credit_corp_baseinfo o where o.applyid in(24032,23942,23579,23511,23408,23327,23322,23230,23228,23218);
List sts = SQLUtils.toStatementList(sql, "oracle"); for(SQLStatement st :sts){ System.err.println(st.toString()); }
结果别名出现2次: DELETE FROM credit_corp_baseinfo o o WHERE o.applyid IN (24032, 23942, 23579, 23511, 23408, 23327, 23322, 23230, 23228, 23218)
The text was updated successfully, but these errors were encountered:
数据库类型oracle
Sorry, something went wrong.
bug fixed for oracle sql parser delete statement alias output. for is…
f10921e
…sue alibaba#1725
已经修复,将会在这个周末发布
已经支持,请使用新版本 https://github.com/alibaba/druid/releases/tag/1.0.30
No branches or pull requests
例如:
delete from credit_corp_baseinfo o where o.applyid in(24032,23942,23579,23511,23408,23327,23322,23230,23228,23218);
List sts = SQLUtils.toStatementList(sql, "oracle");
for(SQLStatement st :sts){
System.err.println(st.toString());
}
结果别名出现2次:
DELETE FROM credit_corp_baseinfo o o
WHERE o.applyid IN (24032, 23942, 23579, 23511, 23408, 23327, 23322, 23230, 23228, 23218)
The text was updated successfully, but these errors were encountered: