USP_SIMPLEDATALIST_ZIPCITYSTATECOUNT
Returns the number of rows in the ZIPCITYSTATE table.
Definition
Copy
create procedure dbo.USP_SIMPLEDATALIST_ZIPCITYSTATECOUNT
as
set nocount on;
select count(*) as VALUE from dbo.ZIPCITYSTATE;