[MySQL基础]MySQL常见命令介绍

Posted Wecccccccc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[MySQL基础]MySQL常见命令介绍相关的知识,希望对你有一定的参考价值。

在这里插入图片描述

show databases;

在这里插入图片描述

use 库名;
在这里插入图片描述
show tables;

在这里插入图片描述
show tables from 库名

在这里插入图片描述
select database();

在这里插入图片描述


create table 名字(
id int,
name varchar(20));


desc 表名;
在这里插入图片描述
select * from 表名;

在这里插入图片描述


insert into 表名 (a,b,…,f) values(1,2,3,…,7);


update 库名 set name=‘lilei’ where id=1;


delete from 库名 where id=1;


select version();
在这里插入图片描述


exit


以上是关于[MySQL基础]MySQL常见命令介绍的主要内容,如果未能解决你的问题,请参考以下文章

MySQL基础

MySQL基础

MySQL基础

MySQL基础

回炉重造MySQL基础知识

04-mysql基础-mysql中的查询介绍及数据准备