MaryJaneDoane
Programmer
Hi Everyone -
I am trying to do a count of properties by account. I tried the following
field1,
field2,
field3,
(select count(prop_id)
from loanrev..collat
group by loanrev..collat.note_id)as numprops,
field4,
field5
It compiles with no errors, but when i try to select the view i get the following error.
Subquery returned more than 1 value. This is not permitted when the subquery is used as an expression.
I am trying to do a count of properties by account. I tried the following
field1,
field2,
field3,
(select count(prop_id)
from loanrev..collat
group by loanrev..collat.note_id)as numprops,
field4,
field5
It compiles with no errors, but when i try to select the view i get the following error.
Subquery returned more than 1 value. This is not permitted when the subquery is used as an expression.