我使用以下查詢來填充業務目錄表結果的下拉字段。tsql填充下拉列表保留默認選項頂部
select 'Select a City' as City, 'All' as Value
UNION ALL
select distinct City, City as Value from BND_Listing
where isnull(City,'') <> ''
Order by City ASC
我想保持我在列表頂部的「選擇一個城市」,而不是把它按字母順序排列,但保持一切相同。
這可能嗎?
請注意,請考慮接受對您以前的問題的正確答案....它鼓勵其他人幫助你。乾杯。 http://stackoverflow.com/questions/39626354/order-by-select-statement-using-union-distinct http://stackoverflow.com/questions/39624368/t-sql-query-to-search-table領域的關鍵字 http://stackoverflow.com/questions/39542201/sql-split-string-as-key-identity-value 等... – scsimon
你好@scsimon是的,我要回答這些現在的主題。我最終使用原始查詢,因爲插件端存在一個錯誤,所以輸入值得高度讚賞,但在一天結束時,我終於堅持原始查詢,並且我無法在同一天回答自己的問題。 – UserSN
聽起來不錯Alex。 – scsimon