I created a new table with composite primary key, Lets say PrmID and Type, therefor a new composite clustered index has created (PrmID is first).I add another non clustered index for Type.
My question is - when I generate a queries that perform any statement on Type (such as GROUP BY), is the SQL engine using the non clustered index table or the PK clustered index (which more expensive for that kind of queries) ?

(PrimID,Type), then something using justType(a WHERE clause, or a GROUP BY) cannot use that index - it's useless. So that query will definitely use the NC index