This has to be simple and I am just missing it. I am trying to run a stored procedure like this;
DELIMITER $$
DROP PROCEDURE IF EXISTS Testing$$
CREATE PROCEDURE `Testing`(out d varchar(10))
BEGIN
select @v1 = 'Value 1';
select @v2 = 'Value 2';
select @v3 = 'Value 3';
set d = @v1;
END$$
DELIMITER ;
call Testing(@d);
select d;
The problem is that when runs it returns

This makes no sense to me. Sorry for the simple question trying to convert a MS SQL DB to MySQL.