mysql> delete from user where user='username';
mysql> FLUSH PRIVILEGES;
Setting Privileges
grant all privileges on DB.* to 'username'@'localhost' identified by 'pass';
SET PASSWORD FOR
To see Tables:
mysql> use DB;
mysql> show tables;
To see fields
mysql> desc tablename;
To View The contents of the table
mysql> select * from
UPDATE Query
mysql> update
No comments:
Post a Comment