write a stored procedure called ups_getpricelist with a parameter @sku that stores the skus
for which the prices are to be listed. @sku has the table type skunotyp whcih created
with this statemet
Create type skuNoType as table (sku int);
complete this partial code for the stored procedure
create procedure usp_getpricelist
@skus skuNoType readonly
as
begin
declare skucursor Cursor
select sku from @skus
end