[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常见命令介绍的主要内容,如果未能解决你的问题,请参考以下文章