Mariadb命令详解

1.登录 Mariadb 数据库
mysql –u 用户名 –p 密码

2.显示所有的数据库

show databases;

3.选择要使用的数据库

use  [database];

4.显示选定表中的所有文件:

select * from [table];

5.创建新数据库:

create database [database];

6.删除现有数据库:

drop database [database];

7.创建新表:

create table [table] ([column] [type],[column] [type]);

8.删除现有表:

drop table [table];
 

  9.向现有表中添加新列:

alter table [table] add [column] [type];

10.显示选定表的结构和字段信息:

describe [table];

11.向选定表的结构和字段信息:

insert into [table]([column],[column]…) values([value],[value],…);

12.更新选定表中的数据:

update [table] set [column]=[value] where [condition];

13.删除选定表中符合条件的数据:

delete from [table] where [condition];

14.退出Mariadb数据库:

exit;

你可能感兴趣的:(mariadb,数据库,linux,运维)