将string数组转化为sql的in条件用sql查询

前端之家收集整理的这篇文章主要介绍了将string数组转化为sql的in条件用sql查询前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

例如:我想将String[] str = {"4","5","6"}转化为“‘4',‘5',‘6'”字符串。这样我就可以用SQL查询:select * from tableName id in (字符串)了。 项目中实现的源码如下:
<div class="codetitle"><a style="CURSOR: pointer" data="12522" class="copybut" id="copybut12522" onclick="doCopy('code12522')"> 代码如下:

<div class="codebody" id="code12522">
StringBuffer idsStr = new StringBuffer();
for (int i = 0; i < ids.length; i++) {
if (i > 0) {
idsStr.append(",");
}
idsStr.append("'").append(ids[i]).append("'");
}

我自己想到的另一种方式实现如下:
<div class="codetitle"><a style="CURSOR: pointer" data="4236" class="copybut" id="copybut4236" onclick="doCopy('code4236')"> 代码如下:
<div class="codebody" id="code4236">
public static String stringArray2Strin(String[] str) { StringBuffer sb = new StringBuffer();
for (int i = 0; i < str.length; i++) {
sb.append("'").append(str[i]).append("'").append(",");
}
return sb.toString().substring(0,sb.length() - 1);
} public static void main(String[] args) {
String[] str = { "4","6" };
System.out.println(ItemGroupService.stringArray2String(str));
}

原文链接:https://www.f2er.com/mssql/63268.html

猜你在找的MsSQL相关文章