I am trying to update a DB table with the following structure:

user_id, group_id, other_data, sequence

user_id points to a user table with all of the user data, and group_id points to a record in a group info table. other_data is nothing important. sequence is a value that is used to determine in what order users are listed. For instance, if I pull everyone from group_id 1234, the sequence is used to order them by.

I am trying to run an update to change this sequence when a user is deleted from the table. Currently, I am working with a CFML script that runs a SELECT query, loops through it, and then does individual updates. What I want to do is write the whole thing in one query.

The issue that comes up is when a user is in more than one group (which is usually the case). This is what I currently have:

UPDATE
    user_groups_tbl
SET
    sequence = sequence - 1
WHERE
        group_id IN (SELECT group_id FROM user_groups_tbl WHERE user_id = #URL.user_id#)
    AND
        sequence > (SELECT sequence FROM user_groups_tbl WHERE user_id = #URL.user_id#);

I can tell that with this query, the WHERE for the sequence is not right; this will pull some "random" sequence number, not particularly the one that is tied to the record with the proper group_id.

I don't know if I have explained this well enough, hopefully someone will be able to see what I'm trying to do here with this... If anyone can help with the query, it would be much appreciated.

This is currently being run on a MS SQL 2005 server, but will eventually be ported over to a MySQL engine.

link|improve this question

2  
Is it even necessary to adjust the sequence? If I have four rows sequenced 1,2,3,4 and I delete the row with sequence 3, the remaining rows still come in the right order 1,2,4. – Joe Stefanelli Oct 5 '11 at 20:33
i think that generally this wouldn't matter, but i do not know the internals of the entire system, so the fact that these sequences do not have any holes may be important elsewhere. – jzimmerman2011 Oct 5 '11 at 20:38
feedback

1 Answer

up vote 1 down vote accepted

tI think this will get it:

UPDATE
    user_groups_tbl
SET
    sequence = sequence - 1
WHERE
        group_id IN (SELECT group_id FROM user_groups_tbl
                     WHERE user_id = #URL.user_id#)
    AND
        sequence > (SELECT tbl2.sequence FROM user_groups_tbl tbl2
                    WHERE tbl2.user_id = #URL.user_id#
                       AND tbl2.group_id = user_groups_tbl.group_id);

I added another condition to the second half of your where clause to restrict what Group_id the subquery will return. This required adding a table alias.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.