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

  • Home
  • SEARCH
  • 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 8881525
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T20:21:54+00:00 2026-06-14T20:21:54+00:00

I want to write a MySQL proc which takes userId and userName and does

  • 0

I want to write a MySQL proc which takes userId and userName and does an insert or update into table users dependent on if a row exists where users.userId = userId

I saw a similar question here: MySql create or update row with ip?

But I want to do this in a stored procedure and wondered if that gives any additional tools?

  • 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-14T20:21:55+00:00Added an answer on June 14, 2026 at 8:21 pm

    You don’t need a stored procedure, you can use INSERT ... ON DUPLICATE KEY UPDATE .... Assuming that userid is the PRIMARY or a UNIQUE key, this will work:

    INSERT INTO user
    SET 
    userid = ?,
    userName = ?
    ON DUPLICATE KEY UPDATE
    userName = VALUES(userName)
    

    Of course, you could wrap this query in a stored procedure if you want:

    DROP PROCEDURE IF EXISTS set_user;
    
    DELIMITER //
    
    CREATE PROCEDURE set_user(
        IN i_userid INT UNSIGNED,
        IN v_userName VARCHAR(50)
    )
    DETERMINISTIC
    MODIFIES SQL DATA
    SQL SECURITY INVOKER
    BEGIN
        INSERT INTO user
        SET 
        userid = i_userid,
        userName = v_userName
        ON DUPLICATE KEY UPDATE
        userName = VALUES(userName);
    END;
    //
    
    DELIMITER ;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to write a mysql statement which will return a list of results
I want write a simple query which will fetch data from a table (which
I want write a little code analyzer which parses nested structures and translates into
I want to write one mysql query to fetch all my table data and
I want to write a Mysql statement that selects all from a table(posting) where
I want to write a SQL statement something like insert into mytable column1=value1 and
I want to know how i can write a mysql query which checks how
I want to write into a mysql database a timestamp in real milliseconds (I
I have a mysql table with 120 million rows and I want to write
I want to write a Stored procedure...which will create a table with xyz name

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.