我在Report Builder 3.0中做報告。 有參數dept
我把它作爲下拉列表。 如何使默認爲空,選擇所有部門。如何添加dropDownList null?
0
A
回答
0
爲了記錄添加到SQL結果集,你可以使用UNION ALL,例如:
select deptno, deptname from dept
union all
select null, 'all';
編輯:那麼現在你有你的下拉框的條目「所有」與DEPTNO空。查詢根據所選DEPTNO或空會是這樣得到的數據:
select somedata
from sometable
where deptno = :chosendeptno or :chosendeptno is null;
相關問題
- 1. 如何添加NOT NULL列?
- 2. 如何向GridView添加DropDownList列?
- 3. 如何在DropDownList中添加「ng-model」?
- 4. 如何添加填充到html dropdownlist?
- 5. 如何將RequiredFieldValidator添加到DropDownList控件?
- 6. 如何將DropDownList添加到ASP.NET身份?
- 7. 如何在MVC中添加DropDownList
- 8. 如何將值添加到dropdownlist框fromtextbox
- 9. 添加默認值DropDownList
- 10. 擴展DropDownList以添加ListSearchExtender
- 11. Dropdownlist添加列表項
- 12. 如何添加NOT NULL表字段
- 13. 如何將IS NOT NULL添加到CASE
- 14. 如何不向ArrayList添加Null?
- 15. 如何在Dropdownlist中爲mvc中的助手添加樣式?
- 16. MVC3 DropDownList和ViewBag。如何添加新項目收集
- 17. 如何使用jquery在dropdownlist旁邊添加圖標按鈕
- 18. 如何將null值的null值添加到數組php中?
- 19. ASP.NET MVC 4如何向包含dropdownlist的表添加行
- 20. 如何在動態添加的DropDownList的ListItem上添加OnClick事件?
- 21. 如何加入null?
- 22. 如何在MVC3的ActionResult中添加多個Dropdownlist
- 23. 如何使用jQuery將選項添加到DropDownList?
- 24. 如何使用jquery添加類到dropdownlist取決於選項
- 25. 如何在asp.net中的dropdownlist上添加滾動條?
- 26. 如何將可用記錄的數量添加到dropdownlist選項?
- 27. 如何將自定義對象添加到DropDownList Items?
- 28. 如何添加DropDownList而不綁定到ViewData?
- 29. 如何使用jQuery(有序)向DropDownList添加選項?
- 30. 在GridView中添加事件處理程序到DropDownList - 如何?
使用SQL問題,你應該始終標記您的DBMS(MySQL和Postgres的,SQL Server或兩者)。它們的功能和SQL方言有所不同。您還應該通常顯示錶格定義以及迄今爲止的查詢。 –