用SQL完成條件式查詢_SQL SERVER数据库_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

用SQL完成條件式查詢

作者:黑客防线网安SQL维护基地 来源:黑客防线网安SQL维护基地 浏览次数:0

本篇关键词:完成分享大家
黑客防线网安网讯:  因為覺得每次要用條件式查詢很煩(如範例一),就想有沒有更方便的用法,試出一種方法還不錯,分享給大家。  測試環境   DBMS:Sql Server 2008 Express  DB:AdventureWorks  Tabl...

  因為覺得每次要用條件式查詢很煩(如範例一)就想有沒有更方便的用法試出一種方法還不錯,分享給大家

  測試環境

  DBMS:Sql Server 2008 Express

  DB:AdventureWorks

  Table:Sales.SalesOrderDetail(Count:121,317)

  情境

  對Sales.SalesOrderDetail的OrderId與ProduceId與SaleDate這三個欄位做查詢(如圖一),如果沒有輸入條件為顯示全部

  範例一 傳統的條件式

  1: StringBuilder sb = new StringBuilder();
  2:  
  3: if (!string.IsNullOrEmpty(Order.Text))
  4:   sb.AppendFormat("SalesOrderID='{0}'", Order.Text);
  5:  
  6: if (!string.IsNullOrEmpty(Produce.Text))
  7: {
  8:   if (sb.Length > 0)
  9:     sb.Append(" AND ");
 10:  
 11:   sb.AppendFormat("ProductID='{0}'", Produce.Text);
 12: }
 13:  
 14: if (!string.IsNullOrEmpty(StartDate.Text))
 15: {
 16:   if (sb.Length > 0)
 17:     sb.Append(" AND ");
 18:  
 19:   sb.AppendFormat("ModifiedDate > '{0}'", StartDate.Text);
 20: }
 21:  
 22: if (!string.IsNullOrEmpty(EndDate.Text))
 23: {
 24:   if (sb.Length > 0)
 25:     sb.Append(" AND ");
 26:  
 27:   sb.AppendFormat("ModifiedDate < '{0}'", EndDate.Text);
 28: }
 29:  
 30: if (sb.Length > 0)
 31:   sb.Insert(0, " WHERE ");
 32:  
 33: sb.Insert(0,"SELECT * FROM Sales.SalesOrderDetail");

    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-10520-1.html
网站维护教程更新时间:2012-03-21 03:05:43  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer