Returning a row count from an already existing query?
select count(*) from
(SELECT *
FROM [original-data]
WHERE State="AB")
);
It looks like I need to work on the syntax. Can this be made to work? My intent is to return the number of rows from:
(SELECT *
FROM [original-data]
WHERE State="AB")
Thank You!