0
I will try to be as specific as possible, if anyone can help me I really appreciate.
I need to know how to change information in a column of all database records.
For example: I have the database with the table "Users" and in this table there is a column called "Account". In this column is the information "Inactive" and I need to change to "Active", but of all the records at once. Is it possible to do this? I am using Phpmyadmin
yes, you just do the UPDATE without the WHERE, so it will update the whole table, to help with the sql itself edit your question and include the table structure
– rnd_rss
Perfect! I do it through PHP or your can do it directly in SQL?
– Lucas Fiiguer
You can do directly by SQL.
– Sérgio Lopes