Hi, I have a table Now I want to copy all bill_id values to bill_folder column. I tried following command but it didn't worked. It just returned "0 row(s) affected" UPDATE bills SET bill_folder = bill_id Please help
Ooops...forgot the other quotes - UPDATE `bills` SET `bill_folder` = `bill_id`; Don't forget the semi-colon at the end too!
All of these examples should work. There's got to be something else going on here. You're updating from command line?
Thank you everybody for your help. The problem was SQLYog was not updating its interface with new data. That's why I was seeing blank in bill_folder column
Yeah. Most DB GUI's make you refresh the table results before you can see the changes. Navicat works this way as well.