Jump to content

count with update


SamiBH

Recommended Posts

hello

 

I need help  :(

 

Tables:

 

users:

id

uploades

files:

owner

file_id

 

 

I need to count (file_id) for every user and update "uploades"

like

user1: 10 uploades

user2: 20 uploades

 

how can i do that in sql

UPDATE users SET uploades = ( SELECT count(file_id )
  from users,files
  where users.id = files.owner)

 

thank you

Link to comment
Share on other sites

This may not be the best way to handle this. But you could try creating a database view of upload counts. Then update your users table from the upload counts view.

 

Example:

 

1) The View:

 

CREATE ALGORITHM = MERGE VIEW v_upload_counts AS SELECT user_id, count(*) AS uploads FROM files GROUP BY user_id

 

2) The Update Query:

 

UPDATE users u JOIN v_upload_counts c ON u.user_id = c.user_id SET u.uploads = c.uploads

 

This is just an idea. Anyone else have a better idea?

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.