SQL получить счет без группы
select g.ID, g.Name, g.Phone, count(*) over ( partition by g.name ) as Count
from
Guys g;
Blushing Bug
select g.ID, g.Name, g.Phone, count(*) over ( partition by g.name ) as Count
from
Guys g;