WEB开发网
开发学院数据库MSSQL Server 用SQL完成條件式查詢 阅读

用SQL完成條件式查詢

 2010-04-08 00:00:00 来源:WEB开发网   
核心提示:因為覺得每次要用條件式查詢很煩(如範例一),就想有沒有更方便的用法,用SQL完成條件式查詢,試出一種方法還不錯,分享給大家,測試環境 DBMS:Sql Server 2008 ExpressDB:AdventureWorksTable:Sales.SalesOrderDetail(Count:121,317)情境 對S

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

測試環境

DBMS:Sql Server 2008 Express

DB:AdventureWorks

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

用SQL完成條件式查詢

情境

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

用SQL完成條件式查詢

圖一 查詢畫面

範例一 傳統的條件式

  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");

1 2 3  下一页

Tags:SQL 完成 查詢

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接