Results 1 to 2 of 2
Hello,
First of all thank you for taking your time helping me.
I can't get this solved :/
i.imgur. com/KFEsL.png
I want to update the DB with the information i ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 10-29-2012 #1
SSH MySQL Won't update userDB
Hello,
First of all thank you for taking your time helping me.
I can't get this solved :/
i.imgur. com/KFEsL.png
I want to update the DB with the information i have given.
Yet it doesn't work.
Regards,
Senethic
- 10-30-2012 #2Trusted Penguin
- Join Date
- May 2011
- Posts
- 3,696
Hello and welcome!
You need to use the SET command on a table, not a database name. But you need to specify the database name first. Try this mysql statement to connect to the right db:
then try your update command, e.g.:Code:mysql> use Cyberuben_
you can amend that command to be conditional, say on the value of another field, e.g.:Code:mysql> update $TABLE_NAME set Host='blah';
Code:update TABLE set Host='1.2.3.4' where date='2012-10-29';


Reply With Quote
