how to create new username n password in mysql using commands.
followed these steps::
mysql> create database pauldb;
Query OK, 1 row affected (0.00 sec)
#
# Now we create the user paul and give him full
# permissions on the new database
mysql> grant CREATE,INSERT,DELETE,UPDATE,SELECT on pauldb.
;
>
> On Tue, May 8, 2007 13:57, sunisundar wrote:
>>
>> how to create new username n password in mysql using commands.
>>
>> followed these steps::
>> mysql> create database pauldb;
>> Query OK, 1 row affected (0.00 sec)
>>
>> #
>> #