Skip to content
Advertisement

How to check two rows from table that the value of them are not repeated at other rows

Let’s say I have a table called services:

table structure

And I made a form for updating this table:

JavaScript

For action part I coded this:

JavaScript

And here is the CheckSname2() method that I’ve called:

JavaScript

As you can see, basically I want the user to insert a name_service that are not duplicated at any other row. And if it’s not, then the method checks for link_service also. And if these two are not repeated, it calls UpdateService() method.

Now the problem comes from these two inputs at form, where I retrieve the CURRENT data from table which is belonged to the user:

JavaScript

For example, if the current name_service is banana and link_service is banana-place, and the user changes the banana-place to anything else, the table won’t be updated because CheckSname2() method checks name_service also from table. And because the value is not changed yet it returns error.

Now I want this method to check that if the user types any OTHER name_service OR link_service that are belonged to other users, return custom error messages, otherwise it has to update the table, even if user changes one field!

Note: UpdateService() method simply updates the table and works fine, so there’s no need to include that.

Advertisement

Answer

If I understand correct, you want to check if the combination name_service and link_service is unique. A simple check for that is to run a select query with a WHERE clause that requires them both to exist.

JavaScript

If this query returns no result at all (rowCount() == 0). the combination is unique and you can proceed updating or inserting.

Otherwise the combination does exist and you can simply message: This combination already exists. Change either the name or the link

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement