访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

linux 中常用的数据库命令

时间:2019-07-29

linux命令中的head命令_常用dos命令大全及其用法_linux常用命令

??

 show databases;
use 数据库名;
show tables;

常用dos命令大全及其用法_linux命令中的head命令_linux常用命令

describe 表名;
SELECT * FROM 表名
 create databse 库名;

复制代码

linux命令中的head命令_linux常用命令_常用dos命令大全及其用法

create table 表名 (字段设定列表);
mysql> create table name(
    -> id int auto_increment not null primary key ,
    -> uname char(8),
    -> gender char(2),
    -> birthday date );
Query OK, 0 rows affected (0.03 sec)
mysql> show tables;
+------------------+
| Tables_in_userdb |
+------------------+
| name             |
+------------------+
1 row in set (0.00 sec)
mysql> describe name;
+----------+---------+------+-----+---------+----------------+
| Field    | Type    | Null | Key | Default | Extra          |
+----------+---------+------+-----+---------+----------------+
| id       | int(11) | NO   | PRI | NULL    | auto_increment |
| uname    | char(8) | YES  |     | NULL    |                |
| gender   | char(2) | YES  |     | NULL    |                |
| birthday | date    | YES  |     | NULL    |                |
+----------+---------+------+-----+---------+----------------+
4 rows in set (0.00 sec)
注: auto_increment 自增
     primary key    主键

复制代码

 insert into name(uname,gender,birthday) values('张三','','1971-10-01');
update name set birthday='1971-01-10' where uname='张三';

常用dos命令大全及其用法_linux命令中的head命令_linux常用命令

delete from name where uname='张三';
drop table 表名
 drop database 库名;
mysqldump -u root -p --opt 数据库名>备份名; //进入到库目录

常用dos命令大全及其用法_linux命令中的head命令_linux常用命令

mysql -u root -p 数据库名<备份名; //恢复时数据库必须存在,可以为空数据库

格式:grant select on 数据库.* to 用户名@登录主机 identified by "密码"

例1、增加一个用户user001密码为123456,让他可以在任何主机上登录,并对所有数据库有查询、插入、修改、删除的权限。首先用以root用户连入MySQL,然后键入以下命令:

 上一个教程:SecureCRT常用Linux命令