Estoy realizando la siguiente consulta
select count(NAME)
from GCIBDWHD.dbo.RAW_COS_CRF
where Name in
(select distinct NAME from GCIBDWHD.dbo.RAW_COS_CRF CRF,RPT_EQ_Cuentas_Values VAL where CRF.ACCOUNT=@Acct_Mov group by Name) group by Name
Y me da el siguiente error:
The SELECT item identified by the ORDER BY number 1 contains a variable as part of the expression identifying a column position. Variables are only allowed when ordering by an expression referencing a column name.
Podrían darme alguna sugerencia en cuanto a esto, debido a que realmente no entiendo muy bien el error.
Muchas gracias de antemano a todos.