flyrain

            string strSql = "select * from table where 1=1 ";
            string sql_count = "select count(1) from table where 1=1 ";
            string sql_where = "";
            string sql_order = " order by col desc ";
            if (paras.Length > 0)
            {
                if (paras[0] != null && paras[0] != "")
                {
                    sql_where = " and col2 like \'" + paras[0] + "%\'";
                }
                if (paras[1] != null && paras[1] != "")
                {
                    sql_where += " and col3 > to_date(\'" + paras[1] + "\',\'yyyy-mm-dd hh24:mi:ss\') ";
                }
            }

            strSql = strSql + sql_where + sql_order;
            sql_count = sql_count + sql_where;
            int from = 0, to = 0;
            from = 1 + pageSize * (currentPage - 1);
            to = pageSize * currentPage;

            string sqlSelect = string.Format("SELECT * FROM (SELECT ROWNUM RN, A.* from ({0}) A WHERE ROWNUM <= {1}) A WHERE RN >= {2}",
                strSql, to, from);

分类:

技术点:

相关文章:

  • 2021-11-20
  • 2022-02-10
  • 2021-06-24
  • 2021-09-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-18
猜你喜欢
  • 2022-12-23
  • 2022-01-06
  • 2022-12-23
  • 2021-11-20
  • 2022-12-23
  • 2021-11-20
  • 2021-11-20
相关资源
相似解决方案