解决Oracle in 超过1000个问题 C#拼接字符串

解决Oracle in 超过1000个问题 C#拼接字符串

Laughing
2018-10-21 / 0 评论 / 1,115 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2021年04月27日,已超过1362天没有更新,若内容或图片失效,请留言反馈。
private string getOracleSQLIn(string[] ids, string field) 
        {  
            int count = Math.Min(ids.Length, 1000);  
            int len = ids.Length;  
            int size = len % count;  
            if (size == 0)  
            {  
                size = len / count;  
            }  
            else  
            {  
                size = (len / count) + 1;  
            }  
            StringBuilder builder = new StringBuilder();  
            for (int i = 0; i < size; i++)  
            {  
                int fromIndex = i * count;  
                int toIndex = Math.Min(fromIndex + count, len);  
                string productId = string.Join("','", getArrayValues(fromIndex, toIndex, ids).ToArray());  
                if (i != 0)  
                {  
                    builder.Append(" or ");  
                }  
                builder.Append(field).Append(" in ('").Append(productId).Append("')");  
            }  
            return builder.ToString();  
        }  
  
        public List<string> getArrayValues(int fromindex, int toindex, string[] array)  
        {  
            List<string> listret = new List<string>();  
            for (int i = fromindex; i < toindex; i++)  
            {  
                listret.Add(array[i]);  
            }  
            return listret;  
        }
0

评论 (0)

取消
  1. 头像
    SZQ
    Windows 10 · Google Chrome

    你好

    回复
  2. 头像
    repostone
    Windows 8.1 · Google Chrome

    言简意赅。https://repostone.home.blog/

    回复