Questions tagged "table"
1 question
Active Filters:
Tag: table ×How to update data in a database table using phpMyAdmin?
Question ID: 1
I have a table named my_tbl in phpMyAdmin, and I want to update all values in a column named my_col at once.
My current SQL query is:
UPDATE `my_tbl` SET `my_col` = 'B' WHERE `my_tbl`.`id` = *;
The...
1 Answer
147 Views
8 Votes