Currently I have a db wich has a table called "users". In that table I have column "id" as PRIMARY and AUTO_INCREMENT. In php, when I want to update a user's balance I just say:
UPDATE `users` SET `balance` = '500' WHERE `id` = 3;
The thing is that if I go to phpmyadmin and I manually edit the column, it returns this query:
UPDATE `users` SET `balance` = '500' WHERE `users`.`id` = 3;
So, what's the difference between id
and users
.id
?