このスクリプトで動作するcaseステートメントを入手するには、初めてそれを試して、何が間違っているのか分からない。エイリアスを含むケースステートメント
SELECT DocumentDest.Keycode AS [Acct #],
Customer.Name,
DocumentDest.Emails,
Case
Customer.Freq AS [Weekly or Monthly]
When 'W' then 'Weekly'
When 'M' then 'Monthly'
Else 'None'
End
FROM DocumentDest
INNER JOIN Customer ON DocumentDest.Keycode = Customer.KeyCode
WHERE (DocumentDest.Type = 'cus') AND (DocumentDest.[Document] IN ('stmt', 'wstmt'))
MySQLではありません。 SQL-SERVER –
はい、正しいですか? – Steve
@スティーブ:不一致の二重引用符を一重引用符に変更しました。私はこれがあなたの問題に関連していないと仮定していますか? –