我有一個查詢,其中我得到Department_Id
爲它的整數值。我已經在另一個表是獲取文本而不是ID
select type_desc from type_mst_a where master_mkey = 812
引用該ID的文字和我的查詢是
select convert(varchar(15),doc_Date,103)Doc_Dates,department_id,
case outward_Type when 'N' then 'None' when 'P' then 'Private' when 'C' then 'Confidential'
end [Type], convert(varchar(15),ref_date,103) Ref_dates, convert(varchar(15),Updated_Bill_Date,103)Updated_Bill_Dates ,
convert(varchar(15), Due_Date,103)Due_dates,* from view_A_Inward_Doc_Tracking_Hdr
where delete_flag='N' and mkey= 227381
如何獲得該ID的價值?
在您的查詢中,沒有對'department_id'的引用。 –
@SamuelRenold:對不起,更新了代碼。 – BNN