博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql 终端命令
阅读量:6495 次
发布时间:2019-06-24

本文共 819 字,大约阅读时间需要 2 分钟。

1、打开数据库

/usr/local/MySQL/bin/mysql -u root -p

2、输入root密码

 

3、使用我的数据库

use mysql

 

4、查看表

desc table_name

 

5、查看端口号

show global variables like 'port'

 

6、创建表

CREATE TABLE t1(

    id int not null,

    name char(20)
);

CREATE TABLE t1(

    id int not null primary key,
    name char(20)
);
CREATE TABLE t1(
    id int not null,
    name char(20),
    primary key (id,name)
);

CREATE TABLE t1(

    id int not null default 0 primary key,
    name char(20) default '1'
);

 

7、开启远程访问: 

use mysql; 
update user set host = “%” where user = “root”; 
flush privileges;

 

8、关闭远程访问: 

use mysql; 
update user set host = “localhost” where user = “root” and host= “%”; 
flush privileges;

 

9、启动MySQL服务

sudo /usr/local/MySQL/support-files/mysql.server start

10、停止MySQL服务

sudo /usr/local/mysql/support-files/mysql.server stop

11、重启MySQL服务

sudo /usr/local/mysql/support-files/mysql.server restart

转载地址:http://sruyo.baihongyu.com/

你可能感兴趣的文章
循环遍历二叉树
查看>>
while循环 和 运算符
查看>>
MySQL压缩包安装
查看>>
SpringMVC参数绑定
查看>>
阿里云MVP:开发者的超能力,用技术创造更好世界
查看>>
云计算教学实践40:open***架构实施方案(一)跨机房异地灾备
查看>>
Vue和React的对比
查看>>
MyBatis 源码解析 —— SqlSessionFactory
查看>>
如何解决CentOS 7.*无法使用tab补全功能
查看>>
ORA-00119: invalid specification for system par...
查看>>
rpc.rstatd-4.0.1.tar.gz安装问题
查看>>
【虚拟化实战】VM设计之三内存资源控制
查看>>
Mysql 时间操作(当天,昨天,7天,30天,半年,全年,季度)
查看>>
Linux+Nginx+MySql+Php既LNMP源码安装
查看>>
BACKUP DATABASE 失败的处理方法
查看>>
NTP服务
查看>>
Shell 自动化安装Apache,并配置虚拟主机
查看>>
模板实现顺序表
查看>>
curl工具的使用
查看>>
《从零开始学Swift》学习笔记(Day 40)——析构函数
查看>>