Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8493201
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T22:56:24+00:00 2026-06-10T22:56:24+00:00

Guys i can not find solution for this problem , its always giving syntax

  • 0

Guys i can not find solution for this problem , its always giving syntax error what ever i have tried … can you just cast a look for me , thanks

create procedure SP_Insert(in MatchIDP int,in TipID int, in User int)
begin

if exists(
select BetSlipID from betslips where MatchID = MatchIDP and UserID = User)
(
   update Betslips set TipID = 2
)
else
(
   insert into Betslips (MatchID,TipID , UserID) value (MatchIDP,TipID,User)
)
end if
end

I just want to check if data exists in table before i do insert , and i can not use “On duplicate key update” because my primary key does not mean anything , its table where i put in 2-3 foreign keys ….

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T22:56:25+00:00Added an answer on June 10, 2026 at 10:56 pm

    Your IF syntax is incorrect. It should be:

    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;;
    

    However, if you will never permit duplicate (MatchID, UserID) entries in your Betslips, why not define a UNIQUE constraint across those columns and then 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;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I hope some of you guys can help me with this problem.... I have
Hey guys, before you guys say anything I have searched and can not find
Guys, Well I have done enough research still I can't find the solution to
I can't find any solution to this problem. Here's the render I want: http://jsfiddle.net/kQSxb/
I never had this problem before but I can't seem to find the solution,
Hei guys, I have the following problem: As I can see those arrows are
Once again I'm asking this question, and still can't find any reasonable solution. I
Hey guys I simply cannot get this to work. I have some content that
I'm hoping you guys can help me figure out why this is happening. I've
Maybe you guys can help: I have a variable called $bio with bio data.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.