I am having two tables like this.Both are separate tables
AccountNo User Name
----------------------------------
1 U a
2 U b
3 U c
And another table contains the following structure
TempAccountNo Mycolumn AccountNo
------------------------------------------
4 X 2341
5 Y 2
6 Z 2568
I need to select the AccountNo or TempAccountNo,Mycolumn From table II and the condition is
If (tableII.AccountNo not in table I)
I need to choose `TempAccountNo from table II`
else
I need to choose `AccountNo from table II`
How can I achieve this.