Linux环境下mysql shell 操作
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
- 创建数据库,创建用户
- 登录mysql
[root@izwz99z5o9dc90keftqhlrz ~]# mysql -u root –p
- 创建数据库
mysql> create database dsb_crm;
- 为新用户分配该数据库的权限
mysql> grant all privileges on `dsb_crm`.* to 'dsb'@'%' identified by 'Dsb2019!@#';
- 切换至目标数据库
mysql> use dsb_crm ;
Database changed
mysql> show tables ;
Empty set (0.00 sec)
mysql>
- 设置数据库编码
mysql> set names utf8;
- 导入数据
mysql> source /tmp/sys-log.sql
- 查看表结构
- 一些常用的命令
mysql> show databases;
mysql> select * from sys_log ;
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献29条内容
所有评论(0)