SQL條件語句實例
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
在SQL語句中,SQL條件語句無疑是使用最廣,最常見的SQL語句之一,下面就將為您介紹幾個使用SQL條件語句,供您學習參考。 ----查詢StudentMarks 最大的前三條記錄 select top 3 StudentID,StudentName,Mark from StudentMarks order by Mark desc ----查詢StudentMarks 的第30~40條記錄 1、從前30條的后面, 取前10條 select top 10 * from StudentMarks where StudentID not in(select top 30 StudentID from StudentMarks) 2、先正序取40條, 再反序取10條 select top 10* from (select top 40* from StudentMarks order by Mark ) a 3、、利用臨時表 select top * from #Stm order by Mark desc ----查詢和London同屬于一個國家的城市的客戶 該文章在 2011/5/4 18:33:45 編輯過 |
關鍵字查詢
相關文章
正在查詢... |