欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MySQL8.0+常用命令

程序员文章站 2023-11-06 23:15:40
通过日常的工作记录MySQL常用命令,不断的学习,不断总结,未完待续…… ......

开启远程访问

通过以下命令开启root用户远程访问权限:

create user 'root'@'%' identified by 'password';
grant all on *.* to 'root'@'%';
alter user 'root'@'%' identified with mysql_native_password by 'password';
flush privileges;

注:其中,password为root的密码,flush privileges为刷新权限

导入数据

如导入csv表格,开启如下命令:

set global local_infile = 1

清空表内容

通过如下命令,不仅清空表的全部内容,同时自增长id也会从0开始,具体命令如下:

truncate table "表格名";