MySQL CREATE database and create user and authorize

Source: Internet
Author: User
Tags mysql create mysql create database

1, create schema [database name] default character set UTF8 collate utf8_general_ci;--CREATE database

The CREATE schema is the same as creating database.

2, create user ' [user name] ' @ '% ' identified by ' [user password] ';--Create users

Password more than 8, including: uppercase letters, lowercase letters, numbers, special characters

%: Matches all hosts, the place can also be set to ' localhost ', which means only local access, for example, the root account defaults to ' localhost '

3. Grant Select,insert,update,delete,create on [database name].* to [user name];--user authorization Database

* Represents the entire database

4, flush privileges;--Enable modification now

5, revoke all on * * from tester;--Cancel all permissions of user all database (table)

6. Delete from Mysql.user where user= ' tester ';--delete user

7. Drop DATABASE [schema name | database name];--DELETE databases

MySQL CREATE database and create user and authorize

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.