时间:2021-07-01 10:21:17 帮助过:24人阅读
create database test_db; 创建名为test_db数据库
use test_db; 进入test_db数据库
show tables; 查看数据库里有多少张表
drop database test_db ; 删除数据库
drop table test01 ; 删除表
delete from test01 ; 清空表内容
show variables like ‘%char%‘; 查看数据库字符集
insert into test01 values ("001","jf1"); 向表中插入数据。
select * from test01; 查看test01表数据内容。
create table test01 (id varchar(20),name varchar(20));
grant all privileges on test_db.* to test@localhost identified by ‘123456‘;
grant all on test_db.* to test@localhost identified by ‘123456‘;
grant select,insert,update,delete on *.* to test@”%” identified by ‘123456’;给mysql数据库授权。
flush privileges;刷新权限
mysqldump –uroot –p123456 test_db >/tmp/test.db.sql ;MySQL备份或导出
mysql –uroot –p123456 test_db < /tmp/test.db.sql ;MySQL导入
mysqladmin –uroot –p123456 password newpassword ;修改MySQL root密码
drop database test_db ; 删除数据库
drop table test01 ; 删除表
delete from test01 ; 清空表内容
show variables like ‘%char%‘; 查看数据库字符集
insert into test01 values ("001","wugk1"); 向表中插入数据。
select * from test01; 查看test01表数据内容。
create table test01 (id varchar(20),name varchar(20));
alter table ip_can drop id;删除某一字段
alter table ip_can add id varchar(20);增加某一字段
alter table ip_can add id varchar(20) first;增加字段在第一行
后续持续更新中
本文出自 “毛毛鸭” 博客,请务必保留此出处http://woshitieren.blog.51cto.com/2466034/1681211
mysql常用命令
标签:mysql命令