 |
|
[.NET]
C# WinApp ช่วยแปลง SQL นี้ให้อยู่ในรูปแบบ IIF(ISNULL(column),0,column) หน่อยครับ |
|
 |
|
|
 |
 |
|
Code (SQL)
1. IIF( ISNULL ( column ),0, column );
Code (SQL)
1. SELECT tblProductType.pdtID, tblProductType.Barcode, tblProductType.ProductType_1,
2. ( SELECT sum ( tblProductReceive. Count ) from tblProductReceive where tblProductReceive.pdtID = tblProductType.pdtID ) AS sumR,
3. ( SELECT sum ( tblProductSale. Count ) from tblProductSale where tblProductSale.pdtID = tblProductType.pdtID ) AS sumS,
4. (sumR-sumS) AS sumC
5. FROM tblProductType;
column ที่อยากแปลง คือ sumR sumS sumC ครับ
ปล.ขอแบบสั้นๆนะครับ
Tag : .NET, Win (Windows App), C#, VS 2013 (.NET 4.x)
|
|
 |
 |
 |
 |
Date :
2017-07-23 10:34:45 |
By :
lamaka.tor |
View :
907 |
Reply :
3 |
|
 |
 |
 |
 |
|
|
|
 |
 |
|
 |
 |
|