In ms sql, I am trying to count the number of computed column.
With the usual classics do not worry:
SELECT ID, COUNT(*) FROM User GROUP BY ID
But with computed column an ββerror message is displayed
SELECT CONVERT(INT, (ID * PI())) AS TOTO, COUNT(*) FROM User GROUP BY TOTO
Do you know if there is a way to do this?
source share