我想從表中檢索列,根據條件。, 我可以使用。如果條件在哪裏條款
例如,我已經領域,即爲了添加註釋,取消訂單的意見,推遲訂單註釋,操作(添加,取消,推遲)和收到的金額(Y/N)
現在我來取列添加秩序的意見,取消訂單的意見,推遲訂單註釋根據行動和收到的款項,
if(action='add' and amount received='Y')
then
i've to fetch add order comments column
elseif(action='postpone' and amount received='Y')
then
i've to fetch postpone order comments column
else (action='cancel')
then i've to fetch cancel order comments
如何得到這個SQL或PLSQL做,我想這個條件在SELECT語句
MySQL,MS SQL-Server,Oracle等? – MatBailie