How can I create a new user in a sql database?
What is the syntax of the order?
thanks
with grant...
This is the fastest solution...
eg: grant all privileges on dbname.* to username identified by 'password';
But i strongly sugest you read the docs on privileges and stuff...