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 with Create schema and creation database The same as the fruit. 2, create user ' [user name] ' @ '% ' identified by ' [user password] ';--Create password of 8 or more, including: uppercase letters, lowercase letters, numbers, special characters%: Match all hosts, the place can also be set to ' LocalHost ', which represents only local access, for example, the root account default is ' localhost ' 3, Grant select,insert,update,delete,create on [database name].* to [user name];-- User Authorization database * represents the entire database 4, flush  privileges;--immediately enable modify 5, revoke all on *. * FROM tester;--cancels all permissions of the user all databases (tables) 6, delete from Mysql.user where user= ' tester ';--delete user 7, drop database [schema name | database name];--DELETE DB classification: Database

  

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.