oh damn, i am such a idot. For sure.
All the code is wrong at the top, i need for each player this colum. So i save all acc_ids in the array and now i need to got to each player to update it. How i can i do a loop till the end of the array?!
This is an not working code, but dont know why.
OnSat1437:
query_sql "SELECT `account_id` FROM `char` ", .@all_accs$[];
.@array_size = getarraysize( .@all_accs$[] );
for (set @i,0; @i < .@array_size; set @i,@i+1)
{
query_sql "SELECT `this_week` FROM `char` WHERE `account_id` = " + .@all_accs$[i] + "", .@this_week;
query_sql"UPDATE `char` SET `last_week` = "+.@this_week+" WHERE `account_id` = " + .@all_accs$[i];
query_sql"UPDATE `char` SET `this_week` = 0 WHERE `account_id` = " + .@all_accs$[i];
}