Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
DELIMITER $$
CREATE PROCEDURE `InsertInfo`(
    IN AId VARCHAR(20),
    IN Number VARCHAR(30),
    IN Address VARCHAR(30)
)
BEGIN
    DECLARE @BId VARCHAR(100);
    SET @BId = AId + '_' + Number + '_' + Address;
END$$

DELIMITER ;

Getting error:

Error Code : 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '@BId VARCHAR(100);

SET @BId = AId + '_' + Number + '_' + Address;
END' at line 7
(0 ms taken)
share|improve this question

closed as too localized by hakre, Jocelyn, Rubens, Wesley Wiser, dandan78 May 4 at 21:04

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

up vote 0 down vote accepted

You have to remove @.

 DECLARE BId VARCHAR(100);
 SET BId = AId + '_' + Number + '_' + Address;
share|improve this answer

As @AVD said you need to remove @ and I guess you want to CONCAT strings inside procedure?

This is correct way to do it.

DROP PROCEDURE IF EXISTS `InsertInfo`;
DELIMITER $$
CREATE PROCEDURE `InsertInfo`(
    IN AId VARCHAR(20),
    IN Number VARCHAR(30),
    IN Address VARCHAR(30)
)
BEGIN
    DECLARE BId VARCHAR(100);
    SET BId = CONCAT(AId,'_',Number,'_',Address);
    SELECT BId;
END$$

DELIMITER ;

Calling InsertInfo

CALL InsertInfo('a','b','c');

returns

a_b_c
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.