Jump to content

if value exists


b1011

Recommended Posts

i am using php and mysql.

 

i need this in Mysql:

if value exists in colum 'gangname' then execute code.

 

any ideas?

 

do you know what i mean?

 

im adding a new row, and i dont want the gangname the same as any other ones, so i need to check if the name exists so i DONT execute code.

Link to comment
Share on other sites

use REPLACE instead of INSERT in your query

 

REPLACE works exactly like INSERT, except that if an old row in the table has the same value as a new row for a Primary Key or a UNIQUE index, the old row is deleted beore the new row is inserted.

be carefull when using REPLACE, it will delete the existing record and add a new row at the end which will leave spaces in any auto_inc columns.

 

 

http://dev.mysql.com/doc/refman/5.0/en/replace.html

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.