码迷,mamicode.com
首页 > 数据库 > 详细

mysql 常用命令

时间:2017-05-01 22:10:46      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:修改   show   create   root   har   new   admin   update   table   

MySQL日常操作命令:

show databases; 查看数据库

create database test_db; 创建名为test_db数据库

use test_db; 进入test_db数据库。

show tables; 查看数据库里有多少张表。

 

 create table test01 (id varchar(20),name varchar(20));  创建数据表 id、name、数据长度(用字符来定义长度单位。)

insert into test01 values (“001”,“ming”);向表中插入数据。

select *from test01; 查看test01表数据内容

 

Grant  all  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导入

 

修改MySQL root密码

mysqladmin –uroot –p123456 password   newpassword    ;

 

drop database test_db ; 删除数据库

drop table test01 ;  删除表

delete from test01 ; 清空表内容

  

 

mysql 常用命令

标签:修改   show   create   root   har   new   admin   update   table   

原文地址:http://www.cnblogs.com/mingerlcm/p/6792962.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!