Jump to content
  • 0

Помогите с запросом


Беркут
 Share

Question

Пишу в этот форум, потому что почему-то у меня нет прав создавать топике в разделе СУБД

Есть таблица users

user_id | rating

1 | 80

2 | 50

3 | 30

4 | 10

И таблица update_rating

user_id | dop_rating

1 | 15

2 | -30

3 | -10

4 | 60

Вопрос: как в одном запросе приплюсовать данные поля update_rating.dop_rating к полю users.rating у всех пользователей?

Пока не нашел другого способа как создавать для каждого юхера свой sql-запрос, но ИМХО если пользователей будет много, то это будет жестоко..

Edited by Беркут
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

приплюсовать в смысле сложить?

$query = mysql_query ("SELECT * FROM `users` as A, `update_rating` as B WHERE A.rating + B.dop_rating");

если не ошибаюсь, то так вроде бы. хотя можно и без as A as B, просто:

$query = mysql_query ("SELECT * FROM users.rating, update_rating.dop_rating WHERE `rating` + `dop_rating`");

Link to comment
Share on other sites

  • 0
SELECT * FROM users INNER JOIN update_rating ON update_rating.user_id = users.user_id

Кстати возможно формулировка "приплюсовать" была мной как то не так воспринята...

Да действительно не так принята.. нужно сделать через UPDATE

Нужно обновить таблицу users добавив в нее данные из тааблицы update_rating

Edited by Беркут
Link to comment
Share on other sites

  • 0

update users u1 set rating=(select rating from users u2 where u2.user_id=u2.user_id)+(select dop_rating from update_rating where u1.user_id=update_rating.user_id)

Может быть так?

Есть подозрение, что первую скобку можно заменить на просто rating

Edited by Int
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  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.

 Share

×
×
  • 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. See more about our Guidelines and Privacy Policy