• ADADADADAD

    创建数据库、业务用户[ mysql数据库 ]

    mysql数据库 时间:2024-12-24 19:10:26

    作者:文/会员上传

    简介:

    create database xxx character set utf8 collate utf8_bin;
    grant all privileges on xxx.* to 'xxx'@'%' identified by 'pass' with grant option;
    grant all privileges

    以下为本文的正文内容,内容仅供参考!本站为公益性网站,复制本文以及下载DOC文档全部免费。

    create database xxx character set utf8 collate utf8_bin;
    grant all privileges on xxx.* to 'xxx'@'%' identified by 'pass' with grant option;
    grant all privileges on xxx.* to 'xxx'@'127.0.0.1' identified by 'pass' with grant option;
    grant all privileges on xxx.* to 'xxx'@'localhost' identified by 'pass' with grant option;
    grant all privileges on xxx.* to 'xxx'@'hostname' identified by 'pass' with grant option;
    grant select on mysql.proc to xxx;
    grant show databases on *.* to xxx;
    创建数据库、业务用户.docx

    将本文的Word文档下载到电脑

    推荐度:

    下载
    热门标签: 业务创建数据库