I have a Master Table and a Detail Table(like Categories and Products) in SQL server and some of the Categories Do not have Products.
I want to count Products of a Category and my Where condition is like this ProductID=100.
In Result i want to have 0 near the Categories that have not Products and the other Categories have Products count. the result must be only for ProductID=100 and the number off the Result is number off the Categories record.iwant to create a view and each time i run this query :
select * from -ViewName where ProductID=@newProductID

