我在ASP.NET和SqlServer中工作。在兩個日期之間選擇數據
我在我的應用程序兩個文本框與壓延擴展其中用戶將選擇兩個dates.I想從SQLSERVER獲得這兩個日期之間的數據在我的針對特定領域的數據類型爲日期時間。請告訴我如何用這個來進行......我寫了查詢,但多數民衆贊成不工作..
我的查詢:
SqlCommand cmd = new SqlCommand("select top 1 OrderNumber from tblOrderMaster where OrderedDate>='" + txtfromcal.Text + "' and OrderedDate<='" + txttocal.Text + "' ", conn);
什麼問題呢?任何錯誤或異常... –
未選擇數據。 – coder
這裏的答案可能會幫助你:http://stackoverflow.com/questions/207190/sql-server-string-to-date-conversion – devnomore