Hi friends,
I get the below error for a sub-select..
select count(*)
from
(select upper(s_name)
from bmi_tr)
dual;
Msg 8155, Level 16, State 2, Line 5
No column was specified for column 1 of 'dual'.
The query works fine if I remove the upper() function. Will it not work if there is a string function in the Sub-select queries?
Thanks