Vaše IF
syntaxe je nesprávná. Mělo by to být:
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;;
Pokud však nikdy nepovolíte duplicitní (MatchID, UserID)
záznamy ve vašich Betslips
, proč nedefinovat UNIQUE
omezení napříč těmito sloupci a poté použijte 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;