Bir dizi ile birden fazla satır güncelleniyor

0 Cevap php

Ben kullanıcı bilgilerini tutan bir tablo var. Sütunlardan biri de bulundukları oyunda kullanıcının konumunu tutar

Bir oyun oluşturulan edilirken, ben her takımın kullanıcıların konumlarını güncellemeniz gerekir.

Here is an example: Game id : 7 Team 1 users : 1,2 Team 2 users : 3,4

team1_position : array(1,2) team2_position : array(13,14)

What I want to do is update the user table using the array of positions in the SET area. My goal is to be able to update the users without the need for their id (I have different size game boards, so I have multiple position arrays for each board size)

Böyle bir şey nasıl yapabilirim:

UPDATE user SET pozisyonu = '(team1_position)' NEREDE oyunu = '7 'AND takım = '1'

Her takımın tüm id seçin ve bunları ayrı ayrı güncellemek için bir kaynak israfı olacak gibi hissediyorum.

0 Cevap