Skip to content

Instantly share code, notes, and snippets.

@skorfmann
Created August 19, 2013 02:43
Show Gist options
  • Save skorfmann/6265380 to your computer and use it in GitHub Desktop.
Save skorfmann/6265380 to your computer and use it in GitHub Desktop.
{:default => <<-DEFAULT_SQL, :mysql => <<-MYSQL}
UPDATE users SET item_count = item_count + 1
WHERE id IN (SELECT user_id FROM buckets WHERE id = NEW.bucket_id)
DEFAULT_SQL
UPDATE users, buckets SET item_count = item_count + 1
WHERE users.id = user_id AND buckets.id = NEW.bucket_id
MYSQL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment