免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1392 | 回复: 1
打印 上一主题 下一主题

如何将一个模糊条件串转化成ORACLE的SQL条件? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-10-26 18:44 |只看该作者 |倒序浏览
条件串中可以包括*和?
*表示匹配任意多个字符
?表示匹配一个字符
得到的结果是一个ORACLE WHERE子句的string
void gen_match_sql(const string &field_name, const string &str_in, string &strSql);
如"123*??45*8",得到
substr(field, 1,3)= '123' and substr(field, 6, LENGTH(field)-6) like '%45%' and substr(field, LENGTH(field) ,1)= '8'

论坛徽章:
0
2 [报告]
发表于 2005-10-27 08:54 |只看该作者

如何将一个模糊条件串转化成ORACLE的SQL条件?

呵呵~~~搞定了
  1. #include <iostream>;
  2. #include <string>;
  3. #include <vector>;

  4. using namespace std;

  5. string itoa(int iVal)
  6. {
  7.     char temp[20];
  8.     sprintf(temp, "%d", iVal);
  9.     return  string(temp);
  10. }

  11. struct CSection
  12. {
  13.      string strVal;
  14.     int        iBegin;
  15.     int        iEnd;
  16.     int        iTotal;
  17.     int        iFlag;
  18. };

  19. void gen_Sql(const string& strFieldName, const string& strIn, string& strSql)
  20. {
  21.     vector<CSection>; vSection;
  22.     CSection cSection;
  23.     int begin = 0, idx, flag = 0;

  24.     while( begin < strIn.size() )
  25.     {
  26.         int start, val, end, stop;
  27.         string strTmp;

  28.         idx = strIn.find("*", begin);
  29.         if(idx ==  string::npos)
  30.         {
  31.             idx = strIn.size();
  32.             if(flag) flag = 2;
  33.         }
  34.         strTmp = strIn.substr(begin, idx - begin);
  35.         stop = 0;
  36.         while(stop < strTmp.size())
  37.         {
  38.             for(start=stop; start < strTmp.size() && strTmp[start] == '?'; start++);
  39.             for(val=start; val < strTmp.size() && strTmp[val] != '?'; val++);
  40.             for(end=val; end < strTmp.size() && strTmp[end] == '?'; end++);
  41.             cSection.strVal = strTmp.substr(start, val - start);
  42.             cSection.iBegin = start - stop;
  43.             cSection.iEnd = end - val;
  44.             cSection.iTotal = end - stop;
  45.             cSection.iFlag = flag;
  46.             vSection.push_back(cSection);
  47.             stop = end;
  48.         }
  49.         begin = idx + 1;
  50.         flag = 1;
  51.     }

  52.     int iPreTotal = 0;
  53.     vector<CSection>;::iterator itr;
  54.     for(itr = vSection.begin(); itr != vSection.end(); ++itr)
  55.     {
  56.         itr->;iBegin += iPreTotal;
  57.         iPreTotal += itr->;iTotal;
  58.     }
  59.     iPreTotal = 0;
  60.      vector<CSection>;::reverse_iterator ritr;
  61.     for(ritr = vSection.rbegin(); ritr != vSection.rend(); ++ritr)
  62.     {
  63.         ritr->;iEnd += iPreTotal;
  64.         iPreTotal += ritr->;iTotal;
  65.     }
  66.     if(vSection.size() >; 0)
  67.     {
  68.          bool add_flag = false;
  69.         for(itr = vSection.begin(); itr != vSection.end(); ++itr)
  70.         {
  71.             if(itr->;strVal == "") continue;
  72.             if(add_flag)
  73.                 strSql += " and ";
  74.             else
  75.                 add_flag = true;
  76.             if(itr->;iFlag == 0)
  77.                 strSql += " substr(" + strFieldName + ", " + itoa(itr->;iBegin + 1) + "," + itoa(itr->;strVal.size()) + ")= '" + itr->;strVal + "'";
  78.             else if(itr->;iFlag == 1)
  79.                 strSql += " substr(" + strFieldName + ", " + itoa(itr->;iBegin + 1) + ", LENGTH(" + strFieldName + ")-" + itoa(itr->;iBegin + itr->;iEnd) + ")" + " like '%" + itr->;strVal + "%'";
  80.             else
  81.                 strSql += " substr(" + strFieldName + ", LENGTH(" + strFieldName + ") -(" + itoa(itr->;iEnd + itr->;strVal.size() - 1) + ")," + itoa(itr->;strVal.size()) + ")= '" + itr->;strVal + "'";
  82.         }
  83.     }
  84. }

  85. int main(int argc, char *argv[])
  86. {
  87.     string strSql;

  88.     gen_Sql("field", argv[1], strSql);

  89.     cout << strSql << endl;
  90. }
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP