You are viewing a single comment's thread. Return to all comments →
for sql server
with cte_city(col1) as (select count(id) from city where population > 100000) select * from cte_city
Seems like cookies are disabled on this browser, please enable them to open this website
Revising Aggregations - The Count Function
You are viewing a single comment's thread. Return to all comments →
for sql server
with cte_city(col1) as (select count(id) from city where population > 100000) select * from cte_city