我在這裏得到不正確的語法:如何使用SQL連接與案件
SELECT
BA.Bank,
BA.AccountNo,
BA.closingBalance,
BT.TransactionDate =(Case When ClosingBalance <= 0 Then Getdate()
Else TransactionDate
End),
BankaccountID
FROM BankTransactionDetail BT Right Join dbo.BankAccount BA ON
BT.AccountID = BA.AccountID
四處錯誤:附近有語法錯誤「=」。
注意:不加入其工作正常。 Plaese幫助。