Folks,
If i need to store the results of a query in local variables like..
set @product =(select product_name from products where product_id = @id)
set @product_type = (select product_type from products where product_id = @id)
How can I set more that one local variable to a query value at once.
Cheers
Mick