在创建安装微擎的过程中,针对第四步 创建远程登陆用户并授权 > grant all PRIVILEGES on database.* to root@'127.0.0.1' identified by '123456'; 上面的语句表示将 database 数据库的所有权限授权给 root 这个用户,允许 root 用户在 127.0.0.1 这个 IP 进行远程登陆,并设置 root 用户的密码为 123456 . 分析所有的参数: all PRIVILEGES 表示赋予所有的…
1.远程登录mysql mysql -h ip -u root -p 密码 2.创建用户 格式:grant 权限 on 数据库.* to 用户名@登录主机 identified by "密码": 例1:增加一个test1用户,密码为123456,可以在任何主机上登录,并对所有数据库有查询,增加,修改和删除的功能.需要在mysql的root用户下进行 mysql>grant select,insert,update,delete on *.* to test1@"%&qu…
create database sonar character set utf8 collate utf8_general_ci; flush privileges; grant all privileges on sonar.* to 'sonar'@'%'identified by 'sonar' with grant option; flush privileges;…
create database ${db_name} default charset utf8 COLLATE utf8_general_ci; grant all on ${db_name}.* to '${user_name}'@'localhost' IDENTIFIED BY '${password}'; flush privileges;…
CREATE DATABASE 'voyager'; CREATE DATABASE `voyager`; CREATE USER 'dog'@'localhost' IDENTIFIED BY '123456'; GRANT ALL ON `voyager`.* TO 'dog'@'localhost';…
运行命令行 mysql -uroot -p 登录mysql use mysql; 创建用户:create user 'test123'@'localhost' identified by '12345';这里的test123表示User,localhost表示Host,12345表示authentication_string(密码) 授权:grant all privileges on *.* to 'test123'@'localhost';这里的*.* 可以改成 testdb.*,testd…
Mysql 创建一个用户 hail,密码 hail,指定一个数据库 haildb 给 hail mysql -u root -ppassworduse mysql;insert into user(host,user,password) values('localhost','hail',password('hail'));flush privileges;create database haildb;grant all privileges on haildb.* to hail@localh…
1.create schema [数据库名称] default character set utf8 collate utf8_general_ci;--创建数据库 采用create schema和create database创建数据库的效果一样. 2.create user '[用户名称]'@'%' identified by '[用户密码]';--创建用户 密码8位以上,包括:大写字母.小写字母.数字.特殊字符 %:匹配所有主机,该地方还可以设置成‘localhost’,代表只能本地访问,…
昨日内容回顾 外键的变种三种关系: 多对一: 左表的多 对右表一 成立 左边的一 对右表多 不成立 foreign key(从表的id) refreences 主表的(id) 多对多 建立第三张表(foreign key) 一对一 foreign key+unique 单表查询: (1) where group by: 分组,通过某个字段 select age,count(1) from user group by age having avg(age)>25; having order by…