JavaToPerlNowVB
Programmer
I am trying to rebuild some of the old Queries in old database and I came accross with this
What I don't understand is this part
I am not sure if anyone can help with this or it has enough information for somebody to understand.
Thanks alot
Code:
SELECT gl_maint_action.glfwm_key, [description] & IIf(IsNull([com_a]),""," (" & [com_a] & ")") & IIf(IsNull([com_b]),""," (" & [com_b] & ")") AS [Desc]
FROM gl_maint_action INNER JOIN gl_maint_code ON gl_maint_action.maint_code = gl_maint_code.maint_code;
Code:
[description] & IIf(IsNull([com_a]),""," (" & [com_a] & ")") & IIf(IsNull([com_b]),""," (" & [com_b] & ")")
I am not sure if anyone can help with this or it has enough information for somebody to understand.
Thanks alot