i can't join columns value in one column

alim

Well-known member
Joined
Dec 12, 2005
Messages
89
Location
bangladesh
Programming Experience
3-5
Both
CommonService.January ,CommonService.February are in Decimal format

when i try this , i get january value in [CommonService Paid]
VB.NET:
SELECT CommonService.FlatMasterID, CommonService.Flat_No, CommonService.Building_No, CommonService.Year, CommonService.January  AS [CommonService Paid]
FROM CommonService;

but when i use + with these columns i m not getting the value.. whole column become null is there any way to make it work..

please it it soon..

VB.NET:
SELECT CommonService.FlatMasterID, CommonService.Flat_No, CommonService.Building_No, CommonService.Year, CommonService.January +CommonService.February AS [CommonService Paid]
FROM CommonService;
[is not working]


thanks
alim
 
Back
Top