Seu
IF
sintaxe está incorreta. Deveria ser:delimiter ;;
create procedure SP_Insert(in MatchIDP int,in TipID int, in User int)
begin
if exists(
select * from betslips where MatchID = MatchIDP and UserID = User
) then
update Betslips set TipID = 2; -- where ?
else
insert into Betslips (MatchID,TipID , UserID) values (MatchIDP, TipID, User);
end if;
end;;
No entanto, se você nunca permitir
(MatchID, UserID)
duplicado entradas em seus Betslips
, por que não definir um UNIQUE
restrição nessas colunas e, em seguida, use INSERT ... ON DUPLICATE KEY UPDATE
:ALTER TABLE Betslips ADD UNIQUE INDEX (MatchID, UserID);
INSERT INTO Betslips (MatchID, TipID, UserID) VALUES (?, ?, ?)
ON DUPLICATE KEY UPDATE TipID = 2;