数据库创建

一.mysql(表空间、用户)

1.用root账户登录Mysql数据库;

2.创建数据库并指定字符集(test为数据库名称,可自定义);

  create database if  not exists  test default  charset utf8 collate utf8_general_ci ;

3.创建用户,以便于在其他计算机上登录(test 为用户名和密码)

  create user ‘test‘@‘%‘ identified by ‘test‘;

4.授权数据库给test用户

  grant all on test.* to ‘test‘@‘%‘;

 

数据库创建

上一篇:oracle 启动


下一篇:数据库函数